Exemplo n.º 1
0
def publishTrajGoal(name, channel=''):

    msg = lcmdrc.behavior_command_t()
    msg.utime = getUtime()
    msg.command = name
    lcmWrapper.publish('EE_TRAJ_GOAL', msg)

    publishSystemStatus('sending EE traj goal: ' + name)
Exemplo n.º 2
0
def publishTrajGoal(name, channel=''):

    msg = lcmdrc.behavior_command_t()
    msg.utime = getUtime()
    msg.command = name
    lcmWrapper.publish('EE_TRAJ_GOAL', msg)

    publishSystemStatus('sending EE traj goal: ' + name)
Exemplo n.º 3
0
def publishTrajGoal(name, channel=""):

    import drc as lcmdrc

    msg = lcmdrc.behavior_command_t()
    msg.utime = getUtime()
    msg.command = name
    lcmWrapper.publish("EE_TRAJ_GOAL", msg)

    publishSystemStatus("sending EE traj goal: " + name)
Exemplo n.º 4
0
    def sendBehaviorCommand(self, behaviorName):

        msg = lcmdrc.behavior_command_t()
        msg.utime = getUtime()
        msg.command = behaviorName
        lcmUtils.publish('ATLAS_BEHAVIOR_COMMAND', msg)
Exemplo n.º 5
0
 def sendCommand(self, channel, **kwargs):
     msg = lcmdrc.behavior_command_t()
     msg.command = json.dumps(kwargs)
     lcmUtils.publish(channel, msg)
Exemplo n.º 6
0
    def sendBehaviorCommand(self, behaviorName):

        msg = lcmdrc.behavior_command_t()
        msg.utime = getUtime()
        msg.command = behaviorName
        lcmUtils.publish('ATLAS_BEHAVIOR_COMMAND', msg)
Exemplo n.º 7
0
 def sendCommand(self, channel, **kwargs):
     msg = lcmdrc.behavior_command_t()
     msg.command = json.dumps(kwargs)
     lcmUtils.publish(channel, msg)