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.
robot.h
- Committer:
- zsunberg
- Date:
- 2015-08-10
- Revision:
- 32:7e518320305f
- Parent:
- 31:e36b7722df56
- Child:
- 36:ae0fa5fea38f
File content as of revision 32:7e518320305f:
#include <stdio.h> #include <stdlib.h> #include "mbed.h" #include "m3pi.h" #define BUF_SIZE 128 #define ERROR 1 #define OK 0 //max/min speed #define MAX 1.0 #define MIN 0.1 DigitalOut xbeeReset(p26); //reset on Xbee Serial pc(USBTX, USBRX); // tx, rx, interface with PC Serial xbee(p28, p27); //tx, rx, interface with xbee DigitalOut led1(LED1); DigitalOut led2(LED2); DigitalOut led3(LED3); DigitalOut led4(LED4); m3pi pi; volatile int mode; #define MANUAL_MODE 0 #define LINE_FOLLOW_MODE 1 #define TURN_MODE 2 #define NUDGE_MODE 3 bool comm_time; volatile double leftspeed; volatile double rightspeed; volatile double line_position; char received[1024]; int r_index; int sensors[5]; // GAINS/Params ////////////////////////////// double k_p = 0.3; double k_i = 0.0; double k_d = 0.6; double speed = 0.3; ////////////////////////////// Ticker communication; Ticker controls;