diff options
Diffstat (limited to '')
-rw-r--r-- | src/ADS1115_WE.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ADS1115_WE.h b/src/ADS1115_WE.h index 6d68123..395d4d0 100644 --- a/src/ADS1115_WE.h +++ b/src/ADS1115_WE.h @@ -95,6 +95,7 @@ typedef enum ADS1115_MUX{ ADS1115_COMP_2_GND = 0x6000, ADS1115_COMP_3_GND = 0x7000 } mux; +#define ADS1115_COMP_INC 0x1000 // increment to next channel typedef enum ADS1115_STATUS_OR_START{ ADS1115_BUSY = 0x0000, @@ -213,6 +214,10 @@ public: */ void setCompareChannels(ADS1115_MUX mux); + /* Set to channel (0-3) in single ended mode + */ + void setSingleChannel(size_t channel); + bool isBusy(); void startSingleMeasurement(); float getResult_V(); |