Recognized text: move towards the position of the ball
===
```python
from Control import *

control = Control()

def move_to_ball(steps):
    for i in range(steps):
        control.forWard()
    control.stop()

distance = ultrasonic.getDistance()
steps_to_ball = distance // 2

move_to_ball(steps_to_ball)
