12 lines
175 B
C
12 lines
175 B
C
#ifndef MYPLATEAU_H
|
|
#define MYPLATEAU_H
|
|
#include "stm32f10x.h"
|
|
|
|
#define DROITE 0x1
|
|
#define GAUCHE 0x0
|
|
|
|
|
|
void Plateau_init(void);
|
|
void Plateau_direction(uint8_t Sens);
|
|
|
|
#endif
|