Skip to content

Commit

Permalink
v2.9.2 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ogiewon committed Jul 4, 2018
1 parent 54b2316 commit cc54b0e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
ST_Anything v2.9.1
ST_Anything v2.9.2
================

**WARNING** - You must use the SmartThings Classic App with ST_Anything.

**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)


Expand Down Expand Up @@ -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.

Expand Down

0 comments on commit cc54b0e

Please sign in to comment.