ft. button press reset

Dependencies:   mbed

Fork of BeaconDemo_RobotCode by Science Memeseum

Committer:
jah128
Date:
Thu Oct 22 00:46:14 2015 +0000
Revision:
6:ff3c66f7372b
Parent:
0:8a5497a2e366
Child:
8:00558287a4ef
Initial version: beacon detection and sync. code, bearing estimation.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jah128 0:8a5497a2e366 1 /* University of York Robotics Laboratory PsiSwarm Library: Motor Functions Header File
jah128 0:8a5497a2e366 2 *
jah128 0:8a5497a2e366 3 * File: motors.h
jah128 0:8a5497a2e366 4 *
jah128 6:ff3c66f7372b 5 * (C) Dept. Electronics & Computer Science, University of York
jah128 6:ff3c66f7372b 6 * James Hilder, Alan Millard, Homero Elizondo, Jon Timmis
jah128 0:8a5497a2e366 7 *
jah128 6:ff3c66f7372b 8 * PsiSwarm Library Version: 0.3
jah128 0:8a5497a2e366 9 *
jah128 6:ff3c66f7372b 10 * October 2015
jah128 0:8a5497a2e366 11 *
jah128 0:8a5497a2e366 12 */
jah128 0:8a5497a2e366 13
jah128 0:8a5497a2e366 14 #ifndef MOTORS_H
jah128 0:8a5497a2e366 15 #define MOTORS_H
jah128 0:8a5497a2e366 16
jah128 0:8a5497a2e366 17 void set_left_motor_speed(float speed);
jah128 0:8a5497a2e366 18 void set_right_motor_speed(float speed);
jah128 0:8a5497a2e366 19 void brake_left_motor(void);
jah128 0:8a5497a2e366 20 void brake_right_motor(void);
jah128 0:8a5497a2e366 21 void brake(void);
jah128 0:8a5497a2e366 22 void stop(void);
jah128 0:8a5497a2e366 23 void forward(float speed);
jah128 0:8a5497a2e366 24 void backward(float speed);
jah128 0:8a5497a2e366 25 void turn(float speed);
jah128 0:8a5497a2e366 26
jah128 0:8a5497a2e366 27
jah128 0:8a5497a2e366 28 void IF_update_motors();
jah128 0:8a5497a2e366 29 float IF_calibrated_speed(float speed);
jah128 0:8a5497a2e366 30 void IF_init_motors(void);
jah128 0:8a5497a2e366 31
jah128 0:8a5497a2e366 32 #endif