Files
Scanning the repository...
Last update 7 years 6 months
by Nick
adc.h/* * Copyright (C) 2016-2017 Nick Naumenko (https://github.com/nnaumenko) * All rights reserved * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. */ #ifndef ADC_H #define ADC_H #include <Arduino.h> enum class ADCFilter { OFF = 0, AVERAGE, LOWPASS, }; #endif