summaryrefslogtreecommitdiff
path: root/include/arch/msp430fr5969lp/driver/adc.h
blob: 507dfee0da22f44f0160256b8a0b2177315e4a2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright 2020 Birte Kristina Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */
#ifndef ADC_H
#define ADC_H

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

	public:
		ADC() {}

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

extern ADC adc;

#endif