You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have an sc01-plus, and it is working fine. The only thing I can't get running is the sdcard. I use the Arduino envoirment to programm. Do you have tips for me to get it running.
This is the program I have written to test it.
Thanks for any help
`#define LGFX_USE_V1 // set to use new version of library
#include <LovyanGFX.hpp> // main library
#include "config.h"
Hello, I have an sc01-plus, and it is working fine. The only thing I can't get running is the sdcard. I use the Arduino envoirment to programm. Do you have tips for me to get it running.
This is the program I have written to test it.
Thanks for any help
`#define LGFX_USE_V1 // set to use new version of library #include <LovyanGFX.hpp> // main library #include "config.h"
Hello, I have an sc01-plus, and it is working fine. The only thing I can't get running is the sdcard. I use the Arduino envoirment to programm. Do you have tips for me to get it running.
This is the program I have written to test it.
Thanks for any help
`#define LGFX_USE_V1 // set to use new version of library #include <LovyanGFX.hpp> // main library #include "config.h"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello, I have an sc01-plus, and it is working fine. The only thing I can't get running is the sdcard. I use the Arduino envoirment to programm. Do you have tips for me to get it running.
This is the program I have written to test it.
Thanks for any help
`#define LGFX_USE_V1 // set to use new version of library
#include <LovyanGFX.hpp> // main library
#include "config.h"
#include "FS.h" // File System header
#include "SD.h" // SD Card header
static LGFX lcd; // declare display variable
#define sdSelectPin 41
void setup() {
Serial.begin(500000);
lcd.init();
lcd.setRotation(1);
lcd.clear(TFT_RED);
if (!SD.begin(sdSelectPin))
{
Serial.println("SD Card initialisation failed!");
}
Serial.println("Ready");
}
void loop() {
}
Beta Was this translation helpful? Give feedback.
All reactions