-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathhat_controller.py
More file actions
executable file
·54 lines (42 loc) · 1.59 KB
/
hat_controller.py
File metadata and controls
executable file
·54 lines (42 loc) · 1.59 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
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import logging
from threading import Thread
import arc852.cli_args as cli
import pantilthat as pth
from arc852.cli_args import LOG_LEVEL, GRPC_HOST
from arc852.cli_args import setup_cli_args
from arc852.utils import setup_logging
import calibrate_servo
from hat_servo import HatServo
from location_client import LocationClient
logger = logging.getLogger(__name__)
if __name__ == "__main__":
# Setuo CLI args
args = setup_cli_args(cli.grpc_host, cli.alternate, cli.calib, cli.log_level)
alternate = args["alternate"]
calib = args["calib"]
setup_logging(level=args[LOG_LEVEL])
with LocationClient(args[GRPC_HOST]) as client:
# Create servos
servo_x = HatServo("Pan", pth.pan, alternate, 1.0, 8)
servo_y = HatServo("Tilt", pth.tilt, alternate, 1.0, 8)
if calib:
calib_t = Thread(target=calibrate_servo.calibrate, args=(client, servo_x, servo_y))
calib_t.start()
calib_t.join()
else:
if alternate:
# Set servo X to go first if alternating
servo_x.ready_event.set()
try:
servo_x.start(False, lambda: client.get_x(), servo_y.ready_event if not calib else None)
servo_y.start(False, lambda: client.get_y(), servo_x.ready_event if not calib else None)
servo_x.join()
servo_y.join()
except KeyboardInterrupt:
pass
finally:
servo_x.stop()
servo_y.stop()
logger.info("Exiting...")