ENG-CANSAT-PICO-LOG

De MCHobby - Wiki
Sauter à la navigation Sauter à la recherche

MicroPython File System

MicroPython board does fits an internal file system. This means that Python language on a MicroPython board can also manage files!

MicroPython-FileSystem.png

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 with statement will automatically close the file when the code gets out of the with scope.

with open( 'file.txt', 'a' ) as _file:
    _file.write( "Hey, it is MicroPython\r\n" )

Notes:

  • The 'a' parameter in the open() call stand for "append". So executing several times the code will append the same text again and again to the file.
  • IF the file doesn't exists yet THEN it will be automatically created.
  • Use the 'w' parameter (instead of 'a') to overwrite the file content.

The following screen capture do show the 'file.txt' on the pico file system (do not hesitate to refresh the file list) and the file content is displayed on the file pane.

ENG-CANSAT-PICO-LOG-10.png


Written by Meurisse D. for MCHobby


MCHobby investit du temps et de l'argent dans la réalisation de traduction et/ou documentation. C'est un travail long et fastidieux réalisé dans l'esprit Open-Source... donc gratuit et librement accessible.
SI vous aimez nos traductions et documentations ALORS aidez nous à en produire plus en achetant vos produits chez MCHobby.