Pirate TV for the esp32
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

63 lines
1.7 KiB

menu "Channel3 Configuration"
choice VIDEO_STANDARD
prompt "Video Standard"
default VIDEO_NTSC
help
Select the video standard for broadcast output.
config VIDEO_NTSC
bool "NTSC (North America, Japan)"
config VIDEO_PAL
bool "PAL (Europe, Australia)"
endchoice
config I2S_DATA_GPIO
int "I2S Data Output GPIO"
default 22
range 0 39
help
GPIO pin for I2S data output (RF broadcast).
This pin will output the 80MHz modulated signal.
choice WIFI_MODE
prompt "WiFi Mode"
default WIFI_MODE_STATION
help
Select WiFi operation mode.
config WIFI_MODE_STATION
bool "Station (connect to existing network)"
config WIFI_MODE_SOFTAP
bool "SoftAP (create own access point)"
endchoice
config WIFI_STA_SSID
string "WiFi Network SSID"
default "MyNetwork"
depends on WIFI_MODE_STATION
help
SSID of the WiFi network to connect to.
config WIFI_STA_PASS
string "WiFi Network Password"
default "MyPassword"
depends on WIFI_MODE_STATION
help
Password for the WiFi network.
config WIFI_SOFTAP_SSID
string "WiFi SoftAP SSID"
default "Channel3"
depends on WIFI_MODE_SOFTAP
help
SSID for the ESP32 SoftAP mode.
config WIFI_SOFTAP_PASS
string "WiFi SoftAP Password"
default "channel3tv"
depends on WIFI_MODE_SOFTAP
help
Password for the ESP32 SoftAP mode. Leave empty for open network.
endmenu