-
Notifications
You must be signed in to change notification settings - Fork 0
/
humano_analyzing_object.py
67 lines (51 loc) · 2.66 KB
/
humano_analyzing_object.py
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from ucl.common import byte_print, decode_version, decode_sn, getVoltage, pretty_print_obj, lib_version
from ucl.highCmd import highCmd
from ucl.highState import highState
from ucl.lowCmd import lowCmd
from ucl.unitreeConnection import unitreeConnection, HIGH_WIFI_DEFAULTS, HIGH_WIRED_DEFAULTS
from ucl.enums import MotorModeHigh, GaitType, SpeedLevel
from ucl.complex import motorCmd, led
import modules.calci_hl_ctrl_dev as chcf
import modules.user_defined_functs as udf
import time
def main():
# Initialize connection and highCmd, highState objects - Printer Options: 'all', 'minimal', None
motor_control_obj = chcf.MotorControl(printer='minimal')
# Parse data
motor_control_obj.parse_data()
# Get user to hit enter to continue
print("WARNING: Ensure robot is placed in an open space\nType a BPM then hit 'enter' to continue...")
bpm_input = input()
# Check if input can be converted to float to ensure its a number
try:
bpm_input = float(bpm_input)
except ValueError:
bpm_input = None
# Uses input BPM factored with BPM limiter, otherwise defaults to 30
if bpm_input:
control_bpm = bpm_input
while control_bpm > motor_control_obj.bpm_limiter:
control_bpm /= 2.
print(f'\n::: Input [{bpm_input} BPM] factored to [{control_bpm} BPM] with [{motor_control_obj.bpm_limiter} MAX] limiter\n')
else:
control_bpm = 60. # THIS IS DIFFERENT THAN OTHER SCRIPS
print(f'\n::: Default [{control_bpm} BPM] being used\n')
# Control loop
motor_control_obj.pose_ctrl(mode='default', publish_hz=200,
bpm=60, bars=4, loop_repeats=1,
force_bpm_limiter=60,
use_param_time=True,
delay_start=0.0,
sleep_override=None,
move_to_pose_base_time = 1.5,
pose_raw_param_dict = {'roll': 'left',
'pitch': 'forward',
'yaw': 'neutral',
'body_height': 'neutral',
'body_direction': 'object',
'pose_duration': 'long',
'velocity': 'medium',
'smoothness': 'smooth'},
dev_check=None)
if __name__ == "__main__":
main()