Modifications

Sauter à la navigation Sauter à la recherche
797 octets ajoutés ,  6 mars 2022 à 23:39
aucun résumé de modification
Ligne 2 : Ligne 2 :     
{{traduction}}
 
{{traduction}}
 +
== MicroPython File System ==
 +
MicroPython board does fits a internal file system. This means that Python language on a MicroPython board can also manage files!
 +
 +
On a MicroPython board, you can manage files and directories. Creating them, deleting them, adding data to them, etc.
 +
 +
As any good implementation of Python, MicroPython can manage text files and binary files.
 +
 +
== Data Logging on MicroPython ==
 +
Doing data logging with MicroPython is quite easy. You just open a file and write data into it like you will do with any Python code.
 +
 +
=== Writing data to text file ===
 +
The following example adds lines to the 'file.txt'. The {{fname|with}} statement will automatically close the file when the code gets out of the {{fname|with}} scope.
 +
 +
<syntaxhighlight lang="python">
 +
xxx
 +
</syntaxhighlight>
    
{{ENG-CANSAT-PICO-TRAILER}}
 
{{ENG-CANSAT-PICO-TRAILER}}
29 917

modifications

Menu de navigation