this is a very useful function. Looking forward to!
Best posts made by AucT
-
RE: How to use mic on M5stickC via UIFlow?
-
RE: M5Stamp C3 programming examples
@felmue Yes confirm. this latest version library works! Here is the blink code
#include <Adafruit_NeoPixel.h>#define PIXELPIN 2
#define NUMPIXELS 1Adafruit_NeoPixel pixel(NUMPIXELS, PIXELPIN, NEO_GRBW + NEO_KHZ400);
void setup() {
pixel.begin(); // INITIALIZE NeoPixel strip object (REQUIRED)
pixel.clear(); // Set pixel colors to 'off'
pixel.show();
}void loop() {
pixel.setPixelColor(0, pixel.Color(0, 0, 128));
pixel.show();
delay(1000);pixel.clear();
pixel.show();
delay(500);pixel.setPixelColor(0, pixel.Color(128, 0, 0));
pixel.show();
delay(1000);pixel.clear();
pixel.show();
delay(500);
} -
Custom EasyLoader
How to make EasyLoader for M5StickC with my program? How to prepare the necessary files?
I am writing in Arduino and PlatformIO. -
Very very quiet buzzer sound M5StickC-Plus
Very very quiet buzzer sound. Like the sound of an insect. So on all 4 purchased devices.
Is this normal or a marriage? Can this be fixed?