From 43401e0461c7c3073cc57ec6050d2cae5ab4299f Mon Sep 17 00:00:00 2001 From: "Wolfgang (Wolle) Ewald" Date: Tue, 4 Aug 2020 18:56:52 +0200 Subject: Add files via upload --- src/ADS1115_WE.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/ADS1115_WE.cpp') diff --git a/src/ADS1115_WE.cpp b/src/ADS1115_WE.cpp index e3df817..9da6d48 100644 --- a/src/ADS1115_WE.cpp +++ b/src/ADS1115_WE.cpp @@ -163,6 +163,15 @@ float ADS1115_WE::getResult_mV(){ return result; } +int16_t ADS1115_WE::getResultWithRange(int16_t min, int16_t max){ + int16_t rawResult = readRegister(ADS1115_CONV_REG); + //rawResult = (int) (rawResult * (voltageRange * 1.0 / 6144)); + int16_t result = 0; + result = map(rawResult, 0, 32767, min, max); + return result; +} + + void ADS1115_WE::setAlertPinToConversionReady(){ writeRegister(ADS1115_LO_THRESH_REG, (0<<15)); writeRegister(ADS1115_HI_THRESH_REG, (1<<15)); -- cgit v1.2.3