Skip to content
Snippets Groups Projects
adc.h 246 B
Newer Older
  • Learn to ignore specific revisions
  • /*
     * Copyright 2020 Daniel 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