@davelondon No
AgreeDK
@AgreeDK
Posts made by AgreeDK
-
RE: Writing and re-writing text?
@david-bethesda you select where to write the text, x & y, then make a function to first erase the area with fill rect and then write the new text at x,y
-
RE: Pulse sensor connection
@david-bethesda the short answer is yes ;-)
You Will have to make you own wiring/cable , then if using Arduino programmering find a library supporting the sensor, upload example code and test it 😉 -
RE: [Core2] How to disable speaker tone during booting / power-up?
@testing123 it is the program you have loaded in the Core 2 who control the speaker, so you need to change the program.
-
RE: How do I reset M5Stack ESP32 PSRAM Timer Camera X (OV3660) using code
@spjrc set a timer to call a function after 6-12 houre, then call ESP.restart() from that function.
-
RE: How do I reset M5Stack ESP32 PSRAM Timer Camera X (OV3660) using code
You can reboot esp32 using ESP.restart();
-
RE: SX1509 library needed.
@meirmark the answer is both, just checked the library it use Wire.h so you only have to use the correct pins in the setup Calle.
-
RE: SX1509 library needed.
@meirmark I code All my M5Stack pruduct using Arduino ide with added M5 support, so the library work for me.
-
RE: SX1509 library needed.
@meirmark Google is your friend, 1st hit:https://github.com/sparkfun/SparkFun_SX1509_Arduino_Library
-
RE: Alarms based on current time? M5Core2
@babygirl1248 i know you can write special code for the rtc, but have never try.
Each time the esp32 is running, you can update the clock and after doing its job, calculate the time it should sleep to wake up at your selectede time and then make it sleep for that amount of sec.