Added CircuitPython Custom FS stub, Fixed l10n bug in listings, Minor additions

Update circuitpython-custom-fs.yml, sidebar.yml, and 13 more files...
This commit is contained in:
2024-10-20 22:33:49 +02:00
parent 46b9a3285e
commit 64dcc6469b
17 changed files with 100 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
# EN - CircuitPython Custom FS
meta.title: CircuitPython - Custom File Systems
meta.description: "Set of examples of custom file systems and block-level devices for CircuitPython that can be
used for educational purposes and expanded upon."
intro.title: Introduction
intro.text.10: "The goal of this experiment was to try and give people a strong, clear, and documented starting point
for future experiments that may require virtual file systems and block-level devices on CircuitPython devices."
intro.text.20: "For example, by using the blank examples, you can easily create a bootstrapping code and file system
that connects securely to a remote server and pulls code directly from it without ever having to touch the MCU's
flash storage."
intro.text.30: "The second main advantage is that this project can serve as a robust educational tool."
intro.text.31: "Due to the permissive nature of Python and CircuitPython's APIs, it lets people easily test out
different designs and mechanisms for their file systems without running the risk of corrupting unrelated data or
bricking their device."
intro.text.32: "Additionally, it is possible to manipulate and add logging to many of the methods which allows you to
see and understand the inner workings of CircuitPython, filesystems and BLD devices themselves."

View File

@@ -10,6 +10,7 @@ text.projects: Projects
text.applications: Applications
text.libraries: Libraries
text.electronics: Electronics
text.experiments: Experiments
text.3d-print: 3D Printing
text.tools: Tools
text.links: Links

View File

@@ -1,5 +1,8 @@
# EN - SVG to PNG
meta.title: SVG to PNG converter
meta.description: Convert and resize SVG images into PNG files easily and locally.
upload.add.button: "Add image(s)"
upload.clear.button: "Clear"