Prusa-MMU-Private
PrusaMultiMaterialUpgradev3firmwareforMK3SMK4
adc.h
Go to the documentation of this file.
1 #pragma once
3 #include <stdint.h>
4 
5 namespace hal {
6 
8 namespace adc {
9 
11 void Init();
12 uint16_t ReadADC(uint8_t channel);
13 
14 } // namespace adc
15 } // namespace hal
16 
17 namespace ha = hal::adc;
Hardware Abstraction Layer for the ADC's.
Definition: adc.cpp:6
void Init()
ADC access routines.
Definition: adc.cpp:8