slotUI/freeslot.py

Sun, 28 Oct 2012 20:09:28 +0100

author
Malte Bayer <mbayer@neo-soft.org>
date
Sun, 28 Oct 2012 20:09:28 +0100
changeset 112
fee43a74bed6
parent 100
039ab094f79b
child 116
c2fc650cc48f
permissions
-rw-r--r--

added controller number to event scripts parameter 1

23
6edcf4666e3b added slotUI path
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
1 """
6edcf4666e3b added slotUI path
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
2 FreeSlot project
6edcf4666e3b added slotUI path
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
3 Blackbox communication library
6edcf4666e3b added slotUI path
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
4 """
6edcf4666e3b added slotUI path
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
5
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
6 import serial, sys, string, time
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
7
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
8 # how often should a command retried when busy?
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
9 RETRIES = 10
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
10
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
11 # define loglevels
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
12 DEBUG = 20
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 57
diff changeset
13 LOGLEVEL = 20
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
14 def log(level, msg):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
15 """
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
16 Logging output function
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
17 """
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 57
diff changeset
18 if level <= LOGLEVEL: print msg
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
19
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
20 class SerialCommunicator():
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
21 def __init__(self, device, speed):
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
22 self.device = device
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
23 self.speed = speed
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
24 self.com = None
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
25 self.connected = False
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
26
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
27 def connect(self):
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
28 if self.connected:
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
29 return True
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 26
diff changeset
30 try:
57
c2e2695c92fe decreased blocking time for serial rx
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
31 self.com = serial.Serial(self.device, baudrate=self.speed,
c2e2695c92fe decreased blocking time for serial rx
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
32 xonxoff=0, timeout=0.1)
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 26
diff changeset
33 except serial.SerialException, err:
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 26
diff changeset
34 print err
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 26
diff changeset
35 sys.exit(1)
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
36 self.connected = True
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
37 return True
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
38
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
39 def disconnect(self):
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
40 self.com = None
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
41 return True
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
42
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
43 def write(self, msg, getanswer=False):
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
44 self.com.write(msg + "\n")
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
45 if getanswer:
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
46 return self.readline()
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
47 return None
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
48
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
49 def readline(self):
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
50 answer = self.com.readline()
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
51 return string.strip(answer, "\n")
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
52
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
53 def query(self, msg):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
54 retry = 0
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
55 response = self.write(msg, True)
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
56 while (retry < RETRIES) and (response == "BUSY"):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
57 time.sleep(0.1)
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
58 response = self.write(msg, True)
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
59 retry += 1
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
60 log( DEBUG, "%i> %s\n< %s" % (retry, msg, response) )
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
61 return response
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
62
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
63
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
64 class Blackbox():
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
65 def __init__(self):
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
66 self.com = None
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
67 self.info = None
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
68
86
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
69 def readline(self):
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
70 if self.com:
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
71 return self.com.readline()
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
72 return ""
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
73
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
74 def query(self, msg):
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
75 if self.com:
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
76 return self.com.query(msg)
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
77 return ""
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
78
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
79 def connect(self, device="/dev/ttyUSB0", speed=57600):
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
80 if self.com == None:
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
81 self.com = SerialCommunicator(device, speed)
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
82 if self.com.connected:
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
83 self.com.disconnect()
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
84 self.com.connect()
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
85 self.info = self.readinfo()
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
86
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
87 def disconnect(self):
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
88 self.com.disconnect()
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
89
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
90 def readinfo(self):
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
91 """
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
92 Read complete Information from connected box
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
93 This does not include race+car status!
25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 23
diff changeset
94 """
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
95 return None
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
96
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
97 def progcar(self, carid, command, value):
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
98 """
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
99 Send program packets to specified car id
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
100 valid command: speed, brake, fuel
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
101 valid value: 4 bit integer (0..15)
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
102 valid carid: 0..5
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
103 """
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
104 if (carid < 0) or (carid > 5):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
105 return "ERR - invalid carid"
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
106 cmd = -1
100
039ab094f79b renamed --speed to --accel and added minimum value 6
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
107 if command == "accel":
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
108 cmd = 0
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
109 if command == "brake":
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
110 cmd = 1
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
111 if command == "fuel":
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
112 cmd = 2
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
113 if (cmd == -1):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
114 return "ERR - invalid command"
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
115 if (value<0) or (value>15):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
116 return "ERR - invalid value"
100
039ab094f79b renamed --speed to --accel and added minimum value 6
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
117 if command == "accel" and value < 6:
039ab094f79b renamed --speed to --accel and added minimum value 6
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
118 return "ERR - value too low"
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
119 # transform value 10..15 to A..F
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
120 if (value>9):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
121 value = chr(ord("A") + (value-10))
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
122 command = "P%i%s%i" % (cmd, value, carid)
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
123 response = self.com.query( command )
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
124 return response
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
125
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
126 def blinkcar(self, carid, blink):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
127 """
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
128 Set car blinking state
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
129 """
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
130 if (carid < 0) or (carid > 5):
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
131 return "ERR - invalid carid"
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
132 if blink:
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
133 return self.com.query( "P48%i" % carid )
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
134 else:
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
135 return self.com.query( "P40%i" % carid )
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
136
36
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
137 def speedlimit(self, carid, value):
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
138 """
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
139 Set the maximum controller speed for a car
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
140 Attention: this is software limited, this does not affect car acceleration!
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
141 """
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
142 if (carid < 0) or (carid > 5):
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
143 return "ERR - invalid carid"
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
144 if (value<0) or (value>15):
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
145 return "ERR - invalid value"
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
146 # transform value 10..15 to A..F
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
147 if (value>9):
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
148 value = chr(ord("A") + (value-10))
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
149 return self.com.query( "L%i%s" % (carid, value) )
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
150
50
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
151 def speedminimum(self, carid, value):
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
152 """
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
153 Set the minimzm controller speed for a car
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
154 """
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
155 if (carid < 0) or (carid > 5):
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
156 return "ERR - invalid carid"
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
157 if (value<0) or (value>15):
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
158 return "ERR - invalid value"
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
159 # transform value 10..15 to A..F
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
160 if (value>9):
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
161 value = chr(ord("A") + (value-10))
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
162 return self.com.query( "S%i%s" % (carid, value) )
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
163
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
164
26
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
165 def setmode(self, mode):
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
166 """
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
167 Switch the Blackbox mode
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
168 Valid modes are: idle, prepare, race
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
169 note: box will permanently send status info in race mode, so no
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
170 polling is required
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
171 """
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
172 return True
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
173
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
174 def getmode(self):
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
175 self.readinfo()
4af697fa5ea9 added some communication definitions
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
176 return self.info["mode"]

mercurial