summaryrefslogtreecommitdiff
path: root/tests/pyb/servo.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-01-18 16:32:31 +1100
committerDamien George <damien@micropython.org>2024-01-22 11:48:27 +1100
commit7bbcee3cf09a08199b3ffefb6c5e37208cba5f0a (patch)
tree6260794d34aaef18fcf5a6521ff3d103bc962dbf /tests/pyb/servo.py
parentf93ffc2875c57ce3b8a608ebf5ae9050aa62f069 (diff)
tests: Move port-specific test directories into tests/ports/ directory.
To keep them all together, mirroring the top-level directory structure. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/pyb/servo.py')
-rw-r--r--tests/pyb/servo.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/pyb/servo.py b/tests/pyb/servo.py
deleted file mode 100644
index d15cafe48..000000000
--- a/tests/pyb/servo.py
+++ /dev/null
@@ -1,16 +0,0 @@
-from pyb import Servo
-
-servo = Servo(1)
-print(servo)
-
-servo.angle(0)
-servo.angle(10, 100)
-
-servo.speed(-10)
-servo.speed(10, 100)
-
-servo.pulse_width(1500)
-print(servo.pulse_width())
-
-servo.calibration(630, 2410, 1490, 2460, 2190)
-print(servo.calibration())