12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- menu "Fridge Sensor Application Configuration"
- config ESP_WIFI_SSID
- string "WiFi SSID"
- default "Hemnet3"
- help
- SSID (network name) to connect to.
- config ESP_WIFI_PASSWORD
- string "WiFi Password"
- default "mypassword"
- help
- WiFi password (WPA or WPA2) to use.
- config ESP_MQTT_PASSWORD
- string "MQTT Password"
- default "mypassword"
- help
- MQTT password
- config ESP_MQTT_UNAME
- string "MQTT User"
- default "myuser"
- help
- MQTT Username
- choice BLINK_LED
- prompt "Blink LED type"
- default BLINK_LED_GPIO if IDF_TARGET_ESP32
- default BLINK_LED_RMT
- help
- Defines the default peripheral for blink example
- config BLINK_LED_GPIO
- bool "GPIO"
- config BLINK_LED_RMT
- bool "RMT - Addressable LED"
- endchoice
- config BLINK_GPIO
- int "Blink GPIO number"
- range 0 48
- default 8 if IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32H2
- default 18 if IDF_TARGET_ESP32S2
- default 48 if IDF_TARGET_ESP32S3
- default 5
- help
- GPIO number (IOxx) to blink on and off or the RMT signal for the addressable LED.
- Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink.
- endmenu
|