Create a Blockly program that controls the movement of a robot based on joystick input.

Blockly
repeat forever
    if joystick pushed forward
       move robot forward 
         else if
       joystick pushed backward
         move robot backward
       else if joystick pushed right
         turn robot right
       else if joystick pushed left
         turn robot left

Related Questions