Localization
Dependencies: BNO055_fusion mbed
main.cpp
- Committer:
- 12104404
- Date:
- 2016-03-23
- Revision:
- 13:c62f975dfcfe
- Parent:
- 12:3b26fcc7da7e
- Child:
- 14:4839989ae907
File content as of revision 13:c62f975dfcfe:
#include "LOCALIZE.h" #include "LOCOMOTION.h" #include "WATCHDOG.h" #define SPEED_TURN_MIN 0.30 #define SPEED_TURN_MAX 0.45 #define SPEED_FB_MIN 0.15 #define SPEED_FB_MAX 0.50 Serial pc(p13, p14); //Serial pc(USBTX, USBRX); Watchdog wdt; I2C i2c1(p28, p27); I2C i2c2(p9, p10); LOCALIZE loc(i2c1, i2c2, p26); LOCALIZE_xya xya; DigitalOut dir1(p15); DigitalOut dir2(p16); PwmOut motor1F(p21); PwmOut motor1B(p22); PwmOut motor2F(p23); PwmOut motor2B(p24); Ticker t; bool flag=false; void send(); void setAngle(int angle); int wrap(int a); int main() { wdt.kick(5); pc.baud(9600); dir1=0; dir2=0; motor1F=0; motor1B=0; motor2F=0; motor2B=0; //pc.printf("Initialized Localization: %d\n",loc.init()); t.attach(&send,1); while(1) { //loc.get_angle(&xya); loc.get_xy(&xya); //pc.printf("X: %3d\tY: %3d\tP: %3d\n",xya.x,xya.y,xya.a); //setAngle(0); wdt.kick(); } } void send() { pc.printf("%c%c%c%c\n",(char)xya.x,(char)xya.y,xya.a/10,xya.a%10); } void setAngle(int angle) { float s = 0; int diff = 0; diff = 180-wrap(angle); if(abs(wrap(xya.a+diff)-180)<=5) s=SPEED_TURN_MIN; else s=((SPEED_TURN_MAX-SPEED_TURN_MIN)*abs(wrap(xya.a+diff)-180)/180)+SPEED_TURN_MIN; motor1F=s; motor1B=s; motor2F=s; motor2B=s; if(wrap(xya.a+diff)>180+2) { dir1=1; dir2=0; } else if(wrap(xya.a+diff)<180-2) { dir1=0; dir2=1; } else { motor1F=0; motor1B=0; motor2F=0; motor2B=0; } } int wrap(int a) { return a%360; }