This Application is brought to you by this features:
- Draw the sensors and motors of the Robot in DonbalRow Line Follower Simulator Robot Designer(DRLFRD) and save it.
- Open DonbalRow Line Follower Simulator Robot Tester, Draw the ground that robot will do it’s program in.
- Load the Robot File created by DRLFRD.
- write the Algorithm in Python programming language.
- Set and Start Robot.
To install this application you will need:
- Microsoft DotNet Framework 3.5 +
- Python 2.6 +
Sample Robot Code:
import robot
robot = robot.robot()
while 1:
if robot.sen(0) == "white":
robot.m(255,-255)
elif robot.sen(1) == "white":
robot.m(-255,255)
else:
robot.m(255,255)