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.

98 lines
4.3 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
8 years ago
8 years ago
8 years ago
8 years ago
  1. # ESPurna
  2. ESPurna ("spark" in Catalan) is a custom C firmware for [ITead Sonoff][1] Smart WiFi Switch.
  3. This device has an ESP8266 on board with a 8Mbit flash memory chip, a mains to 3V3 transformer
  4. and a relay (GPIO12). It also features a button (GPIO0), an LED (GPIO13) and an unpopulated header you can use to reprogram it.
  5. You can read about this board and firmware in [my blog][2].
  6. ![Sonoff board - front view](/images/pinout_front.jpg)
  7. ![Sonoff board - back view](/images/pinout_back.jpg)
  8. ## Features
  9. * WebServer for configuration and simple relay toggle
  10. * Flashing firmware Over-The-Air (OTA)
  11. * Up to 3 configurable WIFI networks
  12. * MQTT support with configurable host and topic
  13. * Manual switch ON/OFF with button (single click the button)
  14. * AP mode backup (double click the button)
  15. * Support for custom RF module (check blog post)
  16. * Visual status of the connection via the LED
  17. ## Flashing
  18. The unpopulated header has all the required pins. My board has a 5 pins header
  19. in-line with the button. They are (from the button outwards):
  20. * 3V3
  21. * RX
  22. * TX
  23. * GND
  24. * GPIO14
  25. Last one is not necessary. Mind it's a **3V3 device**, if connected to 5V you will
  26. probably fry it. Button is connected to GPIO0 on the ESP8266 chip, so to enter
  27. flash mode you have to hold the button pressed while powering on the board, then
  28. you can realease it again.
  29. The project is ready to be build using [PlatformIO][3].
  30. Please refer to their web page for instructions on how to install the builder.
  31. Once installed:
  32. ```bash
  33. > platformio run --target upload -e wire
  34. > platformio run --target uploadfs -e wire
  35. ```
  36. Once you have flashed it you can flash it again over-the-air using the ```ota``` environment:
  37. ```bash
  38. > platformio run --target upload -e ota
  39. > platformio run --target uploadfs -e ota
  40. ```
  41. When using OTA environment it defaults to the IP address of the device in SoftAP mode. If you want to flash it when connected to your home network best way is to supply the IP of the device:
  42. ```bash
  43. > platformio run --target upload -e ota --upload-port 192.168.1.151
  44. > platformio run --target uploadfs -e ota --upload-port 192.168.1.151
  45. ```
  46. Library dependencies are automatically managed via PlatformIO Library Manager.
  47. ## Usage
  48. On normal boot (i.e. button not pressed) it will execute the firmware.
  49. It configures the hardware (button, LED, relay), the SPIFFS memory access, the
  50. WIFI, the WebServer and MQTT connection.
  51. Obviously the default values for WIFI network and MQTT will probably not match
  52. your requirements. The device will start in Soft AP creating a WIFI SSID named "SONOFF_XXXXXX", where XXXXXX are the last 3 bytes of the radio MAC. Connect with
  53. phone, PC, laptop, whatever to that network, password is "fibonacci". Once connected
  54. browse to 192.168.4.1 and you will be presented a configuration page where you will
  55. be able to define up to 3 possible WIFI networks and the MQTT configuration parameters.
  56. It will then try to connect to the first WIFI network. If fail it will try the second
  57. in 30 seconds, and so on. Once connected it will try to connect the MQTT server. If there are no configured networks or none of the configured ones is reachable it defaults to SoftAP mode. You can also switch to SoftAP mode by double clicking the on board button.
  58. The device will publish the relay state to the given topic and it will subscribe to
  59. the same topic plus "/set" for remote switching. So if your topic is "/home/living/switch"
  60. you will be able to switch it on/off sending "1"/"0" to "/home/living/switch/set".
  61. You can also use "{identifier}" as place holder in the topic. It will be translated to
  62. your device ID (same as the soft AP network it creates).
  63. ## Troubleshooting
  64. After flashing the firmware via serial do a hard reset of the device (unplug & plug). There is an issue with the ESP.reset() method. Check [https://github.com/esp8266/Arduino/issues/1017][4] for more info.
  65. Current version of ESP8266httpUpdate restarts the modules after SPIFFS update, thus preventing the firmware to be updated too. There is a recent commit fixing that which is not yet pushed to PLatformIO. Check [Fix example for ESP8266httpUpdate][5] for more info.
  66. [1]: https://www.itead.cc/sonoff-wifi-wireless-switch.html
  67. [2]: http://tinkerman.cat/adding-rf-to-a-non-rf-itead-sonoff
  68. [3]: http://www.platformio.org
  69. [4]: https://github.com/esp8266/Arduino/issues/1017
  70. [5]: https://github.com/esp8266/Arduino/pull/2251