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
8.6 KiB

  1. < [Configuration guide](configuration.md) | [Index](../README.md) | [Known issues](known_issues.md) >
  2. # Flashing guide
  3. ## Tools needed
  4. * Allen key (2mm, 5/64") or torx (T8) screw driver
  5. * Soldering Iron
  6. * Perhaps some sticky tape
  7. * A serial to USB adapter (FTDI)
  8. * Some wires
  9. ## Warning
  10. We have writen these instructions with care, but we will give absolutely no
  11. warranty. Perhaps you will destroy your lamp and your computer.
  12. ## Opening the lamp, to expose the PCB
  13. Remove the rubber pads from the botton of the lamp, to get access to 4
  14. screws that attach the bottom to the rest of the lamp. Note that you don't
  15. have to remove these pads fully. Once you can access the screws, you've
  16. gone far enough.
  17. Unbolt the 4 screws which were hidden under the rubber pads.
  18. ![Photo of the screws](images/screws.jpg "Use an allen key or torx screw driver to remove the screws.")
  19. Detach the bottom from the rest of the lamp, exposing the PCB. This might
  20. take a bit of force. Just pull it up bit by bit until it pops loose.
  21. For some good pictures of disassembling this lamp, take a look [at this
  22. blog post](https://mysku.ru/blog/china-stores/78455.html) It is in Russian,
  23. but the translation by Google works well and moreover, the pictures are the
  24. most important thing here. If you scroll down, you will find them easily.
  25. ## Solder the wires
  26. Many of the serial to USB adapter have some header pins to which you can
  27. connect the wires of a device. Therefore, I find it most useful to take some
  28. dupont wires with a female end to them, and cut off the other end. Strip the
  29. wire on the other and, and solder this end to the board.
  30. Solder the wires to the `RX`, `TX`, `GND` and `GPIO0` debug pads that are
  31. shown in the following photo. It is *not* required to solder a wire to the
  32. `3.3V` debug pad. This pad is not directly connected to the 3.3V Vin of the
  33. ESP32 chip, making it a less than optimal candidate for powering the board
  34. during flashing. Instead, powering the lamp using its own power supply works
  35. best.
  36. ![Soldering points](images/Soldering_points.jpg)
  37. You can use some sticky tape to fixate the cables before soldering.
  38. ## Connect the wires to your serial to USB adapter
  39. The wires must be connected as follows:
  40. | Soldering point| Serial USB Adapter name |
  41. | -------------- |:------------------------:|
  42. | GND | GND |
  43. | TX | RX |
  44. | RX | TX |
  45. | GPIO0 | GND |
  46. To be able to flash the lamp, `GPIO0` must be connected to ground while
  47. the lamp boots up. Therefore, connect these wires *before* plugging in
  48. the lamp's power supply. Flashing will not work if you connect these
  49. wires after the lamp has already been booted up.
  50. ## When you only have one GND pin on your USB Adapter
  51. If your USB Adapter does not have multiple `GND` pins, then you'll have to
  52. find another way to attach `GPIO0` to ground. Some options:
  53. - Use a breadbord, so you can connect the USB Adapter `GND` pin to a row on
  54. the bread bord, and connect the `GND` and `GPIO0` wires of the lamp's
  55. board to that same row.
  56. - Solder a button on the board that connects `GPIO0` to `GND` when pressed.
  57. Then you can hold down this button while plugging in the lamp's power
  58. supply. After booting up, you can release the button (the serial console
  59. will also mention that flash mode is now enabled). This is not the most
  60. practical solution for most people (since only one such flash operation is
  61. needed, from then on OTA - Over The Air - updates are possible), but it
  62. was a great help to me during the initial reverse engineering and firmware
  63. development.
  64. - Manually hold a wire connected to both a GND surface (e.g. the silver pad
  65. on the left of the board) and the `GPIO0` debug pad, while plugging in the
  66. power supply. After booting, the wire can be removed. This is very fiddly
  67. way of doing it (a third hand would be very welcome with this), but it can
  68. be done.
  69. - You could opt for temporarily soldering a lead between `GND` and `GPIO0`
  70. on the board, making `GPIO0` pulled to ground permanently. It is a bit
  71. less flexible than some other options, but if you only need to do the
  72. initial backup and firmware flash of the lamp, then this can be all
  73. that you need. Remove the lead after flashing is done, otherwise the
  74. lamp won't boot in normal mode.
  75. ## Make a backup of the current firmware
  76. Backing up the firmware makes it possible to revert to the original firmware,
  77. in case you have problems with the ESPHome firmware. The backup can be
  78. created using "esptool". Installation instructures can be found here:
  79. https://github.com/espressif/esptool/blob/master/README.md#installation--dependencies
  80. Here's an example on how to backup the original firmware from Linux. First,
  81. unplug your lamp's power supply, then start the esptool read_flash command:
  82. ```
  83. python esptool.py -p /dev/ttyUSB0 read_flash 0x0 0x400000 original-firmware.bin
  84. ```
  85. `/dev/ttyUSB0` is the port of the USB adaper on Linux. You can find what
  86. port is used by the adapter by running `dmesg` after plugging in the USB
  87. device. On Windows this is often `COM1`, `COM2` or `COM3`.
  88. Now plug in the power supply. The output of esptool should now show that it
  89. connects to the lamp and downloads the firmware from it.
  90. **Caution**: You will find the WLAN SSID and Password of the last used
  91. WiFi network in this file. Therefore, keep this backup in a safe place.
  92. ## Restore the backed up firmware
  93. In case you need to rollback to the lamp's original firmware at some
  94. point, here's an example of how to restore the original firmware from
  95. Windows, by fully flashing it back onto the lamp.
  96. First, unplug your lamp's power supply, then start the esptool write_flash
  97. command:
  98. ```
  99. python.exe .\esptool.py --chip esp32 --port COM3 --baud 115200 write_flash 0x00 original-firmware.bin
  100. ```
  101. Make sure that `GPIO0` is connected to GND and plug in the power supply.
  102. The output of esptool should now show that it connects to the lamp and
  103. uploads the firmware to it. Be patient after the upload reaches 100%. The
  104. output is silent for a while, but esptool tool is verifying if the firmware
  105. was uploaded correctly.
  106. After the firmware upload completes, unplug the power, disconnect `GPIO0`
  107. from GND and reconnect the power supply to boot into the restored firmware.
  108. ## Flash new ESPHome firmware
  109. Setup an ESPHome Project (see [README.md](../README.md)),compile the firmware
  110. for the lamp and download the `firmware.bin` file to the device to which
  111. the serial adapter is connected.
  112. You can flash the lamp using esphome or esptool. I would recommend using
  113. the [esphome-flasher](https://github.com/esphome/esphome-flasher) tool,
  114. which is a very easy to use GUI utility app for flashing ESPHome devices:
  115. - In the app, select the COM port of your serial adapter.
  116. - Also select the firmware.bin file to flash onto the lamp.
  117. - Power up the lamp with `GPIO0` connected to GND.
  118. - Click the "Flash ESP" button to flash the firmware.
  119. If you want to flash with esptool, you can use:
  120. ```
  121. python.exe .\esptool.py --chip esp32 --port COM3 --baud 115200 write_flash 0x1000 <path\to\yourfirmware.bin>
  122. ```
  123. After flashing, power down the lamp, disconnect `GPIO0` from GND and
  124. reconnect the power to boot into the new ESPHome firmware.
  125. From here on, it is possible to flash the lamp OTA (over the air, which
  126. means that the firmware is uploaded over WiFi) from ESPHome. Therefore, it
  127. is now time to tuck away or remove those soldered wires and add the bottom
  128. cover back on.
  129. ## Troubleshooting flash
  130. If you have **A fatal error occurred: MD5 of file does not match data in
  131. flash!**, then make sure you are powering the board using the lamp's own
  132. power adapter. We've seen these errors when trying to power the board using
  133. the 3.3V debug pad.
  134. After seeing this error, user @tabacha was able to successfully flash his
  135. lamp using the regular power adapter and the tasmota boot loader using
  136. the following command:
  137. ```
  138. python esptool.py --chip esp32 -p /dev/ttyUSB0 --baud 115200 --before default_reset --after hard_reset write_flash -z --flash_mode dout --flash_freq 40m --flash_size detect 0x1000 bootloader_dout_40m.bin 0x8000 partitions.bin 0xe000 boot_app0.bin 0x10000 ~/Downloads/schlafzimmerbedlight.bin
  139. ```
  140. You will find the missing tasmota boot files here:
  141. https://github.com/arendst/Tasmota/tree/firmware/firmware/tasmota32/ESP32_needed_files
  142. *Note: user @tabacha was not able to use tasmota with the Bedside Lamp 2.*
  143. (remember that the [esphome-flasher](https://github.com/esphome/esphome-flasher)
  144. will give you a bit less of a hard-core experience during flashing)
  145. < [Configuration guide](configuration.md) | [Index](../README.md) | [Known issues](known_issues.md) >