Skip to content

Instantly share code, notes, and snippets.

@trentbrooks
Last active October 16, 2015 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trentbrooks/85339d9d9b9a05f145ee to your computer and use it in GitHub Desktop.
Save trentbrooks/85339d9d9b9a05f145ee to your computer and use it in GitHub Desktop.
Arduino Yun setup
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 root@arduinoyuntb.local
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 root@arduinoyuntb.local '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