this is a very useful function. Looking forward to!
Best posts made by AucT
- 
    RE: How to use mic on M5stickC via UIFlow?posted in M5 Stick/StickC
- 
    RE: M5Stamp C3 programming examplesposted in Modules@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 EasyLoaderposted in M5 Stick/StickCHow 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-Plusposted in M5 Stick/StickCVery 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?
Latest posts made by AucT
- 
    web / easyloader-packer /posted in SOFTWAREI have been unable to use the web / easyloader-packer / service for several days. 
 Is he still working? How?
- 
    RE: M5Stamp C3 programming examplesposted in Modules@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);
 }
- 
    M5Stamp C3 programming examplesposted in ModulesWhen will there be M5Stamp C3 programming examples? Interested in turning on the LED in different colors. 
- 
    recording .bin file via M5Burnerposted in SOFTWAREHow can I prepare a .bin file for direct program recording into m5stickC (m5StickCPlus) via M5Burner? 
- 
    Very very quiet buzzer sound M5StickC-Plusposted in M5 Stick/StickCVery 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?
- 
    How do I programmatically reduce the sensitivity of the M5StickC microphoneposted in M5 Stick/StickCHow do I programmatically reduce the sensitivity of the M5StickC microphone? Is it possible? The sound is very loud. 
- 
    RE: How to use mic on M5stickC via UIFlow?posted in M5 Stick/StickCthis is a very useful function. Looking forward to! 
- 
    Custom EasyLoaderposted in M5 Stick/StickCHow to make EasyLoader for M5StickC with my program? How to prepare the necessary files? 
 I am writing in Arduino and PlatformIO.
- 
    RE: Knock Detector with microphone m5stickCposted in M5 Stick/StickC@world101 said in Knock Detector with microphone m5stickC: Try this... 
 https://github.com/m5stack/M5StickC/blob/master/examples/Basics/Micophone/Micophone.inoThank you, I saw it. How to write it in Python? 
- 
    RE: Knock Detector with microphone m5stickCposted in M5 Stick/StickCYes, you need to use a internal microphone. 
 How?