ESP32_DHT_Node/main/Kconfig.projbuild

38 lines
953 B
Plaintext
Raw Normal View History

menu "Application specific configuration"
2022-07-06 17:29:53 +00:00
config APP_I2C_SCL_PIN
int "I2C SCL IO number"
default 22
help
I2C pins connected to the sensor
config APP_I2C_SDA_PIN
int "I2C SDA IO number"
default 21
help
I2C pins connected to the sensor
config APP_SNTP_POOL_ADDR
string "SNTP Pool Address"
default "cn.pool.ntp.org"
help
NTP pool address.
2022-07-03 17:43:58 +00:00
config APP_WIFI_SSID
string "WiFi SSID"
default "myssid"
help
SSID for the access point.
2022-07-03 17:43:58 +00:00
config APP_WIFI_PASSWORD
string "WiFi Password"
default "mypassword"
help
Password for the access point.
2022-07-04 15:44:08 +00:00
config APP_MQTT_BROKER_ADDR
string "MQTT broker connection string"
default "mqtt://127.0.0.1:1883"
help
Connection string for MQTT broker, use scheme://host:port format.
2022-07-03 17:43:58 +00:00
endmenu