From afb8c60093e248c35341b832310cfeae828c970a Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Fri, 10 Apr 2020 15:13:01 +0200 Subject: [PATCH] Add support for an iAQ sensor (#8107) Add support for an iAQ sensor (#8107) --- RELEASENOTES.md | 3 ++- tasmota/CHANGELOG.md | 1 + tasmota/my_user_config.h | 2 +- tasmota/tasmota_configurations.h | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index e53893330..325d65f23 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -78,7 +78,8 @@ The following binary downloads have been compiled with ESP8266/Arduino library c - Add support for unreachable (unplugged) Zigbee devices in Philips Hue emulation and Alexa - Add support for 64x48 SSD1306 OLED (#6740) - Add support for up to four MQTT GroupTopics (#8014) -- Add console command history (#7483, #8015) - Add support for longer template names +- Add support for an iAQ sensor (#8107) +- Add console command history (#7483, #8015) - Add quick wifi reconnect using saved AP parameters when ``SetOption56 0`` (#3189) - Add more accuracy to GPS NTP server (#8088) diff --git a/tasmota/CHANGELOG.md b/tasmota/CHANGELOG.md index ecc48f509..3dacb80e7 100644 --- a/tasmota/CHANGELOG.md +++ b/tasmota/CHANGELOG.md @@ -21,6 +21,7 @@ - Add command ``DevGroupSend`` to send an update to a Device Group (#8093) - Add quick wifi reconnect using saved AP parameters when ``SetOption56 0`` (#3189) - Add more accuracy to GPS NTP server (#8088) +- Add support for an iAQ sensor (#8107) ### 8.2.0.2 20200328 diff --git a/tasmota/my_user_config.h b/tasmota/my_user_config.h index 50c2387ad..887bcd923 100644 --- a/tasmota/my_user_config.h +++ b/tasmota/my_user_config.h @@ -499,7 +499,7 @@ // #define WEMOS_MOTOR_V1_ADDR 0x30 // Default I2C address 0x30 // #define WEMOS_MOTOR_V1_FREQ 1000 // Default frequency // #define USE_HDC1080 // [I2cDriver45] Enable HDC1080 temperature/humidity sensor (I2C address 0x40) (+1k5 code) - #define USE_IAQ // [I2cDriver46] Enable iAQ-core air quality sensor (I2C address 0x5a) (+0k6 code) +// #define USE_IAQ // [I2cDriver46] Enable iAQ-core air quality sensor (I2C address 0x5a) (+0k6 code) // #define USE_DISPLAY // Add I2C Display Support (+2k code) #define USE_DISPLAY_MODES1TO5 // Enable display mode 1 to 5 in addition to mode 0 diff --git a/tasmota/tasmota_configurations.h b/tasmota/tasmota_configurations.h index f002ef15d..d8d2bfde0 100644 --- a/tasmota/tasmota_configurations.h +++ b/tasmota/tasmota_configurations.h @@ -122,6 +122,7 @@ #define WEMOS_MOTOR_V1_ADDR 0x30 // Default I2C address 0x30 #define WEMOS_MOTOR_V1_FREQ 1000 // Default frequency //#define USE_HDC1080 // Enable HDC1080 temperature/humidity sensor +#define USE_IAQ // [I2cDriver46] Enable iAQ-core air quality sensor (I2C address 0x5a) (+0k6 code) #define USE_MHZ19 // Add support for MH-Z19 CO2 sensor (+2k code) #define USE_SENSEAIR // Add support for SenseAir K30, K70 and S8 CO2 sensor (+2k3 code)