Update 'CARDPUTER CircuitPython/projects/README.md'

This commit is contained in:
2025-04-20 14:11:28 +00:00
parent ed36fd8334
commit 70f930a430

View File

@@ -7,16 +7,19 @@ When using a file in CircuitPython, it needs to be renamed to "code.py" as this
A mostly functional, but incredibly basic text editor. A mostly functional, but incredibly basic text editor.
### Features ### Features
- Cursor-less text editing (remember how Minecraft book writing used to feel like? Yeah. That.) - Cursor-less text editing (remember how Minecraft book writing used to feel like? Yeah. That.)
- Save file - You only have to type the filename; the ".txt" extension will be automatically added. - Save file - You only have to type the filename; the ".txt" extension will be automatically added.
- Open file - You can select from a list of files in the SD card. Still no line scrolling here, so only the first 7 files will be visible - Open file - You can select from a list of files in the SD card. Still no line scrolling here, so only the first 7 files will be visible
- If you open a file, the save menu conveniently fills in the filename for you, so you don't have to write it again to re-save. - If you open a file, the save menu conveniently fills in the filename for you, so you don't have to write it again to re-save.
- -
### Dependencies ### Dependencies
- Keyboard library from this repository - Keyboard library from this repository
- adafruit_display_text from the bundle - adafruit_display_text from the bundle
- -
### Issues ### Issues
- No line scrolling. Once you exceed 7 lines, you're guessing, bud - No line scrolling. Once you exceed 7 lines, you're guessing, bud
- No folder support. It will only show text (.txt) files in the root /sd folder. - No folder support. It will only show text (.txt) files in the root /sd folder.
- There are no confirmation or warning messages. Use with caution and be sure that you aren't using a repeat filename, or it will overwrite the file without warning. - There are no confirmation or warning messages. Use with caution and be sure that you aren't using a repeat filename, or it will overwrite the file without warning.