/* * ADC.hpp * * Created on: Jul 1, 2023 * Author: Carst */ #ifndef ADC_HPP_ #define ADC_HPP_ #include namespace ElektronischeLast { class iADC { public: iADC(void); ~iADC(void); std::uint32_t get_current(void); std::uint32_t get_temperature(void); std::uint32_t get_voltage(void); private: }; } #endif /* ADC_HPP_ */