Hi,
If you're using MELABS PicBasicPro then you can't have the IF statement like:
Code:
if go_command <> command_none then motor_output = go_command
You'll have to do:
Code:
if go_command <> command_none then 
     motor_output = go_command
Endif
HTH

/Henrik Olsson.