1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-06-29 06:29:01 +02:00
cdf2018-principal/arduino/position.h

23 lines
293 B
C

/*
* Outils assurant la connaissance de la postion du robot
*/
#ifndef __POSITION_H_
#define __POSITION_H_
#include <FreeRTOS.h>
#include <task.h>
struct position {
float x;
float y;
float o;
};
TaskHandle_t tPosition;
void TaskPosition();
void configurePosition();
#endif