General area when it fits no where else

Moderator: Mmiscool

User avatar
By Mmiscool
#34983 There are not cuurrently any commands for talking with thing seek yet.

This is some thing I hope t possibly get done over this thanksgiving week end. Stay tuned.
User avatar
By Mmiscool
#34986 Dose thing speek only need you to pull on the url to send data?

If all you have to do is tug a url you can use the wget function.

I just set up a thing speek account. Seems to be posting the data using the following esp basic program.
Code: Select allTextbox MyData
button "click to post to thing speek" [postit]
wait

[postit]
bla = "api.thingspeak.com/update?key=5C1J2FHRGQM44M7R&field1=" & MyData
print wget(bla)
wait
User avatar
By jjl
#34996 It Works, just what I want. Thanks a lot.
What happens to all the returned data, can I send data to TS without overflowing any buffer ?

/Jens

PS. I really like the Basic programming language. You are doing a great job.