free way of internet connecting your stamp for free
Here is how I successfully connected my stamp to the internet without a 100$ PINK. Of course, you must realize the sacrifices such as:
-website will only show exactly what the Stamp is sending up the serial cable
-Your Website will be Static, meaning you have to refresh it to view updated data
-You will have to host the website from your home computer [noparse]:([/noparse]
Now for the instructions:
1. Download a trial of Advanced Serial Port Terminal from:
http://www.virtualserialport.com/download/serial_port_monitor.exe
2. Install the software
3.Load the editor. In the top right, click File-New Session
4.Select the serial port your stamp is connected to and select terminal view and Select Start Monitoring Now
5. On the toolstrip menu(2nd menu from top) Hit the little down arrow next to the Terminal View button. In that menu, click Redirect to file. In the file dialog, make sure you save as type .HTML text file, and save it in your website directory folder(Or anywhere you want) Next, hook up your stamp with whatever program you want that would have the stamp debug its data. In your Serial Port Monitorer you should see your data showing up. Now, go to where you saved your .HTML file, and open it in Firefox(or Internet Explorer). You should see your data statically. Refresh, and you will see your updated data. There you go!
For information on hosting a website from your home PC go to:
http://www.pcstats.com/articleview.cfm?articleid=1774&page=4
Hope it worked successfully for you(As it did for me) My project included a Basic Stamp sending ALERT if a PIR Sensor was triggered. Here was my code:
-ACfishing
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
-website will only show exactly what the Stamp is sending up the serial cable
-Your Website will be Static, meaning you have to refresh it to view updated data
-You will have to host the website from your home computer [noparse]:([/noparse]
Now for the instructions:
1. Download a trial of Advanced Serial Port Terminal from:
http://www.virtualserialport.com/download/serial_port_monitor.exe
2. Install the software
3.Load the editor. In the top right, click File-New Session
4.Select the serial port your stamp is connected to and select terminal view and Select Start Monitoring Now
5. On the toolstrip menu(2nd menu from top) Hit the little down arrow next to the Terminal View button. In that menu, click Redirect to file. In the file dialog, make sure you save as type .HTML text file, and save it in your website directory folder(Or anywhere you want) Next, hook up your stamp with whatever program you want that would have the stamp debug its data. In your Serial Port Monitorer you should see your data showing up. Now, go to where you saved your .HTML file, and open it in Firefox(or Internet Explorer). You should see your data statically. Refresh, and you will see your updated data. There you go!
For information on hosting a website from your home PC go to:
http://www.pcstats.com/articleview.cfm?articleid=1774&page=4
Hope it worked successfully for you(As it did for me) My project included a Basic Stamp sending ALERT if a PIR Sensor was triggered. Here was my code:
' {$STAMP BS2} ' {$PBASIC 2.5} DO IF (IN0 = 0) THEN 'PIR Sensor attached to IN0- See Parallax's document on PIR sensors DEBUG "ALERT" ENDIF LOOP
-ACfishing
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·Somebody said...
-Never Underestimate the power of human stupidity.
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Think Inside the box first and if that doesn't work..
Re-arrange what's inside the box then...
Think outside the BOX!
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Roger Pierson
Senior Electronics Technicain
DTI Assoicates
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
NerdMaster
For
Life
Put this in the <HEAD> section:
<meta http-equiv="refresh" content="2">
Thanks for the tag Kenny.
_ACfishing
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·