Send data to a website?
Franklin
Posts: 4,747
[url=http://weatherstation.wunderground.com/weatherstation/updateweatherstation.php?ID=KCASANFR5&PASSWORD=XXXXXX&][u][color=#0000ff]http://weatherstation.wunderground.com/weatherstation/updateweatherstation.php?ID=KCASANFR5&PASSWORD=XXXXXX&[/color][/u][/url]dateutc=2000-01-01+10%3A32%3A35&winddir=230&windspeedmph=12&windgustmph=12&tempf=70&rainin=0&baromin=29.1&dewptf=68.2&humidity=90&weather=&clouds=&softwaretype=vws%20versionxx&action=updateraw
The above is what I need to send.
Is there a way to do this with a stamp or stamp accesories?
I am trying to create a weather station that does not need a PC connected and on to update from my weather station. Any and all ideas will be greatly appreciated, thanks.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
Comments
I have also wanted to make my weather station talk directly with wunderground's update servers. Unfortunately I could not do this since I had a embedded web server that could not do requests, so I put a cron script on a linux box that would parse the data and submit it directly to wunderground. This also loosened the need for having to calculate the UTC time format required for wunderground.
Harrison
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
What do you mean by "send"? To a phone? by e-mail?
If all you need is a web page to display data sent from a Stamp, then the PINK can certainly do the job.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Rick
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
A browser simply sends the following via a tcp socket to a server during the request cycle:
GET /blah.php?a=2&b=4 HTTP/1.1
Host: www.example.com
This in effect does the same as going to http://www.example.com/blah.php?a=2&b=4 in your browser.
Harrison