From 851d426ce1d01a202e101e84c153f3884e3c0154 Mon Sep 17 00:00:00 2001 From: marqdevx Date: Tue, 20 Apr 2021 15:42:25 +0200 Subject: [PATCH 1/2] Switched back to SW I2C Display --- src/Arduino_SensorKit.cpp | 2 +- src/Arduino_SensorKit.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Arduino_SensorKit.cpp b/src/Arduino_SensorKit.cpp index 5ba43d1..0c2a7c1 100644 --- a/src/Arduino_SensorKit.cpp +++ b/src/Arduino_SensorKit.cpp @@ -1,7 +1,7 @@ #include "Arduino_SensorKit.h" //Declare component's classes -U8X8_SSD1306_128X64_NONAME_HW_I2C Oled(/* reset=*/ U8X8_PIN_NONE); +U8X8_SSD1306_128X64_NONAME_SW_I2C Oled(/* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE); DHT Environment(DHTPIN, DHTTYPE); SensorKit_LIS3DHTR Accelerometer; SensorKit_BMP280 Pressure; diff --git a/src/Arduino_SensorKit.h b/src/Arduino_SensorKit.h index 8113ecb..9fdefb0 100644 --- a/src/Arduino_SensorKit.h +++ b/src/Arduino_SensorKit.h @@ -25,7 +25,7 @@ #endif //Make the declared components from the .cpp to the sketch available -extern U8X8_SSD1306_128X64_NONAME_HW_I2C Oled; +extern U8X8_SSD1306_128X64_NONAME_SW_I2C Oled; extern SensorKit_LIS3DHTR Accelerometer; extern SensorKit_BMP280 Pressure; extern DHT Environment; From ec29e6416833274447d6e01302f22dd3f7660e97 Mon Sep 17 00:00:00 2001 From: marqdevx Date: Tue, 20 Apr 2021 15:52:48 +0200 Subject: [PATCH 2/2] Version increased v1.0.9 --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index 6825a68..0039616 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Arduino_Sensorkit -version=1.0.8 +version=1.0.9 author=Lenard George, Pablo Marquínez maintainer=Arduino sentence=Arduino Sensor Kit