Hi everyone, i've bought an Arduino Yun and I'm trying to use it by following the example sketches.
For now i can turn on and off a led using a browser web, but Arduino and my computer must be on the same wi-fi network. I want to do that even if my device is not connected to the same net, how could i do?
If you (can) play with your home router, you can access the yun from outside. Google around for "port forwarding"
I followed this tutorial ( Somewhere in the boundary layer...: HOW TO: Connect your Arduino to the Internet as a Web Server ) and now on my router i have this: http://img6.imageshack.us/img6/5526/0haq.png
Is that right? And if it is, what should i type in the browser?
Your external IP, the one showed here http://www.whatsmyip.org/.
I typed " http://87.14.145.47/arduino/digital/13/1" instead of "http://arduino.local/arduino/digital/13/1" but it doesn't work.
you're missing the port
and in your router configuration, internal port is 80, not 8081
If i use the port 80 it works! Thank you very much!