16 lines
194 B
C++
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 |