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

23 lines
293 B
C
Raw Normal View History

2018-02-14 18:07:10 +01:00
/*
* 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