summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index b1a0641..cd8d17a 100644
--- a/README.md
+++ b/README.md
@@ -22,19 +22,19 @@ Select the desired FS via the contructor
#include <espFTPServer.h>
#include <LittleFS.h>
-espFTPServer ftpServer(LittleFS); // construct with LittleFS
+FtpServer ftpSrv(LittleFS); // construct with LittleFS
// or
-espFTPServer ftpServer(SPIFFS); // construct with SPIFFS if you need to for backward compatibility
+FtpServer ftpSrv(SPIFFS); // construct with SPIFFS if you need to for backward compatibility
```
### Configure username/password
```cpp
-ftpServer.begin("username", "password");
+ftpSrv.begin("username", "password");
```
### Handle by calling frequently
```cpp
-ftpServer.handleFtp(); // place this in e.g. loop()
+ftpSrv.handleFTP(); // place this in e.g. loop()
```