Example #1
0
 def sendRecoveryDisable(self):
     msg = lcmdrc.boolean_t()
     msg.data = False
     lcmUtils.publish('RECOVERY_ENABLE', msg)
Example #2
0
 def sendBracingDisable(self):
     msg = lcmdrc.boolean_t()
     msg.data = False
     lcmUtils.publish('BRACING_ENABLE', msg)
Example #3
0
 def sendRecoveryDisable(self):
     msg = lcmdrc.boolean_t()
     msg.data = False
     lcmUtils.publish('RECOVERY_ENABLE', msg)
Example #4
0
 def sendBracingDisable(self):
     msg = lcmdrc.boolean_t()
     msg.data = False
     lcmUtils.publish('BRACING_ENABLE', msg)
Example #5
0
 def sendBracingEnable(self):
     msg = lcmdrc.boolean_t()
     msg.data = True
     lcmUtils.publish("BRACING_ENABLE", msg)
Example #6
0
 def sendRecoveryEnable(self):
     msg = lcmdrc.boolean_t()
     msg.data = True
     lcmUtils.publish("RECOVERY_ENABLE", msg)