1menu "Example Configuration" 2 3 choice ESPNOW_WIFI_MODE 4 prompt "WiFi mode" 5 default ESPNOW_WIFI_MODE_STATION 6 help 7 WiFi mode(station or softap). 8 9 config ESPNOW_WIFI_MODE_STATION 10 bool "Station" 11 config ESPNOW_WIFI_MODE_STATION_SOFTAP 12 bool "Softap" 13 endchoice 14 15 config ESPNOW_PMK 16 string "ESPNOW primary master key" 17 default "pmk1234567890123" 18 help 19 ESPNOW primary master for the example to use. The length of ESPNOW primary master must be 16 bytes. 20 21 config ESPNOW_LMK 22 string "ESPNOW local master key" 23 default "lmk1234567890123" 24 help 25 ESPNOW local master for the example to use. The length of ESPNOW local master must be 16 bytes. 26 27 config ESPNOW_CHANNEL 28 int "Channel" 29 default 1 30 range 0 14 31 help 32 The channel on which sending and receiving ESPNOW data. 33 34 config ESPNOW_SEND_COUNT 35 int "Send count" 36 default 100 37 range 1 65535 38 help 39 Total count of unicast ESPNOW data to be sent. 40 41 config ESPNOW_SEND_DELAY 42 int "Send delay" 43 default 1000 44 range 0 65535 45 help 46 Delay between sending two ESPNOW data, unit: ms. 47 48 config ESPNOW_SEND_LEN 49 int "Send len" 50 range 10 250 51 default 10 52 help 53 Length of ESPNOW data to be sent, unit: byte. 54 55 config ESPNOW_ENABLE_LONG_RANGE 56 bool "Enable Long Range" 57 default "n" 58 help 59 When enable long range, the PHY rate of ESP32 will be 512Kbps or 256Kbps 60 61endmenu 62