We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8d32a3 commit 2e8c357Copy full SHA for 2e8c357
1 file changed
python/examples/example.py
@@ -167,6 +167,7 @@ def driveInput(self):
167
self.objMan.ManualControlCommand.updated()
168
169
print "Arming board using Yaw right"
170
+ # FIXME: Seems there is a issue with ArmedField.ARMED, 2 equals to the ARMED state
171
while (self.objMan.FlightStatus.Armed.value != 2):
172
self.objMan.ManualControlCommand.Yaw.value = 1
173
@@ -230,6 +231,7 @@ def driveInput(self):
230
231
time.sleep(1)
232
233
print "Disarming board using Yaw left"
234
+ # FIXME: Seems there is a issue with ArmedField.DISARMED, 0 equals to the DISARMED state
235
while (self.objMan.FlightStatus.Armed.value != 0):
236
self.objMan.ManualControlCommand.Yaw.value = -1
237
0 commit comments