tidy up examples
This commit is contained in:
parent
810ee36382
commit
a49354a011
7 changed files with 7 additions and 2 deletions
|
|
@ -6,8 +6,13 @@
|
||||||
from Adafruit_IO import Client
|
from Adafruit_IO import Client
|
||||||
|
|
||||||
# Set to your Adafruit IO key.
|
# Set to your Adafruit IO key.
|
||||||
ADAFRUIT_IO_USERNAME = 'YOUR ADAFRUIT IO USERNAME'
|
# Remember, your key is a secret,
|
||||||
ADAFRUIT_IO_KEY = 'YOUR ADAFRUIT IO KEY'
|
# so make sure not to publish it when you publish this code!
|
||||||
|
ADAFRUIT_IO_KEY = 'YOUR_AIO_KEY'
|
||||||
|
|
||||||
|
# Set to your Adafruit IO username.
|
||||||
|
# (go to https://accounts.adafruit.com to find your username)
|
||||||
|
ADAFRUIT_IO_USERNAME = 'YOUR_AIO_USERNAME'
|
||||||
|
|
||||||
# Create an instance of the REST client.
|
# Create an instance of the REST client.
|
||||||
aio = Client(ADAFRUIT_IO_USERNAME, ADAFRUIT_IO_KEY)
|
aio = Client(ADAFRUIT_IO_USERNAME, ADAFRUIT_IO_KEY)
|
||||||
Loading…
Reference in a new issue