prep v5.2.0
All checks were successful
EIVE/-/pipeline/head This commit looks good

This commit is contained in:
2023-07-13 11:30:43 +02:00
parent 9be81f1725
commit 2153aa2842
9 changed files with 7 additions and 11 deletions

View File

@ -61,7 +61,7 @@ GYR_SEL_DICT = {
def handle_gyr_cmd(q: DefaultPusQueueHelper, op_code: str):
print("Please select the Gyro Device")
for (k, v) in GYR_SEL_DICT.items():
for k, v in GYR_SEL_DICT.items():
print(f"{k}: {v[0]}")
sel_idx = int(input("Select gyro device by index: "))
gyr_info = GYR_SEL_DICT[GyrSel(sel_idx)]