From cc54b0e1fe38506940d9e10e5ab7c5030f1c5d73 Mon Sep 17 00:00:00 2001 From: ogiewon Date: Wed, 4 Jul 2018 09:49:46 -0400 Subject: [PATCH] v2.9.2 updates --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 95fe4a38..943e2264 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -ST_Anything v2.9.1 +ST_Anything v2.9.2 ================ **WARNING** - You must use the SmartThings Classic App with ST_Anything. @@ -6,6 +6,8 @@ ST_Anything v2.9.1 **WARNING** - If using an ESP8266, make sure you are using v2.3 of the Arduino ESP8266 Board manager (v2.4/2.4.1 introduced a memory leak causing ST_Anythign to crash after an hour or two.) **Recent History:** +- v2.9.2 - Added support for I2C devices - 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. + - v2.9.1 - Added Servo Motor support, tweaked all device handlers for simplification and supportability, numerous small enhancements and bug fixes over the past few months (view Github History for details) @@ -58,6 +60,15 @@ This package currently implements the following SmartThings Device Capabilities: - Switch + Color Control (RGBW) - used for analog RGBW LED's - Switch (using RCSwitch (i.e. Radio Control Switch) - See 'ST_Anything_RCSwitch' example (Requires RCSwitch library, included in this repo) - Servo Motor (using Capability Switch Level (0-99) to map to Motor Angles (0-180) - See the 'ST_Anything_Servos...' example sketch +- Illuminance Measurement (using a TSL2561 I2C sensor) +- Illuminance Measurement (using a MAX44009 I2C sensor) +- Illuminance Measurement (using a BH1750 I2C sensor) +- Illuminance Measurement (using a Color TCS34725 I2C sensor) +- Temperature Measurement (using a BME280 I2C sensor) +- Relative Humidity Measurement (using a BME280 I2C sensor) +- Pressure Measurement (using a BME280 I2C sensor) +- Temperature Measurement (using a BMP280 I2C sensor) +- Pressure Measurement (using a BMP280 I2C sensor) Note: Attempting to use all of these at once on an Arduino UNO R3 is likely to result in running out of SRAM on the UNO (the UNO only has 2 kilobytes of RAM.) Using an Arduino MEGA 2560 with 8 kilobytes of SRAM is recommended if you want to run everything at once. The ESP8266, ESP32, and MKR1000 platforms also have a lot more memory available.