Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exocet22/tinyftpclient
A tiny Arduino FTP client on PlatformIO running on ESP8266 module.
https://github.com/exocet22/tinyftpclient
arduino esp8266 ftp-client platformio
Last synced: 3 days ago
JSON representation
A tiny Arduino FTP client on PlatformIO running on ESP8266 module.
- Host: GitHub
- URL: https://github.com/exocet22/tinyftpclient
- Owner: Exocet22
- License: mit
- Created: 2025-02-05T16:45:31.000Z (5 days ago)
- Default Branch: master
- Last Pushed: 2025-02-05T16:56:32.000Z (5 days ago)
- Last Synced: 2025-02-05T17:34:50.292Z (5 days ago)
- Topics: arduino, esp8266, ftp-client, platformio
- Language: C
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TinyFTPClient
A tiny [Arduino](https://arduino.cc/)/[PlatformIO](https://platformio.org/) library for a FTP client running on ESP8266.
Forked from [https://github.com/justinleahy/ESP8266_FTPClient](https://github.com/justinleahy/ESP8266_FTPClient).
Many thanks to all the authors and contributors !!!## Installation
### Using the Arduino IDE Library Manager
1. Choose `Sketch` -> `Include Library` -> `Manage Libraries...`
2. Type `TinyFTPClient` into the search box.
3. Click the row to select the library.
4. Click the `Install` button to install the library.### Using PlatformIO Library Manager
1. Choose `PIO Home` -> `Libraries` -> `Registry`
2. Type `TinyFTPClient` into the search box.
3. Click the row to select the library.
4. Click the `Install` button to install the library.### Using Git
```sh
cd ~/Documents/Arduino/libraries/
git clone https://github.com/exocet22/TinyFTPClient TinyFTPClient
```## Examples
See [examples](examples) folder.
## Updates
- 90KB upload limitation fixed.
- Upload/download files directly from SPIFFS.
- Published on PlatformIO registry: [TinyFTPClient library](https://registry.platformio.org/libraries/exocet22/TinyFTPCLient).## License
This libary is [licensed](LICENSE) under the [MIT Licence](https://en.wikipedia.org/wiki/MIT_License).