From 573b884a775c4230ae91010cc19601906d8588af Mon Sep 17 00:00:00 2001 From: Nikolay <83143316+nikvostro@users.noreply.github.com> Date: Sat, 2 Mar 2024 10:40:55 +0300 Subject: [PATCH] Added UFSFTP command section "ADD FTP server to filesystem #20402" --- docs/Commands.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/Commands.md b/docs/Commands.md index 13f7755126..f5347162f7 100644 --- a/docs/Commands.md +++ b/docs/Commands.md @@ -250,6 +250,24 @@ WiFiScan|`1` = start a network scan. Results w WiFiTest|Only available in AP mode. Test whether the Wi-Fi SSId and Password are correct and Tasmota can connect to the network. `` = `0..3`
  `0` = test credentials, if successful save them in SSID slot 1, restart Tasmota
  `1` = test credentials, if successful save them in SSID slot 1 without restart
  `2` = test credentials, if successful save them in SSID slot 2 without restart
  `3` = test credentials without storing anything persistently and without restart
`ssid+password` = credentials used for testing, `+` symbol is the separator since it is not allowed in an SSId name.* [Read more...](https://github.com/arendst/Tasmota/pull/16141) See also|[`SetOption55`](#setoption55) - mDNS service control
[`SetOption56`](#setoption56) - Wi-Fi network scan to select strongest signal on restart
[`SetOption57`](#setoption57) - Wi-Fi network re-scan, alternate AP + +### FTP Server + +Simple FTP Server for ESP8266 and ESP32 with filesystem. +Define as per below and specify credentials you want: +``` +#define USE_FTP +#define USER_FTP "user" +#define PW_FTP "pass" +``` +Command|Parameters +:---|:--- +UFSFTP|`0` = FTP off
`1` = FTP on SD card (when no SD card defaults to FFS)
`2` = FTP on Flash file System +!!! note + It works very stable, but a little slow, about 70 kb per second + Enabled by default for the following config (`tasmota_configurations.h`): NOT(ESP8266_1M) AND NOT(FIRMWARE_MINIMAL) AND ESP8266_4M + + ### MQTT Command|Parameters