OVMS3-idf/examples/protocols/sntp/main/Kconfig.projbuild

32 lines
899 B
Plaintext

menu "Example Configuration"
config WIFI_SSID
string "WiFi SSID"
default "myssid"
help
SSID (network name) for the example to connect to.
config WIFI_PASSWORD
string "WiFi Password"
default "mypassword"
help
WiFi password (WPA or WPA2) for the example to use.
Can be left blank if the network has no security set.
choice SNTP_TIME_SYNC_METHOD
prompt "Time synchronization method"
default SNTP_TIME_SYNC_METHOD_IMMED
help
Time synchronization method.
config SNTP_TIME_SYNC_METHOD_IMMED
bool "update time immediately when received"
config SNTP_TIME_SYNC_METHOD_SMOOTH
bool "update time with smooth method (adjtime)"
config SNTP_TIME_SYNC_METHOD_CUSTOM
bool "custom implementation"
endchoice
endmenu