diff options
author | Wolfgang (Wolle) Ewald <wolfgang.ewald@wolles-elektronikkiste.de> | 2022-10-24 20:22:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-24 20:22:10 +0200 |
commit | b9cb230ed2d7e163ae2e0a6a3a4768a293d1b9d7 (patch) | |
tree | bfaee925f0f40533380e1a5fcff3b51fc937ad8b | |
parent | Update Alert_Window_Mode_with_Latch.ino (diff) | |
download | ADS1115_WE-b9cb230ed2d7e163ae2e0a6a3a4768a293d1b9d7.tar ADS1115_WE-b9cb230ed2d7e163ae2e0a6a3a4768a293d1b9d7.tar.gz ADS1115_WE-b9cb230ed2d7e163ae2e0a6a3a4768a293d1b9d7.tar.bz2 ADS1115_WE-b9cb230ed2d7e163ae2e0a6a3a4768a293d1b9d7.tar.lz ADS1115_WE-b9cb230ed2d7e163ae2e0a6a3a4768a293d1b9d7.tar.xz ADS1115_WE-b9cb230ed2d7e163ae2e0a6a3a4768a293d1b9d7.tar.zst ADS1115_WE-b9cb230ed2d7e163ae2e0a6a3a4768a293d1b9d7.zip |
-rw-r--r-- | examples/Auto_Range/Auto_Range.ino | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/Auto_Range/Auto_Range.ino b/examples/Auto_Range/Auto_Range.ino index 7813658..204f05d 100644 --- a/examples/Auto_Range/Auto_Range.ino +++ b/examples/Auto_Range/Auto_Range.ino @@ -14,11 +14,10 @@ #define I2C_ADDRESS 0x48
/* There are several ways to create your ADS1115_WE object:
- * ADS1115_WE adc = ADS1115_WE() -> uses Wire / I2C Address = 0x48
- * ADS1115_WE adc = ADS1115_WE(I2C_ADDRESS) -> uses Wire / I2C_ADDRESS
- * ADS1115_WE adc = ADS1115_WE(&wire2) -> uses the TwoWire object wire2 / I2C_ADDRESS
- * ADS1115_WE adc = ADS1115_WE(&wire2, I2C_ADDRESS) -> all together
- * Successfully tested with two I2C busses on an ESP32
+ * ADS1115_WE adc = ADS1115_WE(); -> uses Wire / I2C Address = 0x48
+ * ADS1115_WE adc = ADS1115_WE(I2C_ADDRESS); -> uses Wire / I2C_ADDRESS
+ * ADS1115_WE adc = ADS1115_WE(&Wire); -> you can pass any TwoWire object / I2C Address = 0x48
+ * ADS1115_WE adc = ADS1115_WE(&Wire, I2C_ADDRESS); -> all together
*/
ADS1115_WE adc = ADS1115_WE(I2C_ADDRESS);
|