Recognized text: if you see the ball to the left turn to the left if you see the ball to the right then turn to the right
===
```python
from Control import *
import time

control = Control()

def move_robot(ball_position):
    if ball_position == "left":
        for i in range(5):
            control.turnLeft()
            time.sleep(0.1)
        control.stop()
        
    elif ball_position == "right":
        for i in range(5):
            control.turnRight()
            time.sleep(0.1)
        control.stop()

# Example usage:
# move_robot("left")  # Call with "left" or "right"
