Codes de télécommande

Le code suivant permet de contrôler le robot avec une télécommande standard RC5 :

onevent rc5
if rc5.command == 2 then
    motor.left.target = 300
    motor.right.target = 300
elseif rc5.command == 8 then
    motor.left.target = -300
    motor.right.target = -300
elseif rc5.command == 4 then
    motor.left.target = -300
    motor.right.target = 300
elseif rc5.command == 6 then
    motor.left.target = 300
    motor.right.target = -300
else
    motor.left.target = 0
    motor.right.target = 0
end
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License