feature/button_input (#2)
* Added keyboard functionality for existing features * Droid won't repeat most recent noise * Starting button input * bcm * async * no args * no arglist * asycnio * lgpio * asyncio * wait * async * asycn * remove wait * added keyboard interrup * params * test * got callbacks working * added keyboard control update * droid commands have movement * i do not honestly know what is different * added movement stub * added movement support? * string * format string * trying less space * added global * manual control * select_speed * stop * droid running * stupid multiple naming * play sound fixed * testing forward functionality * callback * move * rotate head * typo
This commit is contained in:
parent
91c94a771f
commit
8e02ed1a8b
131
button_input.py
Normal file
131
button_input.py
Normal file
|
@ -0,0 +1,131 @@
|
||||||
|
from droid import Directions
|
||||||
|
import droid_commands as d
|
||||||
|
import asyncio
|
||||||
|
from time import sleep
|
||||||
|
|
||||||
|
import lgpio as GPIO
|
||||||
|
|
||||||
|
NOISE = 16
|
||||||
|
|
||||||
|
LEFT = 26
|
||||||
|
DOWN = 27
|
||||||
|
UP = 25
|
||||||
|
RIGHT = 19
|
||||||
|
|
||||||
|
ROT_LEFT = 6
|
||||||
|
ROT_RIGHT = 5
|
||||||
|
|
||||||
|
|
||||||
|
todo = []
|
||||||
|
|
||||||
|
|
||||||
|
def play_sound(handle, gpio, edge, time):
|
||||||
|
print(f"Playing sound at {time}")
|
||||||
|
todo.append(d.play_sound())
|
||||||
|
|
||||||
|
|
||||||
|
def move(handle, gpio, edge, time):
|
||||||
|
# first, kill all other movements
|
||||||
|
todo.append(d.move_stop())
|
||||||
|
|
||||||
|
# then, check if this was a falling edge
|
||||||
|
if edge == 0:
|
||||||
|
return
|
||||||
|
|
||||||
|
if gpio == RIGHT:
|
||||||
|
print("Pressed right")
|
||||||
|
todo.append(d.move_droid(right=True))
|
||||||
|
elif gpio == LEFT:
|
||||||
|
print("Pressed left")
|
||||||
|
todo.append(d.move_droid(left=True))
|
||||||
|
elif gpio == UP:
|
||||||
|
print("Pressed forward")
|
||||||
|
todo.append(d.move_droid(forward=True))
|
||||||
|
elif gpio == DOWN:
|
||||||
|
todo.append(d.move_droid(backward=True))
|
||||||
|
print("Pressed backward")
|
||||||
|
|
||||||
|
|
||||||
|
def move_head(handle, gpio, edge, time):
|
||||||
|
todo.append(d.stop_rotate_head())
|
||||||
|
|
||||||
|
if edge == 0:
|
||||||
|
return
|
||||||
|
|
||||||
|
if gpio == ROT_LEFT:
|
||||||
|
print("Rotating left")
|
||||||
|
todo.append(d.rotate_head(Directions.ROTATE_LEFT))
|
||||||
|
elif gpio == ROT_RIGHT:
|
||||||
|
print("Rotating right")
|
||||||
|
todo.append(d.rotate_head(Directions.ROTATE_RIGHT))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
async def droid_connect(pi):
|
||||||
|
try:
|
||||||
|
await d.start_droid()
|
||||||
|
while True:
|
||||||
|
if len(todo) > 0:
|
||||||
|
await todo[0]
|
||||||
|
todo.pop(0)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print("Thanks for using")
|
||||||
|
finally:
|
||||||
|
GPIO.gpiochip_close(pi)
|
||||||
|
await d.stop_droid()
|
||||||
|
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
pi = GPIO.gpiochip_open(0)
|
||||||
|
if pi < 0:
|
||||||
|
return
|
||||||
|
|
||||||
|
GPIO.gpio_claim_alert(pi, NOISE, GPIO.RISING_EDGE)
|
||||||
|
GPIO.gpio_set_debounce_micros(pi, NOISE, 200)
|
||||||
|
|
||||||
|
# feet
|
||||||
|
GPIO.gpio_claim_alert(pi, UP, GPIO.BOTH_EDGES)
|
||||||
|
GPIO.gpio_set_debounce_micros(pi, UP, 200)
|
||||||
|
|
||||||
|
GPIO.gpio_claim_alert(pi, DOWN, GPIO.BOTH_EDGES)
|
||||||
|
GPIO.gpio_set_debounce_micros(pi, DOWN, 200)
|
||||||
|
|
||||||
|
GPIO.gpio_claim_alert(pi, LEFT, GPIO.BOTH_EDGES)
|
||||||
|
GPIO.gpio_set_debounce_micros(pi, LEFT, 200)
|
||||||
|
|
||||||
|
GPIO.gpio_claim_alert(pi, RIGHT, GPIO.BOTH_EDGES)
|
||||||
|
GPIO.gpio_set_debounce_micros(pi, RIGHT, 200)
|
||||||
|
|
||||||
|
# head
|
||||||
|
GPIO.gpio_claim_alert(pi, ROT_LEFT, GPIO.BOTH_EDGES)
|
||||||
|
GPIO.gpio_set_debounce_micros(pi, ROT_LEFT, 200)
|
||||||
|
|
||||||
|
GPIO.gpio_claim_alert(pi, ROT_RIGHT, GPIO.BOTH_EDGES)
|
||||||
|
GPIO.gpio_set_debounce_micros(pi, ROT_RIGHT, 200)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
cbs = []
|
||||||
|
print("Configuring callbacks")
|
||||||
|
|
||||||
|
# noise
|
||||||
|
cbs.append(GPIO.callback(pi, NOISE, func=play_sound))
|
||||||
|
|
||||||
|
# feet
|
||||||
|
cbs.append(GPIO.callback(pi, UP, func=move))
|
||||||
|
cbs.append(GPIO.callback(pi, DOWN, func=move))
|
||||||
|
cbs.append(GPIO.callback(pi, LEFT, func=move))
|
||||||
|
cbs.append(GPIO.callback(pi, RIGHT, func=move))
|
||||||
|
|
||||||
|
# head
|
||||||
|
cbs.append(GPIO.callback(pi, ROT_LEFT, func=move_head))
|
||||||
|
cbs.append(GPIO.callback(pi, ROT_RIGHT, func=move_head))
|
||||||
|
|
||||||
|
print("Callback configured")
|
||||||
|
await droid_connect(pi)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
asyncio.run(main())
|
27
droid.py
27
droid.py
|
@ -2,7 +2,20 @@ import asyncio
|
||||||
from time import sleep
|
from time import sleep
|
||||||
from bleak import BleakScanner, BleakClient, BleakError
|
from bleak import BleakScanner, BleakClient, BleakError
|
||||||
|
|
||||||
|
class Motors:
|
||||||
|
LEFT=0
|
||||||
|
RIGHT=1
|
||||||
|
HEAD=2
|
||||||
|
|
||||||
|
# Directions
|
||||||
|
class Directions:
|
||||||
|
FORWARD = 0
|
||||||
|
BACKWARD = 8
|
||||||
|
ROTATE_LEFT = 0
|
||||||
|
ROTATE_RIGHT = 8
|
||||||
|
|
||||||
class Droid():
|
class Droid():
|
||||||
|
|
||||||
def __init__(self, profile):
|
def __init__(self, profile):
|
||||||
print("Initializing")
|
print("Initializing")
|
||||||
self.disabledLeds = 0x00
|
self.disabledLeds = 0x00
|
||||||
|
@ -25,9 +38,9 @@ class Droid():
|
||||||
print("Connecting")
|
print("Connecting")
|
||||||
self.droid = BleakClient(self.profile)
|
self.droid = BleakClient(self.profile)
|
||||||
await self.droid.connect()
|
await self.droid.connect()
|
||||||
while not self.droid.is_connected and timeout < 10:
|
# while not self.droid.is_connected and timeout < 10:
|
||||||
sleep (.1)
|
# sleep (.1)
|
||||||
timeout += .1
|
# timeout += .1
|
||||||
print ("Connected!")
|
print ("Connected!")
|
||||||
connectCode = bytearray.fromhex("222001")
|
connectCode = bytearray.fromhex("222001")
|
||||||
await self.droid.write_gatt_char(0x000d, connectCode, False)
|
await self.droid.write_gatt_char(0x000d, connectCode, False)
|
||||||
|
@ -79,9 +92,15 @@ class Droid():
|
||||||
ledOnCommand = bytearray.fromhex(f"27420f44440048{leds}")
|
ledOnCommand = bytearray.fromhex(f"27420f44440048{leds}")
|
||||||
await self.droid.write_gatt_char(0x000d, ledOnCommand)
|
await self.droid.write_gatt_char(0x000d, ledOnCommand)
|
||||||
|
|
||||||
def move (self, degrees, duration):
|
async def move (self, degrees, duration):
|
||||||
thrust = self.__throttle_angle_to_thrust__(degrees)
|
thrust = self.__throttle_angle_to_thrust__(degrees)
|
||||||
|
|
||||||
|
|
||||||
|
async def move_motors(self, direction, motor, strength):
|
||||||
|
move_selection = bytearray.fromhex("29420546{}{}{}012C0000".format(direction, motor, strength))
|
||||||
|
await self.droid.write_gatt_char(0x000d, move_selection)
|
||||||
|
|
||||||
|
|
||||||
async def play_sound(self, sound_id=None, bank_id=None, cycle=False, volume=None):
|
async def play_sound(self, sound_id=None, bank_id=None, cycle=False, volume=None):
|
||||||
if volume:
|
if volume:
|
||||||
self.set_volume(volume)
|
self.set_volume(volume)
|
||||||
|
|
89
droid_commands.py
Normal file
89
droid_commands.py
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
import droid
|
||||||
|
import asyncio
|
||||||
|
from time import sleep
|
||||||
|
from random import randrange
|
||||||
|
|
||||||
|
d = ""
|
||||||
|
|
||||||
|
|
||||||
|
lastSound = -1
|
||||||
|
async def play_sound():
|
||||||
|
global lastSound
|
||||||
|
global d
|
||||||
|
sound = lastSound
|
||||||
|
while sound == lastSound:
|
||||||
|
sound = randrange(0,5)
|
||||||
|
lastSound = sound
|
||||||
|
|
||||||
|
while d is None:
|
||||||
|
sleep(0.1)
|
||||||
|
|
||||||
|
await d.play_sound(f"0{sound}","00")
|
||||||
|
|
||||||
|
|
||||||
|
async def play_specific_sound(bank, sound):
|
||||||
|
global d
|
||||||
|
await d.play_sound( sound_id = sound, bank_id = bank)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
async def move_droid(forward=False, backward=False, left=False, right=False):
|
||||||
|
|
||||||
|
l = droid.Directions.FORWARD
|
||||||
|
r = droid.Directions.FORWARD
|
||||||
|
global d
|
||||||
|
|
||||||
|
|
||||||
|
if forward:
|
||||||
|
l = droid.Directions.FORWARD
|
||||||
|
r = droid.Directions.FORWARD
|
||||||
|
if backward:
|
||||||
|
l = droid.Directions.BACKWARD
|
||||||
|
r = droid.Directions.BACKWARD
|
||||||
|
if left:
|
||||||
|
# spin left
|
||||||
|
l = droid.Directions.BACKWARD
|
||||||
|
r = droid.Directions.FORWARD
|
||||||
|
if right:
|
||||||
|
# spin right
|
||||||
|
l = droid.Directions.FORWARD
|
||||||
|
r = droid.Directions.BACKWARD
|
||||||
|
|
||||||
|
await d.move_motors(l, droid.Motors.LEFT, "FF")
|
||||||
|
await d.move_motors(r, droid.Motors.RIGHT,"FF")
|
||||||
|
|
||||||
|
|
||||||
|
async def move_manually(direction, motor, strength):
|
||||||
|
global d
|
||||||
|
await d.move_motors(direction, motor, strength)
|
||||||
|
|
||||||
|
|
||||||
|
async def move_stop():
|
||||||
|
global d
|
||||||
|
await move_manually(droid.Directions.FORWARD, droid.Motors.LEFT, "00")
|
||||||
|
await move_manually(droid.Directions.FORWARD, droid.Motors.RIGHT, "00")
|
||||||
|
|
||||||
|
|
||||||
|
async def rotate_head(direction):
|
||||||
|
global d
|
||||||
|
await d.move_motors(direction, droid.Motors.HEAD, "FF")
|
||||||
|
# eventually should we stop this call so we don't waste a bunch of battery?
|
||||||
|
|
||||||
|
async def stop_rotate_head():
|
||||||
|
global d
|
||||||
|
await d.move_motors(droid.Directions.ROTATE_LEFT, droid.Motors.HEAD, "00")
|
||||||
|
|
||||||
|
|
||||||
|
async def start_droid():
|
||||||
|
"""
|
||||||
|
This function should be in a try loop
|
||||||
|
"""
|
||||||
|
global d
|
||||||
|
d = await droid.discoverDroid(retry=True)
|
||||||
|
await d.connect()
|
||||||
|
|
||||||
|
|
||||||
|
async def stop_droid():
|
||||||
|
global d
|
||||||
|
await d.disconnect()
|
||||||
|
|
88
keyboard_control.py
Normal file
88
keyboard_control.py
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
import asyncio
|
||||||
|
from re import L
|
||||||
|
from time import sleep
|
||||||
|
from random import randrange
|
||||||
|
import droid_commands as d
|
||||||
|
from droid import Directions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
runningDroid = True
|
||||||
|
|
||||||
|
async def select_noise(d):
|
||||||
|
bank = input("\tBank> ")
|
||||||
|
sound = input("\tSound> ")
|
||||||
|
await d.play_specific_sound(bank, sound)
|
||||||
|
|
||||||
|
|
||||||
|
async def play_sound(d):
|
||||||
|
await d.play_sound()
|
||||||
|
|
||||||
|
async def select_speed(d):
|
||||||
|
direction = input("\tDirection> ")
|
||||||
|
motor = input("\tMotor> ")
|
||||||
|
speed = input("\tSpeed> ")
|
||||||
|
await d.move_manually(direction, motor, speed)
|
||||||
|
|
||||||
|
async def forward(d):
|
||||||
|
await d.move_droid(Directions.FORWARD)
|
||||||
|
|
||||||
|
async def backward(d):
|
||||||
|
await d.move_droid(Directions.BACKWARD)
|
||||||
|
|
||||||
|
async def left(d):
|
||||||
|
await d.move_droid(Directions.LEFT)
|
||||||
|
|
||||||
|
async def right(d):
|
||||||
|
await d.move_droid(Directions.RIGHT)
|
||||||
|
|
||||||
|
async def move_stop(d):
|
||||||
|
await d.move_stop()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
async def quit(d):
|
||||||
|
global runningDroid
|
||||||
|
runningDroid = False
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
# first, get droid
|
||||||
|
await d.start_droid()
|
||||||
|
|
||||||
|
commands = {
|
||||||
|
"w": forward,
|
||||||
|
"a": left,
|
||||||
|
"s": backward,
|
||||||
|
"d": right,
|
||||||
|
"x": move_stop,
|
||||||
|
"z": select_speed,
|
||||||
|
#"e": rotate counter-clockwise,
|
||||||
|
#"r": rotate clockwise,
|
||||||
|
#"f": special effect
|
||||||
|
"n": play_sound,
|
||||||
|
"m": select_noise,
|
||||||
|
"q": quit
|
||||||
|
}
|
||||||
|
try:
|
||||||
|
global runningDroid
|
||||||
|
while runningDroid:
|
||||||
|
# next, await input
|
||||||
|
command = input("Please input a command > ")
|
||||||
|
# next, parse that command
|
||||||
|
c = command.lower()[0:1]
|
||||||
|
if c in commands.keys():
|
||||||
|
await commands[c](d)
|
||||||
|
else:
|
||||||
|
print("Command does not exist.")
|
||||||
|
|
||||||
|
|
||||||
|
sleep(0.2)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
await d.stop_droid()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
asyncio.run(main())
|
Loading…
Reference in New Issue
Block a user