Modifications

Sauter à la navigation Sauter à la recherche
Ligne 3 : Ligne 3 :  
{{traduction}}
 
{{traduction}}
 
== Introduction ==  
 
== Introduction ==  
One of the best features of the M0 express board is a small SPI flash memory chip built into the board.  This memory can be used for almost any purpose like storing data files, Python code, and more.  Think of it like a little SD card that is always connected to the board, and in fact with Arduino you can access the memory using a library that is very similar to the <a href="https://www.arduino.cc/en/reference/SD">Arduino SD card library</a>.  You can even read and write files that CircuitPython stores on the flash chip!
+
Une des fonctionnalités les plus captivante du M0 express est la petite puce mémoire flash additionnel (en SPI) placée sur la carte. Cette mémoire peut être utilisé pour fournir de nombreux services tels que le stockage de fichiers de données, du code Python et plus.
   −
To use the flash memory with Arduino you'll need to install the <a href="https://github.com/adafruit/Adafruit_SPIFlash">Adafruit SPI Flash Memory library</a> in the Arduino IDE.  Click the button below to download the source for this library, open the zip file, and then copy it into an '''Adafruit_SPIFlash''' folder (remove the -master GitHub adds to the downloaded zip and folder) <a href="../../../../adafruit-all-about-arduino-libraries-install-use/arduino-libraries">in the Arduino library folder on your computer</a>:
+
Voyez cette mémoire flash additionnel comme une petite carte SD continuellement branchée sur la carte à laquelle vous pouvez accéder en utilisant une bibliothèque similaire à [https://www.arduino.cc/en/reference/SD la bibliothèque Carte SD d'Arduino]. Vous pouvez même lire et écrire les fichaiers que CircuitPython stocker sur cette mémoire Flash!
 
  −
Once the library is installed open the Arduino IDE and look for the following examples in the library:
      +
Vous aurez besoin d'installer la [https://github.com/adafruit/Adafruit_SPIFlash bibliothèque SPI Flash Memory d'Adafruit] dans Arduino IDE pour utiliser cette mémoire flash avec Arduino.  Cliquez sur le bouton ci-dessous pour télécharger les sources de la bibliothèque, ouvrez le fichier zip, et copiez le dans un répertoire '''Adafruit_SPIFlash''' (''retirez le '-master' ajouté par GitHub au nom du répertoire lorsqu'il est téléchargé depuis GitHub) au côté des autres bibliothèques Arduino:
    +
Une fois la bibliothèque installée, ouvrez Arduino IDE pour accéder aux différents exemples de la bibliothèque:
 
* '''fatfs_circuitpython'''
 
* '''fatfs_circuitpython'''
 
* '''fatfs_datalogging'''
 
* '''fatfs_datalogging'''
Ligne 17 : Ligne 17 :  
* '''flash_erase'''
 
* '''flash_erase'''
   −
These examples allow you to format the flash memory with a FAT filesystem (the same kind of filesystem used on SD cards) and read and write files to it just like a SD card.
+
Ces exemples vous permettent de formater la mémoire flash avec un système de fichier FAT (la même type de système de fichier que l'on retrouve sur une carte SD), lire et écrire des fichiers comme ont le fait sur une carte SD.
    
== Read & Write CircuitPython Files ==
 
== Read & Write CircuitPython Files ==
29 917

modifications

Menu de navigation