Class: OneSensorFollow

OneSensorFollow()

Class which defines a concrete robot algorithm. The algorithm implemented uses a single analogue light sensor to follow the edge of a line.

Constructor

new OneSensorFollow()

Empty constructor. No setup is required for this algorithm
Source:
See:

Methods

follow(robotData) → {Robot.MovementCommands}

The follow method that overrides the virtual follow method. For this algorithm the forwardVelocity is set to move at 0.3 tiles per second with a rotation rate of -1.2 radians per second. The rotation switches direction if the light sensor value is less than 0.5., i.e. if it reads black.
Parameters:
Name Type Description
robotData Robot.RobotTelemetryData Values for all the sensors that the robot can read. This includes the position, velocity, bearing and light sensors.
Source:
Returns:
- The commands for the robot effectors.
Type
Robot.MovementCommands

Documentation generated by JSDoc 4.0.2 on Fri Aug 30 2024 16:12:54 GMT-0600 (Mountain Daylight Time)