From 683d3fffd51e3ffbf34a5b3e2f9777e5d06304a7 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Wolle) Ewald" Date: Mon, 24 Oct 2022 20:20:37 +0200 Subject: Add files via upload --- examples/Continuous/Continuous.ino | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/examples/Continuous/Continuous.ino b/examples/Continuous/Continuous.ino index ec16f9b..5946662 100644 --- a/examples/Continuous/Continuous.ino +++ b/examples/Continuous/Continuous.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); -- cgit v1.2.3