ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
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.

21 lines
486B

  1. menu "* Project: MQTT Broker Configuration"
  2. config BROKER_URI
  3. string "Broker URL"
  4. default "mqtts://mqtt.eclipseprojects.io:8883"
  5. help
  6. URL of an mqtt broker which this client connects to.
  7. config BROKER_USER
  8. string "Broker user"
  9. default "blinky"
  10. help
  11. Username for the mqtt broker.
  12. config BROKER_PASSWORD
  13. string "Broker password"
  14. help
  15. Password for the mqtt broker.
  16. endmenu