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.

225 lines
6.4 KiB

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.5.4] 2017-02-03
  5. ### Fixed
  6. - Issue #50. Fix type bug in window variable when calculating energy for HLW8012 devices (Sonoff POW)
  7. ## [1.5.3] 2017-02-02
  8. ### Fixed
  9. - Issue #50 and #54. Fixed domoticz MQTT message format
  10. ### Added
  11. - Energy calculation and aggregation. API entry points and MQTT messages.
  12. ## [1.5.2] 2017-01-29
  13. ### Fixed
  14. - Fix bug in emon topic payload
  15. ## [1.5.1] 2017-01-28
  16. ### Added
  17. - OpenEnergyMonitor WiFi MQTT Relay / Thermostat support (thanks to Denis French)
  18. ### Fixed
  19. - NTP connection refresh upon wifi connection
  20. - Filesystem image build using local gulp installation
  21. ## [1.5.0] 2017-01-21
  22. ### Added
  23. - Pulse mode. Allows to define a pulse time after which the relay will switch back
  24. - API entry points for sensor data (power, current, voltage, temperature and humidity)
  25. - Export sensor data to Domoticz (power, current, voltage, temperature and humidity)
  26. - Configurable (in code) mapping between buttons and relays
  27. - MQTT messages for button events
  28. - Added support for Itead Studio 1CH inching/self locking smart switch board
  29. - Added support for JanGow Wifi Relay boards (both NC and NO versions)
  30. - Notify OTA updates to websocket clients, automatically reload page
  31. - Support for pulse mode notification LED and button
  32. - Revert relay state mode on boot (thanks to Minh Phuong Ly)
  33. ### Fixed
  34. - MQTT will topic
  35. - Crash with HLW812 interrupts while trying to create a WIFI connection
  36. - Issue #20 Better inline documentation for Alexa and Domoticz default settings
  37. - Issue #39 Fixed autoconnect issue with static IP (fixed in JustWifi library)
  38. - Issue #41 Added password requirements to initial password change page
  39. ### Changed
  40. - Changed LED pattern for WIFI notifications (shorter pulses)
  41. ## [1.4.4] 2017-01-13
  42. ### Added
  43. - Adding current, voltage, apparent and reactive power reports to Sonoff POW (Web & MQTT)
  44. ### Fixed
  45. - Issue #35 Fixed frequent MQTT connection drops after WIFI reconnect
  46. - Defer wifi disconnection from web interface to allow request to return
  47. ### Changed
  48. - Move all Arduino IDE configuration values to their own file
  49. - Using latest HLW8012 library in interrupt mode
  50. ## [1.4.3] 2017-01-11
  51. ### Fixed
  52. - Issue #6 Using forked Time library to prevent conflict with Arduino Core for ESP8266 time.h file in windows machines
  53. ## [1.4.2] 2017-01-09
  54. ### Added
  55. - Support for inverse logic relays
  56. ### Fixed
  57. - Issue #31. Fixed error in relay identification from MQTT messages
  58. ## [1.4.1] 2017-01-05
  59. ### Added
  60. - Alexa support by default on all devices
  61. - Added support for Wemos D1 Mini board with official Relay Shield
  62. ### Fixed
  63. - Multi-packet websocket frames
  64. ## [1.4.0] 2016-12-31
  65. ### Added
  66. - Domoticz support via MQTT (https://www.domoticz.com/wiki/MQTT)
  67. - Support for static IP connections
  68. ### Fixed
  69. - Issue #16. Enforce minimum password strength in web interface
  70. ### Changed
  71. - Using default client_id provided by AsyncMqttClient
  72. - Allow up to 5 different WIFI networks
  73. ### Removed
  74. - File system version file
  75. ## [1.3.1] 2016-12-31
  76. ### Fixed
  77. - data_dir fix for PlatformIO
  78. ## [1.3.0] 2016-12-30
  79. ### Changed
  80. - Arduino IDE support (changes in the folder structure and documentation)
  81. ## [1.2.0] 2016-12-27
  82. ### Added
  83. - Force password changing if it's the default one
  84. - Added Last-Modified header to static contents
  85. - Added DNS captive portal for AP mode
  86. - Added support for Sonoff 4CH
  87. - Added support for WorkChoice ecoPlug (ECOPLUG). Thanks to David Myers
  88. - Added support for Sonoff SV
  89. - Added support for Sonoff Touch
  90. - Comment out hardware selection in hardware.h if using Arduino IDE
  91. - Added support for MQTT get/set suffixes (/status, /set, ...)
  92. - Added support for LED notifications via MQTT
  93. - Added EEPROM check commands to terminal interface
  94. ### Changed
  95. - Using unreleased AsyncMqttClient with stability improvements
  96. - Better decoupling between MQTT and relays/websockets
  97. - Skipping retained MQTT messages (configurable)
  98. ### Fixed
  99. - Issue #11 Compile error when building sonoff-dual-debug
  100. - Issue #14 MQTT Connection with Username an Password not working
  101. - Issue #17 Moved static variable 'pending' to class variable
  102. ## [1.1.0] 2016-12-06
  103. ### Added
  104. - Added support for DS18B20 temperature sensor. Thanks to Francesco Boscarino
  105. - Added reset command from console
  106. - Added support for multirelay boards like Sonoff DUAL or Electrodragon ESP Relay Board
  107. ### Changed
  108. - Not using espressif8266_stage in default environment
  109. - Relay MQTT topics
  110. - API entry points
  111. ### Removed
  112. - Old non protected API
  113. ## [1.0.3] 2016-11-29
  114. ### Added
  115. - WeMo emulation through the fauxmoESP library (control your switch from Alexa!)
  116. - REST API for relay management
  117. - Better dependency definitions in platformio.ini
  118. - Option to define inverse logic to on-board LED
  119. - Built data folder included in repo
  120. ### Changed
  121. - Using non-interrupt driven mode for HLW8012
  122. - Better documentation
  123. - Small changes to web interface
  124. - Same admin password for web, OTA and WIFI AP mode
  125. ### Fixed
  126. - Prevent fauxmoESP to be compiled by default
  127. ### Removed
  128. - Removed ESPurna board to its own repo
  129. ## [1.0.1] 2016-11-13
  130. ### Added
  131. - Basic authentication and CSRF to websocket requests
  132. ## [1.0.0] 2016-11-13
  133. ### Added
  134. - Using ESPAsyncWebServer (for web & websockets) and AsyncMqttClient
  135. ## [0.9.9] 2016-11-12
  136. ### Added
  137. - Preliminary support for Sonoff POW
  138. - Replace AJAX requests with websockets
  139. - Using sprites for images
  140. - Hostname can be changed
  141. - Added initial relay state mode
  142. - Reconnect and reset buttons on web interface
  143. ### Changed
  144. - Changed long click to reset and double click to AP mode
  145. - Using officially supported platformio.ini file by default
  146. ### Fixed
  147. - Removed unnecessary memory inefficient code
  148. - Temprary fix for Adafruit DHT library (see https://github.com/adafruit/DHT-sensor-library/issues/62)
  149. ## [0.9.8] 2016-10-06
  150. ### Added
  151. - Using PureCMS for the web interface
  152. - Using gulp to build the filesystem files
  153. - Using Embedis for configuration
  154. ### Changed
  155. - Updated JustWifi library
  156. - Web interface changes
  157. - Using custom platformio.ini file
  158. - Loads of changes in modules
  159. - Added DEBUG_MSG
  160. ### Fixed
  161. - Clean gulp builder script
  162. ## [0.9.7] 2016-08-28
  163. ### Changed
  164. - Moving wifi management to library (JustWifi)
  165. - Split code into modules
  166. ## [0.9.6] 2016-08-12
  167. ### Added
  168. - Added heartbeat, version and fsversion MQTT messages
  169. ### Changed
  170. - GZip 3rd party contents
  171. ## [0.9.5] 2016-07-31
  172. - Initial stable version