We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6755126 commit 8db4c24Copy full SHA for 8db4c24
1 file changed
Crank_USB_HID/code.py
@@ -4,8 +4,8 @@
4
"""
5
6
import time
7
-from digitalio import *
8
-from board import *
+import board
+from digitalio import DigitalInOut
9
from adafruit_hid.keyboard import Keyboard
10
from adafruit_hid.keycode import Keycode
11
from adafruit_hid.consumer_control import ConsumerControl
@@ -148,4 +148,4 @@
148
ring[previous_location] = 0 # turn off previous dot
149
150
if time.monotonic() > timestamp + LIT_TIMEOUT:
151
- ring[dot_location] = 0 # turn off ring light temporarily
+ ring[dot_location] = 0 # turn off ring light temporarily
0 commit comments