ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
(Pin = "light off")
will do assignment rather than comparison (one '=' means assign). The fix:
(Pin == "light off")
2 | clarification |
(Pin = "light off")
will do assignment rather than comparison (one '=' means assign). The fix:
(Pin == "light off")
I assume here that by "output" you mean the led changing.