You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#include "mode.h"
|
|
|
|
#include "Rover.h"
|
|
|
|
|
|
|
|
void ModeHold::update()
|
|
|
|
{
|
|
|
|
// hold position - stop motors and center steering
|
|
|
|
g2.motors.set_throttle(0.0f);
|
|
|
|
g2.motors.set_steering(0.0f);
|
|
|
|
|
|
|
|
// hold mode never reverses
|
|
|
|
rover.set_reverse(false);
|
|
|
|
}
|