12345678910111213141516171819202122232425262728293031 |
- menu "WIFI_433_Transceiver Application Configuration"
- config BACK_END_SERVER_IP_ADDRESS
- string "Back-end server IP Address"
- default "192.168.1.110"
- 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 UNIT_ID
- int "Unit ID"
- default 1
- help
- Units ID. First transceiver is 1, the second one is 2 etc. Translates to 'B', 'C' etc.
- config UDP_PORT_NO
- int "UDP Port number"
- default 53000
- help
- The UDP Port number to listen on.
- endmenu
|