From 51c3a9498f775c8e4a847b41ac49739a2166e24e Mon Sep 17 00:00:00 2001 From: ogiewon Date: Sun, 24 Mar 2019 17:09:45 -0400 Subject: [PATCH] v1.1.4 Added Support for SHT31 sensor --- HubDuino/README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/HubDuino/README.md b/HubDuino/README.md index f1e5e924..da7a34bb 100644 --- a/HubDuino/README.md +++ b/HubDuino/README.md @@ -1,13 +1,11 @@ -HubDuino v1.1.3 +HubDuino v1.1.4 ================ **WARNING** - If using an ESP8266, make sure you are using v2.4.2 of the Arduino ESP8266 Board manager (v2.4/2.4.1 introduced a memory leak causing ST_Anything to crash after an hour or two) along with Arduino IDE v1.8.8. **Recent History:** +- 2019-03-24 HubDuino v1.1.4 - Added support for I2C device - SHT31(temp, humid) - 2019-02-10 HubDuino v1.1.3 - Significant overhaul of ES_Servo class and Child Driver - Thanks Jeff Albers! -- 2018-07-04 HubDuino v1.1.2 - Added support for I2C devices - AM2320(temp, humid), TSL2561(lux), MAX44009(lux), BH1750(lux), BME280(temp,humid,pressure), BMP280(temp, pressure), and improved TCS34725(color lux). Added ST_Anything_I2C_ESP8266WiFi.ino example sketch to demonstrate I2C sensors. -- 2018-06-24 HubDuino v1.1.1 - Added Servo Motor support -- 2018-06-05 HubDuino v1.1 - Converted to use Hubitat Composite Device Driver Model ## Architecture Flow Chart @@ -56,6 +54,8 @@ This package currently implements the following Hubitat Device Capabilities: - Illuminance Measurement (using a Color TCS34725 I2C sensor) - Temperature Measurement (using a AM2320 I2C sensor) - Relative Humidity Measurement (using a AM2320 I2C sensor) +- Temperature Measurement (using a SHT31 I2C sensor) +- Relative Humidity Measurement (using a SHT31 I2C sensor) - Temperature Measurement (using a BME280 I2C sensor) - Relative Humidity Measurement (using a BME280 I2C sensor) - Pressure Measurement (using a BME280 I2C sensor) @@ -225,4 +225,9 @@ Afterwards, go into the device page of the Parent and enter in the highlighted i ## Final Notes for now... Plese refer to the header files of the ST_Anything library for explanation of specific classes, constructor arguments, etc... ST_Anything devices support inverted logic, default power-on states, debounce logic, etc... Read through the top section of the .h files found on the libraries\ST_Anything... folders for more information! -Look at the documentation in the 'ST_Anything_Multiples_xxxx.ino' files for explanation and examples of the general use of the library. +Look at the documentation in the 'ST_Anything_Multiples_xxxx.ino' files for explanation and examples of the general use of the library. + +Historical Information +- 2018-07-04 HubDuino v1.1.2 - Added support for I2C devices - AM2320(temp, humid), TSL2561(lux), MAX44009(lux), BH1750(lux), BME280(temp,humid,pressure), BMP280(temp, pressure), and improved TCS34725(color lux). Added ST_Anything_I2C_ESP8266WiFi.ino example sketch to demonstrate I2C sensors. +- 2018-06-24 HubDuino v1.1.1 - Added Servo Motor support +- 2018-06-05 HubDuino v1.1 - Converted to use Hubitat Composite Device Driver Model