You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 regels
176 B

  1. #include "SdCard.h"
  2. namespace hardware {
  3. namespace sdcard {
  4. SdFat filesystem;
  5. bool available = false;
  6. void setup() {
  7. available = filesystem.begin(SD_SS);
  8. }
  9. }
  10. }