ESP3D/docs/esp3dcnf.ini
Luc 39e06975f2 Update from refactoring branch
### Maintenance page
* Add add tab color for mobile view
* Add spellcheck off / autocorect off in input
* Add disconnect button when authenticate enabled
* Add Invalid user or password message when authentication failed

### Board support
* Add ESP32 S2 support
* Add ESP32 S3 support
* Add ESP32 C3 support

### ESP commands
* Add command 701 to control GCODE streaming
* Remove command 901 as duplicate
* Update command 420 to add more details
* Use text as default output
* All json on all commands for formated output

### Core
* Add benchmak function to check transfer speed (for test only-not production)
* Merge code for ESP3DLib support
* Add better printer display support (M117 / Serial TFT)
* Use ESP32 analogWrite instead of emulated one

### Modules
* Display
	* Refactor code
	* Remove SPI ILI 9341 / 9488 support as not suitable
      * Add ST7789 support (135x240 / 240x240)
* Filesystem
	* Bug fixes due to esp core updates
	* Better SD sharing mecanism
      * Better global FS management
* FTP
	* Add SD sharing support
	* Better global FS management
* GCODE Host
	* Add basic support for macro files
      * Add ESP command support
      * Use not blocking method to stream commands / handle response
* Notifications
	* Add IFTTT notification service
	* Add WebUI notification
	* Add ESP3D display notification
* WebDav
	* Add SD sharing support
	* Add bug fix from https://github.com/d-a-v/ESPWebDAV
	* Better global FS management
* Websocket
	* Add function to handle zombies connections
* WiFi
	* Fix connection to AP sometime fail
	* Fix low signal not diplayed in ESP420 even connected
	* Add AP Setup mode

### Libraries
* Update SDFat-2.0.6 to 2.1.2
* Update ESP32SSDP 1.1.1 to 1.2.0
* Update TFT_eSPI-1.4.11 to 2.4.61
* Update arduinoWebSockets-2.3.5 to 2.3.6
* Update esp8266-oled-ssd1306-4.0.0 to 4.3.0
* Remove lvgl support

### Tools
* Add I2C scanner script
* Add python script to simulate/stress printer serial communication

### PlatformIO
 * Use latest 4.4.0 Espressif32 release (ESP32-arduino core 2.0.3)
 * Add fix for Flash more than 4MB
 * Add Esp32 S2/S3/C3 env
 * Add ESP32-ST7789 / esp32-TTGO_T_Display env
2022-06-01 14:56:57 +08:00

160 lines
2.8 KiB
INI

[network]
#Hostname string of 32 chars max
hostname = myesp
#Radio mode BT, WIFI-STA, WIFI-AP, ETH-STA, OFF
radio_mode = WIFI-STA
#Station fallback mode BT, WIFI-AP, OFF
sta_fallback = WIFI-AP
#Active when boot device or not Yes / No
Radio_enabled = Yes
#STA SSID string of 32 chars max
STA_SSID = myssid
#STA Password string of 64 chars max, minimum 0 or 8 chars
STA_Password = *******
#STA IP Mode DHCP / STATIC
STA_IP_mode = DHCP
#STA static IP
STA_IP = 192.168.0.2
#STA static gateway
STA_GW = 192.168.0.1
#STA static mask
STA_MSK = 255.255.255.0
#STA static dns
STA_DNS = 192.168.0.1
#AP SSID string of 32 chars max
AP_SSID = myssid
#AP Password string of 64 chars max, minimum 0 or 8 chars
AP_Password = 12345678
#AP static IP
AP_IP = 192.168.0.1
#AP channel 1~14
AP_channel = 11
[services]
#Active or not HTTP Yes / No
HTTP_active = Yes
#HTTP Port
HTTP_Port = 80
#Active or not Telnet Yes / No
TELNET_active = Yes
#Telnet Port
TELNET_Port = 23
#Active or not WebSocket Yes / No
WebSocket_active = Yes
#WebSocket Port
WebSocket_Port = 8282
#Active or not WebDav Yes / No
WebDav_active = Yes
#WebSocket Port
WebDav_Port = 8282
#Active or not FTP Yes / No
FTP_active = Yes
#FTP control Port
FTP_Control_Port = 21
#FTP active Port
FTP_Active_Port = 20
#FTP passive Port
FTP_Passive_Port = 55600
#Auto notification
AUTONOTIFICATION = Yes
#Notification type None / PushOver / Line / Email / Telegram /IFTTT
NOTIF_TYPE = None
#Notification token 1 string of 64 chars max
NOTIF_TOKEN1 =
#Notification token 2 string of 64 chars max
NOTIF_TOKEN2 =
#Notification settings string of 127 chars max
NOTIF_TOKEN_Settings=
#SD card Speed factor 1 2 4 6 8 16 32
SD_SPEED = 4
#Check update from SD Yes / No
CHECK_FOR_UPDATE = Yes
#Enable Buzzer Yes / No
Active_buzzer = yes
#Active Internet time Yes / No
Active_Internet_time = yes
#Time servers string of 127 chars max
Time_server1 = 1.pool.ntp.org
Time_server2 = 2.pool.ntp.org
Time_server3 = 3.pool.ntp.org
#time zone -12~12
Time_zone = 2
#is DST Yes/No
Time_DST = No
#Authentication passwords string of 20 chars max
ADMIN_PASSWORD = xxxxxxx
USER_PASSWORD = xxxxxxx
#session time out in min
Sesion_timeout = 3
#Sensor type if enabled None / DHT11 / DHT22 / ANALOG / BMP280 / BME280
SENSOR_TYPE = NONE
#sensor poiling interval in ms
SENSOR_INTERVAL = 30000
[system]
#Target Firmware Marlin / Repetier / MarlinKimbra / Smoothieware / GRBL
TargetFW=Marlin
#Baud Rate
Baud_rate = 115200
#Boot delay in ms
Boot_delay = 5000
#Boot verbose Yes / No
Boot_verbose = No
#Outputs
#printer Screen Yes / No
Active_Remote_Screen = Yes
#esp3d Screen Yes / No
Active_ESP3D_Screen = Yes
#ESP3D Serial Yes / No
Active_Serial = Yes
#Websocket Yes / No
Active_WebSocket = Yes
#Telnet Yes / No
Active_Telnet = Yes
#Bluetooth Yes / No
Active_BT = Yes