diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..b6cbda5 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "cSpell.words": [ + "adafruit", + "servokit" + ] +} \ No newline at end of file diff --git a/calibration.py b/calibration.py index 7f35853..7b5f0fd 100644 --- a/calibration.py +++ b/calibration.py @@ -1,5 +1,5 @@ import time -from adafruit_servokit import ServoKit +from adafruit_servokit import ServoKit # type: ignore # Initialize ServoKit kit = ServoKit(channels=16) diff --git a/manualControl.py b/manualControl.py index a39e0ca..716f076 100644 --- a/manualControl.py +++ b/manualControl.py @@ -1,5 +1,5 @@ import time -from adafruit_servokit import ServoKit +from adafruit_servokit import ServoKit # type: ignore # Initialize ServoKit kit = ServoKit(channels=16) diff --git a/old_stuff/reset.py b/old_stuff/reset.py index f96ee00..3bf2939 100644 --- a/old_stuff/reset.py +++ b/old_stuff/reset.py @@ -1,5 +1,5 @@ import time -from adafruit_servokit import ServoKit +from adafruit_servokit import ServoKit # type: ignore kit = ServoKit(channels=16) diff --git a/old_stuff/thr2.py b/old_stuff/thr2.py index 6dab293..ebb5ede 100644 --- a/old_stuff/thr2.py +++ b/old_stuff/thr2.py @@ -1,6 +1,6 @@ import threading import time -from adafruit_servokit import ServoKit +from adafruit_servokit import ServoKit # type: ignore kit = ServoKit(channels=16) diff --git a/old_stuff/thr3.py b/old_stuff/thr3.py index 1f5c377..ad8f0d4 100644 --- a/old_stuff/thr3.py +++ b/old_stuff/thr3.py @@ -1,6 +1,6 @@ import threading import time -from adafruit_servokit import ServoKit +from adafruit_servokit import ServoKit # type: ignore # Initialize ServoKit kit = ServoKit(channels=16) diff --git a/walk.py b/walk.py index cdecb25..48e3a13 100644 --- a/walk.py +++ b/walk.py @@ -1,6 +1,6 @@ import threading import time -from adafruit_servokit import ServoKit +from adafruit_servokit import ServoKit # type: ignore # Initialize ServoKit kit = ServoKit(channels=16)