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.

201 lines
5.7 KiB

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