Sunday, June 9, 2013

HOW TO: Connect your Arduino to the Internet as a Web Server

The INTERNET OF THINGS...
< queue lightning and thunder >

It's what all the cool kids are doing these days.  Why should they have all the fun?  Let's setup an Arduino as a Web Server that anyone, anywhere can view.  Why would we do such a thing?  Possible projects include collecting data from a sensor and posting it to the Web or controlling an actuator remotely.  Think internet connected fart sensor that logs realtime how awesome your roommate's flatulence is, or perhaps, a robot that hides in the bushes and pokes pedestrians sauntering by.

Here is a quick video detailing the setup that I will take you through.  We have a servo and an LED that are controlled via a Web page.  The control page is accessible from both the private and public networks (aka: internet accessible for anyone).  The video shows me turning both the servo and LED on and off from my computer and iPhone (with the wireless network turned off so as to force it to access the Arduino from the public network).  I also have a live video feed coming from a wireless IP camera so that you can view what is happening remotely in the case you were to use this functionality for a remote control application that required monitoring of the system.

Awesome, so let's starting tinkering on Al Gore's interweb.  Here's how to do it and what you'll need:

Materials:
1)  Internet connection
2)  Internet router and associated information (LAN IP address, WAN IP Address... don't panic more on this soon)
3)  Arduino
4)  Arduino compatible Ethernet shield (I am using the shield by Seeed Studio)
5)  Ethernet cable
6)  Computer with Arduino programming ability


Lingo:
1)  LAN = Local Area Network
2)  WAN = Wide Area Network
3)  IP Address = Internet Prototocol Address
4)  ISP = Internet Service Provider Lets get going!



STEP 1:  COLLECT INFORMATION ABOUT YOUR HOME NETWORK  


First things first, you need to find the following information about your home network:

a)  The login name and password for your router.  My login credentials were listed on the back of my router on a sticker.  They were super complex credentials... Login = "admin", Password = "password".

b)  Your LAN IP address (aka: Private IP address) and/or your router manager login site.  I have a NetGear router and it listed the router manager login site on the back sticker as http://www.routerlogin.net.  If you do not have something similar on your router try entering these standard LAN IP addresses into your web browser 192.168.2.1,  192.168.0.1, 192.168.1.1 .  You will know it works if you land on a page that requests a login and password (which should be provided on the back of your router or in documentation from your internet service provider).  If you connected via a router login site, you can then find your LAN IP by browsing around and finding a page that details your LAN.  The IP address will generally be of the form xxx.xxx.x.x.

 c)  Your WAN IP address (aka: Public IP address).  This one is easy.  Just google "what's my ip address".  Google returns your WAN/Public IP address.  This information will also be listed once you login to your router.




STEP 2:  PLUG N' CHUG 


 a)  Plug the Ethernet shield into your Arduino.

b)  Plug your Arduino into your computer via the USB cable.

c)  Plug your Ethernet cable into the Ethernet shield and the other end into an open Ethernet plug on your router.




STEP 3:  SETUP PORT FORWARDING 


If we want anyone, anywhere to have access to the Arduino Web Server we need to setup something called port forwarding.  This is an option you can set within your Internet router manager.  To make a long story short, port forwarding will allow interactions between the WAN and the LAN, aka:  It exposes your Arduino to the Public network as opposed to keeping it isolated in the Private network.  Thus, anyone, anywhere with Internet access can interact with your Arduino.

a)  Find the IP address of your Arduino.  To do this login to your router manager (see Step 1 parts a & b).  Once logged into your router, find a page titled something similar to "Attached Devices".  Once here, you will be able to see the LAN IP address unique to your Arduino, commonly 192.168.1.177.

b)  Once you have the Arduino LAN IP, find a page within your router called "Port Forwarding".  From here you will have to find the option to "add custom service" or something similar.  To setup a new custom service, enter the LAN IP address of your Arduino, choose TCP/UDP for protocol, choose an open port, how about 8081 - use this number for both the starting port and ending port, and a name for the new service.  Once created, your new custom service (port forwarding for your Arduino) it will show up in the port forwarding list.




STEP 4: CODE AND TEST  


Now that all the network bogusness is taken care of we can focus on making widgets whirl.  This code creates a Web Server that can be accessed by entering "http://xx.xxx.xx.xx:8081/"  where, xx.xxx.xx.xx is your WAN IP address.  If you used a different port than 8081 just change the last digits following the ":" to the port you used.  The web page has 5 buttons that control an LED on pin 9 and a servo on pin 6.

a)  Save the code down to your Arduino.  Get code here:  http://bit.ly/1OfRnN3
Note, this is modified code relying heavily on code from the following source: Arduino Cookbook, Second Edition, by Michael Margolis with Nick Weldin (O'Reilly). Copyright 2012 Michael Margolis, Nicholas Weldin, 978-1-4493-1387-6.

 b)  Go to "http://xx.xxx.xx.xx:8081/" or whatever is appropriate relative to how you set things up. Hopefully at this point you see a pretty basic Web page that has buttons for turning on and off the LED and making the servo go forward, backward, or stop.  The code I supplied also imports a live video feed from an IP camera but this functionality is commented out.  Perhaps in the future I will detail how to set that up in another post.



STEP 5: BUILD THE CIRCUIT 


The circuit I built is shown below.  This circuit depiction was drawn using a great tool called Fritzing.  This is pretty self explanatory.  The resistor is a 220ohm resistor.






















<adventures in hacking etsy seo>
Shop
Chicago Laser Cut
Coaster Blog
</adventures in hacking etsy seo>

Sunday, May 12, 2013

Good Ol' TR

Inspirational quote from a legacy.

"It is not the critic who counts; not the man who points out how the strong man stumbles, or where the doer of deeds could have done them better. The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood; who strives valiantly; who errs, who comes short again and again, because there is no effort without error and shortcoming; but who does actually strive to do the deeds; who knows great enthusiasms, the great devotions; who spends himself in a worthy cause; who at the best knows in the end the triumph of high achievement, and who at the worst, if he fails, at least fails while daring greatly, so that his place shall never be with those cold and timid souls who neither know victory nor defeat."

~Teddy Roosevelt

Sunday, April 21, 2013

Blurring the Lines: Digital Control of the Physical World

I am continually fascinated by the fact that we are gaining more and more control over our physical world via the digital realm.  The ability to code and hack hardware is providing a conduit for Makers to blur the lines between the screen and their surroundings.   This no-mans-land between physical and digital is ripe with opportunity and will dramatically affect many areas of our lives in the future.

This page is a testing ground for our forays into allowing others to digitally control our physical surroundings.  The setup utilized is composed of an Arduino and ethernet shield running a Webserver with a wireless Wansview IP camera feed embedded into the webpage.

Click the buttons below to control whatever actuator is hooked up today :)


Note: The video feed immediately below will only work if you are using Chrome or Firefox as your browser.  If you are using another browser scroll down to view another feed suited for your browser.  The Chrome and Firefox feed works better as it is optimized and operates much quicker.  Thank you to The Mad Hermit for the turnkey code to imbed video feeds.

Test Video Feed with Controls:

FOR CHROME AND FIREFOX
Live Feed

FOR BROWSERS OTHER THAN CHROME AND FIREFOX



Tuesday, March 26, 2013

Scalability Continued...

One of the hardest hurdles we face as entrepreneurs within the hardware space is going from your garage to the shelf.  How can we successfully navigate from an Arduino prototype into the realm of consumer products?  

Another piece to the puzzle...
Hans from HARDWARE STARTUP comments on the subject HERE.


Collaborate to Innovate Released

We have really been jammin' lately and the release of our previously filmed 3 minute documentary was lost in the mix.  Oops!  Thank you to everyone who contributed including Limor of Adafruit and Eric of Instructables.



Collaborate to Innovate from Whim on Vimeo.