Skip to content

Commit 47222c6

Browse files
committed
requested changes!
1 parent 9953a23 commit 47222c6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/espatcontrol_cheerlights.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import board
88
import busio
99
from digitalio import DigitalInOut
10-
from Adafruit_CircuitPython_ESP_ATcontrol import adafruit_espatcontrol
10+
import adafruit_espatcontrol
1111
import neopixel
1212
import ujson
1313
import adafruit_fancyled.adafruit_fancyled as fancy

examples/espatcontrol_countviewer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
import board
99
import busio
1010
from digitalio import DigitalInOut
11-
import audioio
12-
from Adafruit_CircuitPython_ESP_ATcontrol import adafruit_espatcontrol
11+
import adafruit_espatcontrol
1312
from adafruit_ht16k33 import segments
1413
import neopixel
1514
import ujson
@@ -82,6 +81,7 @@
8281

8382
# music!
8483
if PLAY_SOUND_ON_CHANGE:
84+
import audioio
8585
wave_file = open("coin.wav", "rb")
8686
wave = audioio.WaveFile(wave_file)
8787

examples/espatcontrol_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
settings = {
55
'ssid' : 'my access point',
6-
'password' : 'hunter2',
6+
'password' : 'my password',
77
'timezone' : -5, # this is offset from UTC
88
'github_token' : 'abcdefghij0123456789',
99
}

0 commit comments

Comments
 (0)