I have been unable to use the web / easyloader-packer / service for several days.
Is he still working? How?
Posts made by AucT
-
web / easyloader-packer /
-
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);
} -
M5Stamp C3 programming examples
When will there be M5Stamp C3 programming examples? Interested in turning on the LED in different colors.
-
recording .bin file via M5Burner
How can I prepare a .bin file for direct program recording into m5stickC (m5StickCPlus) via M5Burner?
-
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? -
How do I programmatically reduce the sensitivity of the M5StickC microphone
How 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?
this is a very useful function. Looking forward to!
-
Custom EasyLoader
How 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 m5stickC
@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 m5stickC
Yes, you need to use a internal microphone.
How? -
Knock Detector with microphone m5stickC
Hello!
Please give me an example of working with a microphone on m5sctickC. You need to know only the volume of the sound, like a shock detector.
I am using Python. I tried to read the analog signal from the G34, but it did not help.
Thank! -
Как реализовать millis() в UIFlow???
Как реализовать millis() в UIFlow на Blockly/MicroPython???