adc is not a module
[clinton/Smoothieware.git] / src / libs / Adc.h
1 /*
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
6 */
7
8
9
10 #ifndef ADC_H
11 #define ADC_H
12
13 #include "PinNames.h" // mbed.h lib
14 #include "libs/ADC/adc.h"
15
16 class Pin;
17
18 class Adc {
19 public:
20 Adc();
21 void enable_pin(Pin* pin);
22 unsigned int read(Pin* pin);
23 PinName _pin_to_pinname(Pin* pin);
24
25 ADC* adc;
26 };
27
28
29
30 #endif