summaryrefslogtreecommitdiff
path: root/include/arch/msp430fr5969lp/driver/adc.h
blob: d93aed43b45c351ec0c97371ba00f346b4c4a758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef ADC_H
#define ADC_H

class ADC {
	private:
		ADC(ADC const &copy);

	public:
		ADC() {}

		float getTemp();
		float getVCC();
};

extern ADC adc;

#endif