Last active
October 16, 2015 03:15
-
-
Save trentbrooks/85339d9d9b9a05f145ee to your computer and use it in GitHub Desktop.
Arduino Yun setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SETUP (FIRST TIME) | |
1. Connect laptop to WiFi network called ArduinoYun-XXXXXXXXXXXX | |
2. Goto http://arduino.local or 192.168.240.1 | |
3. Password is "arduino" or my password | |
4. Click configure | |
5. Give it unique name eg. "ArduinoYunTB" and password | |
6. Enter Wifi details we want Arduino to use eg. "LWG" | |
7. Click restart | |
SETUP (NOT FIRST TIME) | |
8. Connect laptop to Wifi we just entered eg. "LWG" | |
9. Goto http://arduinoyuntb.local/ (same instructions from #3) | |
ARDUINO IDE | |
- Wired: Tools > Board > Arduino Yun | |
- Wireless: Tools > Port > arduinoyuntb / ip | |
- Test: File > Examples > 01. Basics > Blink | |
LINUX CLI (https://www.arduino.cc/en/Tutorial/LinuxCLI) | |
ping arduinoyuntb.local | |
ssh [email protected] | |
CONSOLE SERIAL MONITOR | |
To see the Console, select your Yún's name and IP address in the Port menu. The Yún will only show up in the Ports menu if your computer is on the same LAN as the Yún | |
OR... | |
ssh [email protected] 'telnet localhost 6571' | |
- Test: File > Sketchbook > * > YunConsole | |
- press 'H' for led on, 'L' for led off | |
EXAMPLES | |
Files > Examples > Bridge > * | |
Most of the above is just a cutdown of the long article here- https://www.arduino.cc/en/Guide/ArduinoYun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment