-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.py
37 lines (35 loc) · 907 Bytes
/
Config.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
import datetime
#Url = 'http://192.168.0.4'
#BuildType = 'HelloWorld_Build'
Url = 'http://4g5965j-dt2-s:88'
BuildType = 'ClientExams_Build'
SleepSeconds = 10
StartTime = datetime.time(8, 0)
StopTime = datetime.time(18, 0)
StopDays = [5, 6] # Saturday and Sunday
Targets = {
"john.stovin" : (
("zero", 0), # Zero/Park to know point (bottom-left)
("led", 1), # Turn the LED on
("right", 3250),
("up", 540),
("fire", 4), # Fire a full barrage of 4 missiles
("led", 0), # Turn the LED back off
("zero", 0), # Park after use for next time
),
"simon.bryan" : (
("zero", 0),
("right", 4400),
("up", 200),
("fire", 4),
("zero", 0),
),
"default" : (
("zero", 0),
("right", 5200),
("up", 500),
("pause", 5000),
("left", 2200),
("down", 500),
),
}