Skip to content

Commit a49354a

Browse files
author
brentru
committedJul 9, 2018
tidy up examples
1 parent 810ee36 commit a49354a

File tree

7 files changed

+7
-2
lines changed

7 files changed

+7
-2
lines changed
 

‎examples/simple.py renamed to ‎examples/api/simple.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@
66
from Adafruit_IO import Client
77

88
# Set to your Adafruit IO key.
9-
ADAFRUIT_IO_USERNAME = 'YOUR ADAFRUIT IO USERNAME'
10-
ADAFRUIT_IO_KEY = 'YOUR ADAFRUIT IO KEY'
9+
# Remember, your key is a secret,
10+
# so make sure not to publish it when you publish this code!
11+
ADAFRUIT_IO_KEY = 'YOUR_AIO_KEY'
12+
13+
# Set to your Adafruit IO username.
14+
# (go to https://accounts.adafruit.com to find your username)
15+
ADAFRUIT_IO_USERNAME = 'YOUR_AIO_USERNAME'
1116

1217
# Create an instance of the REST client.
1318
aio = Client(ADAFRUIT_IO_USERNAME, ADAFRUIT_IO_KEY)

0 commit comments

Comments
 (0)