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.

17 lines
438 B

  1. # Over the Air updates
  2. If you are on Platformio, remember that to use OTA you need to set the upload port and the protocol properly in the `platformio.ini` file. Like:
  3. ```
  4. ; for OTA stuff you have to update the upload_port
  5. upload_protocol = espota
  6. upload_port = IP_ADDRESS_HERE or mDNS_NAME.local
  7. ```
  8. And remember that you can get serial debug output via telnet using the `TelnetStream` library.
  9. ```
  10. lib_deps =
  11. TelnetStream
  12. ```