Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beryllium-org/circuitpython_ftp_server
CircuitPython FTP Server, A simple FTP server for Circuitpython 8.x / 9.x
https://github.com/beryllium-org/circuitpython_ftp_server
circuitpython circuitpython-library ftp
Last synced: 3 months ago
JSON representation
CircuitPython FTP Server, A simple FTP server for Circuitpython 8.x / 9.x
- Host: GitHub
- URL: https://github.com/beryllium-org/circuitpython_ftp_server
- Owner: beryllium-org
- License: mit
- Created: 2023-09-03T21:26:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T18:35:25.000Z (4 months ago)
- Last Synced: 2024-10-20T04:10:14.775Z (4 months ago)
- Topics: circuitpython, circuitpython-library, ftp
- Language: Python
- Homepage:
- Size: 46.9 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CircuitPython FTP Server
A simple FTP server for Circuitpython 8.x and 9.x, with PASV and ACTIVE support!
Installation:
You can copy the 'src/ftp.py' to your board directly or instead make it an mpy package.
Just run `make mpy`. If your board is attached, the mpy-cross used will be based off of your board's CircuitPython version.
You can also override the version like: `MPYVER=9.0.0-alpha.1-32-g0928a95bb2 make mpy`
Usage:
Usage examples provided in 'examples'.
Due to ongoing issue https://github.com/adafruit/circuitpython/issues/8363, this implementation cannot be used along with the web-workflow!