TP_Voilier/FileInclude/MyADC.h
2022-10-28 10:04:14 +02:00

12 lines
201 B
C

#ifndef __MYADC_H
#define __MYADC_H
#include "stm32f10x.h"
// initialise tout ce au'il y a a faire pour l'ADC:
void initADC(int channel);
void startADC(void);
int read(void);
#endif