@nrp.MapVariable("cyan_left",initial_value = 0, scope = nrp.GLOBAL)
@nrp.MapVariable("cyan_right",initial_value = 0, scope = nrp.GLOBAL)
@nrp.MapVariable("turquoise",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("turn_f",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("vision_blu",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("vision_red",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("vision_black",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("vision_green",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("vision_cyan",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("vision_yellow",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("vision_purple",initial_value = 0,scope = nrp.GLOBAL)
@nrp.MapVariable("vision_indaco",initial_value = 0,scope = nrp.GLOBAL)
@nrp.Neuron2Robot(Topic('/husky/husky/cmd_vel', geometry_msgs.msg.Twist))
def follow_cyan (t,cyan_left,cyan_right,turquoise,turn_f,vision_blu,vision_red,vision_black,vision_green,vision_cyan,vision_yellow,vision_purple,vision_indaco):
if(turn_f.value == 0 and (vision_red.value == 0 and vision_blu.value == 0 and vision_green.value == 0 and vision_black.value == 0 and vision_purple.value == 0 and vision_indaco.value == 0 and vision_yellow.value == 0)):
if (cyan_left.value > 0.001 and cyan_right.value > 0.001):
vision_cyan.value = 1
if(cyan_left.value > 0.001 and cyan_right.value > 0.001):
return geometry_msgs.msg.Twist(linear=geometry_msgs.msg.Vector3(1.0,0,0))
if(cyan_left.value < 0.001 and cyan_right.value > 0.001):
return geometry_msgs.msg.Twist(angular=geometry_msgs.msg.Vector3(0,0,-2))
if(cyan_left.value > 0.001 and cyan_right.value < 0.001):
return geometry_msgs.msg.Twist(angular=geometry_msgs.msg.Vector3(0,0,2))