Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of BeaconDemo_RobotCode by
PsiSwarm/motors.h
- Committer:
- jah128
- Date:
- 2015-10-27
- Revision:
- 13:f5994956b1ba
- Parent:
- 9:085e090e1ec1
File content as of revision 13:f5994956b1ba:
/* University of York Robotics Laboratory PsiSwarm Library: Motor Functions Header File
*
* File: motors.h
*
* (C) Dept. Electronics & Computer Science, University of York
* James Hilder, Alan Millard, Homero Elizondo, Jon Timmis
*
* PsiSwarm Library Version: 0.3
*
* October 2015
*
*/
#ifndef MOTORS_H
#define MOTORS_H
void set_left_motor_speed(float speed);
void set_right_motor_speed(float speed);
void brake_left_motor(void);
void brake_right_motor(void);
void brake(void);
void stop(void);
void forward(float speed);
void backward(float speed);
void turn(float speed);
// New time based functions (library v0.3)
void time_based_forward(float speed, int microseconds, char brake);
void time_based_turn(float speed, int microseconds, char brake);
int time_based_turn_degrees(float speed, float degrees, char brake);
float get_maximum_turn_angle(int microseconds);
int get_time_based_turn_time(float speed, float degrees);
void IF_check_time_for_existing_time_based_action();
void IF_end_time_based_action();
void IF_update_motors();
float IF_calibrated_speed(float speed);
void IF_init_motors(void);
#endif
