Best posts made by yellowelise
Latest posts made by yellowelise
-
RE: M5Paper sd card issues
Hi, you have M5Paper?
you can try this sniplet?
regards
A -
M5Paper sd card issues
I Have problem with Sd card in my first batch M5Paper, I try this code but don't works, anyone can try in it's m5paper?
#include <M5EPD.h>
File myFile;
void setup(void)
{
M5.begin();
Serial.begin(115200);
SPI.begin(14, 13, 12, 4);
bool ret = SD.begin(4, SPI, 20000000);
if(ret == false)
Serial.print("SD ERROR...\n");
else
{
Serial.print("SD OK...\n");
if (SD.exists("screen.txt"))
Serial.print("screen.txt exists...\n");
else
Serial.print("screen.txt NOT exists...\n");
Serial.print("Try to create screen.txt...\n");
myFile = SD.open("screen.txt", FILE_WRITE);
myFile.println("Some text...");
myFile.close();
if (SD.exists("screen.txt"))
Serial.print("now screen.txt exists...\n");
else
Serial.print("not jet screen.txt exists...\n");
}}
void loop(void)
{}
-
Save current screen content to image file (SD card)...
With arduino library...
It's possible to do?
code examples?
regards
A -
M5Stack Fire old?
There are two version of M5Stack Fire?
I recently buy a Fire with MPU6050+MAG3110 instead of MPU9250
MPU6050 are old version? -
RE: Unit WEIGHT issues
@watson one question, are you sure weight unit are I2C?
I see the back and report GPIO A/B/C...
I buy also this:
https://www.aliexpress.com/item/New-Arrival-M5Stack-Official-I2C-Hub-1-to-6-Expansion-Grove-I2C-Interface-for-Arduino-Blockly/32998974179.html?spm=a2g0s.9042311.0.0.15424c4d4BZ4hA
And I hope this works...