diff options
author | Wolfgang (Wolle) Ewald <wolfgang.ewald@wolles-elektronikkiste.de> | 2021-06-14 16:47:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-14 16:47:51 +0200 |
commit | 4ee18ba1f5d37b989a423413431b488f4755155b (patch) | |
tree | fc2feb4787d4fa36a2fe89d48833ce96ff07ec18 | |
parent | Update Result_Format_Options.ino (diff) | |
download | ADS1115_WE-4ee18ba1f5d37b989a423413431b488f4755155b.tar ADS1115_WE-4ee18ba1f5d37b989a423413431b488f4755155b.tar.gz ADS1115_WE-4ee18ba1f5d37b989a423413431b488f4755155b.tar.bz2 ADS1115_WE-4ee18ba1f5d37b989a423413431b488f4755155b.tar.lz ADS1115_WE-4ee18ba1f5d37b989a423413431b488f4755155b.tar.xz ADS1115_WE-4ee18ba1f5d37b989a423413431b488f4755155b.tar.zst ADS1115_WE-4ee18ba1f5d37b989a423413431b488f4755155b.zip |
-rw-r--r-- | src/ADS1115_WE.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ADS1115_WE.h b/src/ADS1115_WE.h index 2a81342..9443bd8 100644 --- a/src/ADS1115_WE.h +++ b/src/ADS1115_WE.h @@ -234,8 +234,8 @@ public: /* Get the raw result from the conversion register: * The conversion register contains the conversion result of the amplified (!) * voltage. This means the value depends on the voltage as well as on the - * voltage range. E.g. if the voltage range is 6.144 mV (ADS1115_RANGE_6144), - * +32767 is 6.144 mV; if the range is 4.096 mV, +32767 is 4.096 mV, and so on. + * voltage range. E.g. if the voltage range is 6144 mV (ADS1115_RANGE_6144), + * +32767 is 6144 mV; if the range is 4096 mV, +32767 is 4096 mV, and so on. */ int16_t getRawResult(); @@ -243,7 +243,7 @@ public: * The results in the conversion register are in a range of -32767 to +32767 * You might want to receive the result in a different scale, e.g. -1023 to 1023. * For -1023 to 1023, and if you have chosen e.g. ADS1115_RANGE_4096, 0 Volt would - * give 0 as result and 4.096 mV would give 1023. -4.096 mV would give -1023. + * give 0 as result and 4096 mV would give 1023. -4096 mV would give -1023. */ int16_t getResultWithRange(int16_t min, int16_t max); |