Hello,
I'm very stuck, could someone help me.
I would love to know how to get this page into the arduino (maybe parsing JSON, I'm not sure).
https://btc-e.com/api/2/btc_usd/ticker
Thank you so much for your help!!!
Hello,
I'm very stuck, could someone help me.
I would love to know how to get this page into the arduino (maybe parsing JSON, I'm not sure).
https://btc-e.com/api/2/btc_usd/ticker
Thank you so much for your help!!!
Make a python script to get the data for you. This should work:
import urllib2,json,urllib
url = 'https://btc-e.com/api/2/btc_usd/ticker'
request = urllib2.Request(url)
data = ''
try:
response = urllib2.urlopen(request)
data = json.load(response)
except Exception, e:
print "there was a problem getting your bitcoin data - switch to dogecoin?!!!"
print data["ticker"]["high"]
Then use Bridge to send whatever data you want to the arduino side