11 lines
140 B
C
11 lines
140 B
C
#ifndef VOLTAGE_H
|
|
#define VOLTAGE_H
|
|
|
|
#include "ADC.h"
|
|
#include "GPIO.h"
|
|
|
|
void Voltage_conf(void);
|
|
|
|
double Voltage_getVoltage(void);
|
|
|
|
#endif
|