From b1f329b9f4912ce5acdb00271021d045ac7ed9ac Mon Sep 17 00:00:00 2001 From: Jordi Date: Wed, 25 Dec 2024 22:53:53 +0100 Subject: [PATCH] a --- .vscode/settings.json | 6 ++++++ calibration.py | 2 +- manualControl.py | 2 +- old_stuff/reset.py | 2 +- old_stuff/thr2.py | 2 +- old_stuff/thr3.py | 2 +- walk.py | 2 +- 7 files changed, 12 insertions(+), 6 deletions(-) create mode 100644 .vscode/settings.json 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)