1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-06-01 02:25:00 +02:00
cdf2018-principal/chef/src/securite.h

17 lines
336 B
C
Raw Normal View History

2018-05-09 04:09:38 +02:00
#ifndef __SECURITE_H_
#define __SECURITE_H_
#include <pthread.h>
#define SOUND_MM_P_MS 0.3312
#define SENSOR_SAMPLING_INTERVAL 60
// Fonctions
void configureSecurite();
void deconfigureSecurite();
void getDistance(float* avant, float* arriere);
2018-05-11 05:34:06 +02:00
void getAllDistance(float* frontL, float* frontR, float* backL, float* backR);
2018-05-09 04:09:38 +02:00
#endif