Files
ESP32_PV_MPPT/include/adc.h
2024-02-23 08:46:53 +00:00

16 lines
194 B
C++

#ifndef _ADC__H_
#define _ADC__H_
class AADC
{
public:
void ADC_SetGain();
void Read_Sensors();
void backflowControl();
void Device_Protection();
};
extern AADC a_adc;
#endif