-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmove_simple_servo.py
More file actions
46 lines (35 loc) · 1.24 KB
/
Copy pathmove_simple_servo.py
File metadata and controls
46 lines (35 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# examples/async/move_simple_servo.py
#
# Demonstrates: sweeping a servo out then back using async move()
# API style: async for loop (move)
# Sync equivalent: examples/basic/move_simple_servo.py
#
# CircuitPython note: asyncio.run(main()) works with adafruit_asyncio v3+.
# On older CircuitPython, use: asyncio.get_event_loop().run_until_complete(main())
import asyncio
import board
import pwmio
from adafruit_motor import servo
from varspeed_async import Vspeed
MIN = 0
MAX = 180
vs = Vspeed(init_position=MIN, result="int", debug=False)
vs.set_bounds(lower_bound=MIN, upper_bound=MAX)
pwm = pwmio.PWMOut(board.D13, duty_cycle=2 ** 15, frequency=50)
my_servo = servo.Servo(pwm)
my_servo.angle = MIN
async def main():
print("sweeping OUT...")
async for position, running, changed in vs.move(
new_position=MAX, time_secs=3, steps=180, easing="SineEaseInOut"
):
if changed:
my_servo.angle = position
print("sweeping BACK...")
async for position, running, changed in vs.move(
new_position=MIN, time_secs=3, steps=180, easing="SineEaseInOut", delay_start=1.0
):
if changed:
my_servo.angle = position
print("done, now at " + str(vs.position) + " degrees")
asyncio.run(main())