Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

626 lines
22 KiB

7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # ESPurna change log
  2. The format is based on [Keep a Changelog](http://keepachangelog.com/)
  3. and this project adheres to [Semantic Versioning](http://semver.org/).
  4. ## [1.10.0] 2017-11-26
  5. ### Fixed
  6. - Temperatures with 1 decimal resolution
  7. - Issues with Sonoff B1 due to bad driver management (using my92xx library now)
  8. - Avoid recursive messages on Domoticz (#272)
  9. - Fixed Sonoff T1 configuration
  10. - Simplify and fix web auth (#284)
  11. - Fix Embedis custom parser
  12. ### Added
  13. - Added option to define a temperature correction factor (thanks to Pawel Raszewski)
  14. - Option to disable system check on build time
  15. - Power saving features (loopDelay and wifi sleep)
  16. - Added Sonoff TH build environment
  17. - Send Home Assistant auto discover messages on connect (#279)
  18. - Implemented Home Assistant availability topic (#280)
  19. - Update time, uptime and heap on webUI every heartbeat
  20. - Support for LLMNR and NetBIOS (#282)
  21. - Added I2C clean bus code
  22. - Added realm to auth challenge
  23. ### Changed
  24. - Changed default hostname to "ESPURNA_XXXXXX"
  25. - Binaries built against stable core (~40Kb less, #274)
  26. - Enabled TERMINAL_SUPPORT for Sonoff Dual (only available via TELNET)
  27. - Dinamically resize debug strings (now messages are not cropped)
  28. - MQTT: unsubscribe to '#' before subscribing
  29. - Updated ESPAsyncWebServer and ESPAsyncTCP libraries
  30. - Removed InfluxDB support by default
  31. - Using stock slider in webUI to reduce size
  32. - Unify DHT and DS18B20 code, show NOT CONNECTED on webUI
  33. ## [1.9.9] 2017-11-09
  34. ### Fixed
  35. - Fixed bug in MY9291-based light bulbs at full brightness
  36. ### Added
  37. - RFBridge: toggle when RF codes for ON and OFF are the same (#270)
  38. - Support for HSV color schema (MQTT, API and webUI via a selector)
  39. ### Changed
  40. - "COLOR" entry point deprecated, use "RGB" instead (MQTT and API, ex. topic "light/rgb/set" instead of "light/color/set")
  41. ## [1.9.8] 2017-11-08
  42. ### Fixed
  43. - Removed dimmer lights flicker when saving to EEPROM (#191)
  44. - Fixed low brightness in dimmer lights (#157)
  45. - Fixed blank fields in energy (#258, #259)
  46. - Fixed support for Arilux AL-LC06
  47. - Updated fauxmoESP library with support for GetBinaryState actions
  48. ### Added
  49. - Support for IR remotes
  50. - Option to select power read and report interval from webUI
  51. - Option to report real-time values in API, configurable via webUI
  52. - Support for ESPurna-H Board v0.8
  53. - Support for Arilux E27 light bulb (untested)
  54. - Support for YJZK 2-gang switch
  55. ### Changed
  56. - PWM using ESP8266_new_pwm by Stephan Bruens (https://github.com/StefanBruens/ESP8266_new_pwm)
  57. - Using own DHT implementation (removed dependency on Adafruit libraries)
  58. - Disabled serial debug for Sonoff RFBridge
  59. ## [1.9.7] 2017-10-25
  60. ### Fixed
  61. - Fix Alexa interface switching on all lights (#256)
  62. ## [1.9.6] 2017-10-23
  63. ### Fixed
  64. - Fix power report in Domoticz (#236)
  65. - Fix Sonoff POW in AP mode (#241)
  66. - Fix Home Automation auto-discovery (support for single relay switches and RGB lights, #235)
  67. - Check WS authentication only on start event
  68. ### Added
  69. - Support for 2.4.0 RC2 Arduino Core that fixes KRACK vulnerablity (pre-built images are compiled against this, #242)
  70. - Support for ManCaveMade ESPLive board (thanks to Michael A. Cox)
  71. - Support for InterMIT Tech QuinLED 2.6 (thanks to Colin Shorts)
  72. - Support for Magic Home LED Controller 2.0 (thanks to users @gimi87 and @soif, #231)
  73. - Support for Arilux AL-LC06 (thanks to Martijn Kruissen)
  74. - Support for Xenon SM-PW702U Wifi boards (thanks to Joshua Harden, #212)
  75. - Support for Authometion LYT8266 (testing, thanks to Joe Blellik, #213)
  76. - Support for an external button for D1 Mini boards (thanks to user @PieBru, #239)
  77. - Option to query relay status via MQTT or WS (thanks to Wesley Tuzza)
  78. - Automatically install dependencies for web interface builder (thanks to Hermann Kraus)
  79. - Support for HSV and IR for Magic Home LED Controller (optional, disabled by default, thanks to Wesley Tuzza)
  80. - Added option to report DS18B20 temperatures based on changes (thanks to Michael A. Cox)
  81. - Safer buffer handling for websocket data (thanks to Hermann Kraus & Björn Bergman)
  82. - Updates HL8012 library with energy counting support (thanks to Hermann Kraus)
  83. - Added option to disable light color persistence to avoid flickering (#191)
  84. - Option to enable TELNET in STA mode from web UI (#203)
  85. ### Changed
  86. - Changed default MQTT base topic to "{identifier}" (no leading slashes, #208)
  87. - Prevent reconnecting when in AP mode if a web session or a telnet session is active (#244)
  88. - Web UI checks for pending changes before reset/reconnect options (#226)
  89. - Increase WIFI connect timeout and reconnect interval
  90. ## [1.9.5] 2017-09-28
  91. ### Fixed
  92. - Revert to JustWifi 1.1.4 (#228)
  93. ## [1.9.4] 2017-09-22
  94. ### Added
  95. - Added ESPurna specific mDNS text registers (app_name, app_version, device_name)
  96. - Crash dump info is stored in EEPROM and retrieved via terminal ("crash" command)
  97. - Support for Huacanxing H802
  98. - Support for powermeters based on V9261F IC
  99. - Support for powermeters based on ECH1560 IC (beta, untested)
  100. ### Changed
  101. - Changed behaviour on MQTT connection failure (#215)
  102. - Removed boot delay
  103. - Refactor power modules
  104. - Updated JustWifi library
  105. ### Fixed
  106. - Set all esp8285 devices to use esp01_1m (#210, #225)
  107. - Removed wifi gain option since it prevents some devices to connect (#204)
  108. ## [1.9.3] 2017-09-04
  109. ### Added
  110. - New "erase.config" option in terminal to delete SDK settings
  111. - Added error code to error message when updating from web UI
  112. - Fixed Web UI to be behind a proxy (http://tinkerman.cat/secure-remote-access-to-your-iot-devices/)
  113. - Support "ON", "OFF" and "TOGGLE" (also lowercase) as payload in relay MQTT, API and WS (http://tinkerman.cat/using-google-assistant-control-your-esp8266-devices/)
  114. ### Changed
  115. - Updated fauxmoESP library to 2.2.0
  116. ### Fixed
  117. - Fix HLW8012 calibration (#194)
  118. - Fix telnet dropping connection
  119. - Fix WiFiSecureClient connection with PubSubClient (#64)
  120. ## [1.9.2] 2017-08-31
  121. ### Added
  122. - System stability check (turns off everything except WIFI AP, OTA and telnet if there is a boot crash loop) (#196)
  123. - Telnet support (enabled by default only on AP interface)
  124. - Option to set WiFi gain from web UI
  125. - Option to disable MQTT from web UI
  126. - MQTT autodiscover, with the option to autoconnect if no broker defined
  127. - Home Assistant MQTT autodiscover feature
  128. - List enabled modules in INIT debug info
  129. - Counter module (counts and reports transitions in a digital pin)
  130. ### Changed
  131. - Updated NoFUSS support
  132. - Web UI documentation changes
  133. - Changes in terminal commands ("reconnect" is now "reset.wifi", also new commands added)
  134. ### Fixed
  135. - Crash in settings saving (#190) and fixed UDP debug conditional build clauses
  136. ## [1.9.1] 2017-08-27
  137. ### Added
  138. - Support to build without NTP support
  139. - Added current time, uptime, free heap, firmware size and free space to web interface
  140. ### Changed
  141. - Changed settings keys for Itead Sonoff RF Bridge
  142. - Disable Domoticz by default
  143. ### Fixed
  144. - Fixed build flags for DHT and DS18B20 in platformio.ini file
  145. - Fixed Itead Sonoff B1 by updating the my9291 library
  146. - Fixed light status on boot (#157)
  147. - Fixed CSS bug cause by a bad merge
  148. ## [1.9.0] 2017-08-25
  149. ### Added
  150. - Support for IteadStudio BN-SZ01 Ceiling Light (#132)
  151. - Support for IteadStudio Sonoff RF Bridge (#173)
  152. - Support for IteadStudio Sonoff 4CH Pro (#174)
  153. - Support for IteadStudio Sonoff B1
  154. - Support for IteadStudio Sonoff LED
  155. - Support for IteadStudio Sonoff T1 wall switches (1, 2 and 4 channels)
  156. - Support for WiOn 50055 WiFi Wall Outlet & Tap
  157. - Support for EXS WiFi Relay v3.1 (and other future latching relay boards) (#152)
  158. - TLS/SSL support for MQTT (caution: eats a lot of memory, do not use with web interface) (#64)
  159. - Add support for delayed ON/OFF switches (#123, #161, #188)
  160. - Added ON and OFF actions for button events (previously only TOGGLE available) (#182)
  161. - Sliders in web interface to control dimmer channels independently (also for brightness)
  162. - Debug info about MQTT disconnect reason
  163. ### Changed
  164. - MQTT setters ending with "/set" by default
  165. - Using DOUT flash mode on all devices (#167)
  166. - Longer timeout for WiFi connection (better chances for Sonoff Basic to connect)
  167. - Changed MQTT topics for light devices (COLOR, BRIGHTNESS, MIRED, KELVIN, CHANNEL) (#144)
  168. - Changed the way light devices are defined (see LIGHT_PROVIDER_DIMMER)
  169. - Allow to disable color picker in web interface
  170. - API returns processed values for HLW8012 sensor (not raw values anymore) (#176)
  171. - Major refactoring of settings
  172. ### Fixed
  173. - Discard MQTT messages with empty payload (#185)
  174. - Wifi connection issue (https://github.com/esp8266/Arduino/issues/2186)
  175. - Alexa connection issue
  176. ## [1.8.3] 2017-07-23
  177. ### Added
  178. - Issue #85 and #90. Option to report MQTT messages with JSON payloads
  179. - Issue #170. Updated DebouceEvent library to allow disabling double click and get faster click responses
  180. - Using memory layout with no SPIFFS for 1Mb devices
  181. ### Changed
  182. - Rename settings s/POW/HLW8012/
  183. - Return times in ISO8601 format
  184. ### Fixed
  185. - Issue #168. Added H801 to arduino.h file
  186. - Issue #171. Fix corrupted will message
  187. ## [1.8.2] 2017-07-16
  188. ### Added
  189. - InfluxDB support via HTTP API
  190. - Added custom reset reason to debug log
  191. - Enable WIFI debug on hardware reset (button long click)
  192. ### Changed
  193. - Issue #159. Allow decimals in relay pulse interval
  194. - Updated HLW8012 library
  195. ### Fixed
  196. - Issue #148. Fix bug in conditional compilation check
  197. - Issue #149. Using different pulse counters for each relay (thanks to Lauris Ieviņš)
  198. - Issue #141. Limit relay pulse interval to 60s
  199. - Fixed units for apparent & reactive power (thanks to Lauris Ieviņš)
  200. - Fixed mDNS setup when using custom HTTP port for web interface
  201. ## [1.8.1] 2017-05-22
  202. ### Fixed
  203. - Issue #140. Fix no relay control bug in Sonoff Dual
  204. ## [1.8.0] 2017-05-21
  205. ### Added
  206. - Added gamma correction to RGB strips. Thanks to Chris Ward.
  207. - Added support for Huacanxing H801 WiFi LED Controller. Thanks to Minh Phuong Ly.
  208. - Issue #138. Added NTP configuration from web interface
  209. - Issue #128. Report color when booting and in heartbeat stream.
  210. - Issue #126. Show NTP status in web interface.
  211. - Added filter limits on POW readings.
  212. - Added color temperature to RGB calculation. Thanks to Sacha Telgenhof.
  213. - Issue #120. Added relay flood protection. Thanks to Izik Dubnov.
  214. - Support for "#RRGGBB", "RRR,GGG,BBB" and "WWW" color formats.
  215. - Issue #117. Added build date & time to web interface.
  216. ### Fixed
  217. - Fix MQTT_RELAY board conifugration. Thanks to Denis French.
  218. - Issue #125. Fix bug in relay status reading from EEPROM
  219. - Issue #127. Fix button action in DUAL.
  220. - Fix bug in Sonoff POW current reading. Thanks to Emmanuel Tatto.
  221. - Minimizing my9291 flickering when booting.
  222. - Fix conditional flags in hardware.ino to support Arduino IDE.
  223. ## [1.7.1] 2017-03-28
  224. ### Fixed
  225. - Issue #113. Fix restoring color from EEPROM upon reboot
  226. - Issue #113. Fix bug in API handlers
  227. ## [1.7.0] 2017-03-27
  228. ### Added
  229. - Web interface embedded in firmware image by default
  230. - Upload firmware image from web interface
  231. - Added API entry point to change light color
  232. - Added generic analog sensor. Thanks to Francesco Boscarino
  233. - Report RSSI value in debug console and MQTT status messages
  234. - Added support for Magic Home LED Controller
  235. - Added support for ESPurna-H Board (based on HLW8012)
  236. - Added forward compatible code for v2.0
  237. ### Changed
  238. - Added ellipsis (...) in debug messages longer than 80 characters
  239. - Changed topic constants in code
  240. - Prevent the SDK from saving WiFi configuration to flash
  241. ### Fixed
  242. - Issue #113. Fix light bulb state to OFF in library prevented the bulb from turning on
  243. - Issue #58. Added code to handle spurious readings
  244. - Fix bug in HLW8012 calibration current parameter casting to int instead of float
  245. - Issue #115. Removed local declaration of _mqttForward variable. Thanks to Paweł Fiedor
  246. - Fix MQTT will topic. Thanks to Asbjorn Tronhus
  247. ## [1.6.9] 2017-03-12
  248. ### Added
  249. - Two stage read for DS18B20 devices. Thanks to Izik Dubnov.
  250. - Option to report the relay status via MQTT periodically
  251. - Terminal commands to change relay status an light color
  252. - Added debug via UDP (disabled by default)
  253. - Moved debug strings to PROGMEM. ~1.5KByes memory freed
  254. - Avoid broadcasting websocket messages if no clients connected
  255. ### Fixed
  256. - Fixing use after free bug that leads to corrupted auth credentials. Thanks to David Guillen
  257. ## [1.6.8] 2017-03-01
  258. ### Added
  259. - Issue #85. Heartbeat reports now free heap, uptime and VCC every 5 minutes
  260. ### Changed
  261. - Wait two minutes instead of one in AP mode before trying to reconnect to the router
  262. - Issue #92. Debug log enabled by default in Arduino IDE
  263. - Issue #91. Using AsyncMqttClient as default MQTT client again
  264. ### Fixed
  265. - Report data from all sensors via websocket even if no MQTT connection
  266. - Issue #92. Fix unknown reference in Arduino IDE
  267. - Split data.h contents into 1k lines, otherwise Arduino IDE chokes on them
  268. - Discard empty MQTT topic while subscribing
  269. ## [1.6.7] 2017-02-25
  270. ### Added
  271. - Support for OpenLight / AI-Light by AI-Thinker based on MY9291 LED driver
  272. - Issue #87. Factory reset when physical button pressed for >10 seconds
  273. ## [1.6.6] 2017-02-23
  274. ### Fixed
  275. - Issue #82. Fix critical bug on Sonoff Dual
  276. ## [1.6.5] 2017-02-22
  277. ### Added
  278. - Option to backup and restore settings from the web interface
  279. - Footer in the web interface
  280. ### Changed
  281. - Using PubSubClient as MQTT client by default (please read the documentation)
  282. - Double & long clicks do nothing except for the first defined button
  283. ### Fixed
  284. - Issue #79. Fix bug in WiFi led notification & MQTT connectivity (using PubSubClient)
  285. - Issue #73. Fix bug when building without Domoticz support
  286. - Fix Gulp tasks dependencies
  287. ## [1.6.4] 2017-02-20
  288. ### Added
  289. - Option to embed the web interface in the firmware, disabled by default
  290. - Change relay status with a GET request (browser friendly)
  291. - Support for PROGMEM debug messages (only wifi module has been changed)
  292. - Option to disable mDNS, enabled by default
  293. - Show current web server port in debug log
  294. - Issue #75. Link relays to LEDs
  295. - Issue #76. Using http://espurna.local when in AP mode
  296. ### Changed
  297. - Images and favicon is now embedded in the HTML
  298. - Authentication challenge only in /auth request. All static contents are un-authenticated
  299. - HTTP response code when out of websocket slots changed from 423 to 429
  300. ### Fixed
  301. - Memory leak in MQTT connection method
  302. - Wait 60 seconds before retrying to connect when in AP mode
  303. - Issue #24 & #74. Update ESPAsyncTCP and ESPAsyncWebServer to latest GIT version that supports MSS defragmenting
  304. - Issue #73. Fixes for windows machines
  305. ### Removed
  306. - Captive portal removed, mDNS resolution for AP mode too
  307. ## [1.6.3] 2017-02-15
  308. ### Added
  309. - Issue #69. Temperature unit configuration from the web interface
  310. - Issue #55. WebServer port configurable from the web interface, defaults to 80
  311. - Expand network configuration when adding a new network
  312. ### Changed
  313. - Merged web contents except images in a single compressed file for reliability
  314. - Update support for Itead Motor Clockwise/Anticlockwise board
  315. - Scan for strongest network only if more than 1 network configured
  316. ### Fixed
  317. - Issue #71. Added default values for netmask and DNS in web configuration
  318. - Fixed Itead 1CH self-locking/inching board definition
  319. - Fixed PlatformIO environments for ESP8285 boards (4CH and Touch)
  320. ## [1.6.2] 2017-02-10
  321. ### Fixed
  322. - Check if there is an MQTT broker defined before the MQTT_MAX_TRIES check
  323. ## [1.6.1] 2017-02-10
  324. ### Added
  325. - Added support for [Jorge Garcia's Wifi+Relay Board Kit](https://www.tindie.com/products/jorgegarciadev/wifi--relays-board-kit/)
  326. - Reporting current and energy incrementals to a separate counters in Domoticz (thanks to Toni Arte)
  327. - Force WiFi reconnect after MQTT_MAX_TRIES fails trying to connect to MQTT broker
  328. ## [1.6.0] 2017-02-05
  329. ### Added
  330. - Added support for toggle switches
  331. - Allow reset the board via an MQTT message
  332. - Allow reset the board via an RPC (HTTP) message
  333. - Added support for ADC121 I2C for current monitoring (Check [http://tinkerman.cat/power-monitoring-sonoff-th-adc121/](http://tinkerman.cat/power-monitoring-sonoff-th-adc121/))
  334. - Reporting voltage to Domoticz (only HLW8012)
  335. - Map button events to actions (toggle relay, AP mode, reset, pulse mode)
  336. ### Changed
  337. - Reporting energy incrementals (Domoticz, MQTT)
  338. ### Removed
  339. - Removed current monitor bypass when relay is OFF
  340. - Removed energy API entry point
  341. ## [1.5.4] 2017-02-03
  342. ### Fixed
  343. - Issue #50. Fix type bug in window variable when calculating energy for HLW8012 devices (Sonoff POW)
  344. ## [1.5.3] 2017-02-02
  345. ### Fixed
  346. - Issue #50 and #54. Fixed domoticz MQTT message format
  347. ### Added
  348. - Energy calculation and aggregation. API entry points and MQTT messages.
  349. ## [1.5.2] 2017-01-29
  350. ### Fixed
  351. - Fix bug in emon topic payload
  352. ## [1.5.1] 2017-01-28
  353. ### Added
  354. - OpenEnergyMonitor WiFi MQTT Relay / Thermostat support (thanks to Denis French)
  355. ### Fixed
  356. - NTP connection refresh upon wifi connection
  357. - Filesystem image build using local gulp installation
  358. ## [1.5.0] 2017-01-21
  359. ### Added
  360. - Pulse mode. Allows to define a pulse time after which the relay will switch back
  361. - API entry points for sensor data (power, current, voltage, temperature and humidity)
  362. - Export sensor data to Domoticz (power, current, voltage, temperature and humidity)
  363. - Configurable (in code) mapping between buttons and relays
  364. - MQTT messages for button events
  365. - Added support for Itead Studio 1CH inching/self locking smart switch board
  366. - Added support for Jan Goedeke Wifi Relay boards (both NC and NO versions)
  367. - Notify OTA updates to websocket clients, automatically reload page
  368. - Support for pulse mode notification LED and button
  369. - Revert relay state mode on boot (thanks to Minh Phuong Ly)
  370. ### Fixed
  371. - MQTT will topic
  372. - Crash with HLW812 interrupts while trying to create a WIFI connection
  373. - Issue #20 Better inline documentation for Alexa and Domoticz default settings
  374. - Issue #39 Fixed autoconnect issue with static IP (fixed in JustWifi library)
  375. - Issue #41 Added password requirements to initial password change page
  376. ### Changed
  377. - Changed LED pattern for WIFI notifications (shorter pulses)
  378. ## [1.4.4] 2017-01-13
  379. ### Added
  380. - Adding current, voltage, apparent and reactive power reports to Sonoff POW (Web & MQTT)
  381. ### Fixed
  382. - Issue #35 Fixed frequent MQTT connection drops after WIFI reconnect
  383. - Defer wifi disconnection from web interface to allow request to return
  384. ### Changed
  385. - Move all Arduino IDE configuration values to their own file
  386. - Using latest HLW8012 library in interrupt mode
  387. ## [1.4.3] 2017-01-11
  388. ### Fixed
  389. - Issue #6 Using forked Time library to prevent conflict with Arduino Core for ESP8266 time.h file in windows machines
  390. ## [1.4.2] 2017-01-09
  391. ### Added
  392. - Support for inverse logic relays
  393. ### Fixed
  394. - Issue #31. Fixed error in relay identification from MQTT messages
  395. ## [1.4.1] 2017-01-05
  396. ### Added
  397. - Alexa support by default on all devices
  398. - Added support for Wemos D1 Mini board with official Relay Shield
  399. ### Fixed
  400. - Multi-packet websocket frames
  401. ## [1.4.0] 2016-12-31
  402. ### Added
  403. - Domoticz support via MQTT (https://www.domoticz.com/wiki/MQTT)
  404. - Support for static IP connections
  405. ### Fixed
  406. - Issue #16. Enforce minimum password strength in web interface
  407. ### Changed
  408. - Using default client_id provided by AsyncMqttClient
  409. - Allow up to 5 different WIFI networks
  410. ### Removed
  411. - File system version file
  412. ## [1.3.1] 2016-12-31
  413. ### Fixed
  414. - data_dir fix for PlatformIO
  415. ## [1.3.0] 2016-12-30
  416. ### Changed
  417. - Arduino IDE support (changes in the folder structure and documentation)
  418. ## [1.2.0] 2016-12-27
  419. ### Added
  420. - Force password changing if it's the default one
  421. - Added Last-Modified header to static contents
  422. - Added DNS captive portal for AP mode
  423. - Added support for Sonoff 4CH
  424. - Added support for WorkChoice ecoPlug (ECOPLUG). Thanks to David Myers
  425. - Added support for Sonoff SV
  426. - Added support for Sonoff Touch
  427. - Comment out hardware selection in hardware.h if using Arduino IDE
  428. - Added support for MQTT get/set suffixes (/status, /set, ...)
  429. - Added support for LED notifications via MQTT
  430. - Added EEPROM check commands to terminal interface
  431. ### Changed
  432. - Using unreleased AsyncMqttClient with stability improvements
  433. - Better decoupling between MQTT and relays/websockets
  434. - Skipping retained MQTT messages (configurable)
  435. ### Fixed
  436. - Issue #11 Compile error when building sonoff-dual-debug
  437. - Issue #14 MQTT Connection with Username an Password not working
  438. - Issue #17 Moved static variable 'pending' to class variable
  439. ## [1.1.0] 2016-12-06
  440. ### Added
  441. - Added support for DS18B20 temperature sensor. Thanks to Francesco Boscarino
  442. - Added reset command from console
  443. - Added support for multirelay boards like Sonoff DUAL or Electrodragon ESP Relay Board
  444. ### Changed
  445. - Not using espressif8266_stage in default environment
  446. - Relay MQTT topics
  447. - API entry points
  448. ### Removed
  449. - Old non protected API
  450. ## [1.0.3] 2016-11-29
  451. ### Added
  452. - WeMo emulation through the fauxmoESP library (control your switch from Alexa!)
  453. - REST API for relay management
  454. - Better dependency definitions in platformio.ini
  455. - Option to define inverse logic to on-board LED
  456. - Built data folder included in repo
  457. ### Changed
  458. - Using non-interrupt driven mode for HLW8012
  459. - Better documentation
  460. - Small changes to web interface
  461. - Same admin password for web, OTA and WIFI AP mode
  462. ### Fixed
  463. - Prevent fauxmoESP to be compiled by default
  464. ### Removed
  465. - Removed ESPurna board to its own repo
  466. ## [1.0.1] 2016-11-13
  467. ### Added
  468. - Basic authentication and CSRF to websocket requests
  469. ## [1.0.0] 2016-11-13
  470. ### Added
  471. - Using ESPAsyncWebServer (for web & websockets) and AsyncMqttClient
  472. ## [0.9.9] 2016-11-12
  473. ### Added
  474. - Preliminary support for Sonoff POW
  475. - Replace AJAX requests with websockets
  476. - Using sprites for images
  477. - Hostname can be changed
  478. - Added initial relay state mode
  479. - Reconnect and reset buttons on web interface
  480. ### Changed
  481. - Changed long click to reset and double click to AP mode
  482. - Using officially supported platformio.ini file by default
  483. ### Fixed
  484. - Removed unnecessary memory inefficient code
  485. - Temprary fix for Adafruit DHT library (see https://github.com/adafruit/DHT-sensor-library/issues/62)
  486. ## [0.9.8] 2016-10-06
  487. ### Added
  488. - Using PureCMS for the web interface
  489. - Using gulp to build the filesystem files
  490. - Using Embedis for configuration
  491. ### Changed
  492. - Updated JustWifi library
  493. - Web interface changes
  494. - Using custom platformio.ini file
  495. - Loads of changes in modules
  496. - Added DEBUG_MSG
  497. ### Fixed
  498. - Clean gulp builder script
  499. ## [0.9.7] 2016-08-28
  500. ### Changed
  501. - Moving wifi management to library (JustWifi)
  502. - Split code into modules
  503. ## [0.9.6] 2016-08-12
  504. ### Added
  505. - Added heartbeat, version and fsversion MQTT messages
  506. ### Changed
  507. - GZip 3rd party contents
  508. ## [0.9.5] 2016-07-31
  509. - Initial stable version