GM6000 Digital Heater Controller Branch: main
SDX-1330
HalSingleInput.h
Go to the documentation of this file.
1#ifndef Driver_AIO_Arduino_HALSingleIinput_h_
2#define Driver_AIO_Arduino_HALSingleIinput_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
16#include "wiring_analog.h"
17
18/// Target supports 12 bit ADC. Set 0 to disable
19#ifndef HAS_DRIVER_AIO_ARDUINO_HAL_SINGLE_INPUT_12ADC
20#define HAS_DRIVER_AIO_ARDUINO_HAL_SINGLE_INPUT_12ADC 1
21#endif
22
23/// Target supports 16 bit ADC. Set 0 to disable
24#ifndef HAS_DRIVER_AIO_ARDUINO_HAL_SINGLE_INPUT_16ADC
25#define HAS_DRIVER_AIO_ARDUINO_HAL_SINGLE_INPUT_16ADC 0
26#endif
27
28/*-------------- PUBLIC API ------------------------------------------------*/
29/** This method is used to initialize the GPIO for the pin/configuration specified
30 by 'analogInputPin'
31 */
32void driverAIOHalSingleInputArduino_initialize( int analogInputPin, eAnalogReference avref );
33
34
35/*--------------------------------------------------------------------------*/
36#endif
void driverAIOHalSingleInputArduino_initialize(int analogInputPin, eAnalogReference avref)
This method is used to initialize the GPIO for the pin/configuration specified by 'analogInputPin'.