Adafruit_IO_Python/examples/test.py
2015-01-13 23:37:00 -08:00

11 lines
No EOL
209 B
Python

from Adafruit_IO import Client
io = Client('e2b0fac48ae32f324df4aa05247c16e991494b08')
r = io.send("Test Python", 12)
print r
r = io.receive("Test Python")
print r
r = io.receive_next("Test Python")
print r