13 lines
229 B
C
13 lines
229 B
C
#ifndef DETEC_ADV_H
|
|
#define DETEC_ADV_H
|
|
|
|
#define I2C_SLAVE_detect_adv 0x18
|
|
|
|
struct detect_adv_reception_t {
|
|
unsigned char distance_cm[12];
|
|
};
|
|
|
|
void Detect_adv_lire(struct detect_adv_reception_t * detect_adv_reception);
|
|
|
|
#endif
|