From 1f0be8aad72257d38400061b2e5908e5749339ef Mon Sep 17 00:00:00 2001 From: "Wolfgang (Wolle) Ewald" Date: Sat, 15 Oct 2022 12:43:08 +0200 Subject: Add files via upload --- src/ADS1115_WE.cpp | 12 ------------ src/ADS1115_WE.h | 6 ++---- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/src/ADS1115_WE.cpp b/src/ADS1115_WE.cpp index a3e3214..5028bf9 100644 --- a/src/ADS1115_WE.cpp +++ b/src/ADS1115_WE.cpp @@ -23,23 +23,11 @@ ADS1115_WE::ADS1115_WE(int addr){ i2cAddress = addr; } -ADS1115_WE::ADS1115_WE(){ -#ifndef USE_TINY_WIRE_M_ - _wire = &Wire; -#endif - i2cAddress = 0x48; -} - #ifndef USE_TINY_WIRE_M_ ADS1115_WE::ADS1115_WE(TwoWire *w, int addr){ _wire = w; i2cAddress = addr; } - -ADS1115_WE::ADS1115_WE(TwoWire *w){ - _wire = w; - i2cAddress = 0x48; -} #endif diff --git a/src/ADS1115_WE.h b/src/ADS1115_WE.h index 19f7aff..488cf3e 100644 --- a/src/ADS1115_WE.h +++ b/src/ADS1115_WE.h @@ -112,11 +112,9 @@ typedef enum ADS1115_STATUS_OR_START{ class ADS1115_WE { public: - ADS1115_WE(int addr); - ADS1115_WE(); // uses default I2C Address 0x48 + ADS1115_WE(int addr = 0x48); #ifndef USE_TINY_WIRE_M_ - ADS1115_WE(TwoWire *w, int addr); - ADS1115_WE(TwoWire *w); + ADS1115_WE(TwoWire *w, int addr = 0x48); #endif void reset(); -- cgit v1.2.3