From 2e73f1aec042986fae435d68cacafcba8b8ec49f Mon Sep 17 00:00:00 2001 From: martinbra Date: Thu, 30 Jul 2020 00:21:11 -0300 Subject: Fixing some minor typos (continous, maxium and paramater). Keeping "typoed" ADS1115_CONTINOUS enum value for backward compatibilities. --- src/ADS1115_WE.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/ADS1115_WE.h') diff --git a/src/ADS1115_WE.h b/src/ADS1115_WE.h index c5a269a..c531368 100644 --- a/src/ADS1115_WE.h +++ b/src/ADS1115_WE.h @@ -70,8 +70,9 @@ typedef enum ADS1115_CONV_RATE{ } convRate; typedef enum ADS1115_MEASURE_MODE{ - ADS1115_CONTINOUS = 0x0000, - ADS1115_SINGLE = 0x0100 + ADS1115_CONTINOUS = 0x0000, // keeping misspelled enum for backwards compatibility. + ADS1115_CONTINUOUS = 0x0000, + ADS1115_SINGLE = 0x0100 } measureMode; typedef enum ADS1115_RANGE{ @@ -139,7 +140,7 @@ public: */ void setAlertPol(ADS1115_ALERT_POL polarity); - /* Choose maximum limit or maxium and minimum alert limit (window)in Volt - alert pin will + /* Choose maximum limit or maximum and minimum alert limit (window)in Volt - alert pin will * be active when measured values are beyond the maximum limit or outside the window * Upper limit first: setAlertLimit_V(MODE, maximum, minimum) * In max limit mode the minimum value is the limit where the alert pin will be deactivated (if @@ -164,9 +165,9 @@ public: */ void setConvRate(ADS1115_CONV_RATE rate); - /* Set continous or single shot mode: + /* Set continuous or single shot mode: * - * ADS1115_CONTINOUS -> continous mode + * ADS1115_CONTINUOUS -> continuous mode * ADS1115_SINGLE -> single shot mode (default) */ void setMeasureMode(ADS1115_MEASURE_MODE mode); -- cgit v1.2.3