diff options
author | Wolfgang (Wolle) Ewald <wolfgang.ewald@wolles-elektronikkiste.de> | 2021-02-18 23:29:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 23:29:40 +0100 |
commit | 30f84ec881f2e0cb718288cd58dc37c7bc960a27 (patch) | |
tree | 77d229b29bde668db17a031726d910d3e41346ab | |
parent | Delete Single_Shot_Conv_Ready_Alert_Controlled.ino (diff) | |
download | ADS1115_WE-30f84ec881f2e0cb718288cd58dc37c7bc960a27.tar ADS1115_WE-30f84ec881f2e0cb718288cd58dc37c7bc960a27.tar.gz ADS1115_WE-30f84ec881f2e0cb718288cd58dc37c7bc960a27.tar.bz2 ADS1115_WE-30f84ec881f2e0cb718288cd58dc37c7bc960a27.tar.lz ADS1115_WE-30f84ec881f2e0cb718288cd58dc37c7bc960a27.tar.xz ADS1115_WE-30f84ec881f2e0cb718288cd58dc37c7bc960a27.tar.zst ADS1115_WE-30f84ec881f2e0cb718288cd58dc37c7bc960a27.zip |
-rw-r--r-- | examples/Single_Shot_Conv_Ready_Controlled/Single_Shot_Conv_Ready_Controlled.ino | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/Single_Shot_Conv_Ready_Controlled/Single_Shot_Conv_Ready_Controlled.ino b/examples/Single_Shot_Conv_Ready_Controlled/Single_Shot_Conv_Ready_Controlled.ino index 145e60c..ea76f8f 100644 --- a/examples/Single_Shot_Conv_Ready_Controlled/Single_Shot_Conv_Ready_Controlled.ino +++ b/examples/Single_Shot_Conv_Ready_Controlled/Single_Shot_Conv_Ready_Controlled.ino @@ -77,8 +77,12 @@ void setup() { *
* ADS1115_CONTINUOUS -> continuous mode
* ADS1115_SINGLE -> single shot mode (default)
+ *
+ * Continuous mode does not work with conversion ready (isBusy), but it works with the
+ * conversion ready alert pin. Confusing, but that's a property of the ADS1115 and not
+ * a property of the library.
*/
- //adc.setMeasureMode(ADS1115_CONTINUOUS); //continuous mode does not work with conversion ready (isBusy)
+ // adc.setMeasureMode(ADS1115_CONTINUOUS); // continuous mode does not work with conversion ready (isBusy)
/* Choose maximum limit or maximum and minimum alert limit (window) in volts - alert pin will
* assert when measured values are beyond the maximum limit or outside the window
|