Skip to content

Commit e670152

Browse files
author
brentru
committed
mergefix
2 parents fe4f0a6 + 8b5e9a3 commit e670152

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/aio_basics/adafruitio_06_digital_in.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
from Adafruit_IO import Client, Feed, RequestError
1919

2020
# Set to your Adafruit IO key.
21-
ADAFRUIT_IO_USERNAME = 'YOUR_IO_USERNAME'
22-
ADAFRUIT_IO_KEY = 'YOUR_IO_KEY'
21+
ADAFRUIT_IO_USERNAME = 'YOUR_AIO_USERNAME'
22+
ADAFRUIT_IO_KEY = 'YOUR_AIO_KEY'
2323

2424
# Create an instance of the REST client.
2525
aio = Client(ADAFRUIT_IO_USERNAME, ADAFRUIT_IO_KEY)
@@ -47,4 +47,4 @@
4747
aio.send(digital.key, button_current)
4848

4949
# avoid timeout from adafruit io
50-
time.sleep(1)
50+
time.sleep(1)

0 commit comments

Comments
 (0)