Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. AucT
    A
    • Continue chat with AucT
    • Start new chat with AucT
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    AucT

    @AucT

    6
    Reputation
    12
    Posts
    1693
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    AucT Follow

    Posts made by AucT

    • web / easyloader-packer /

      I have been unable to use the web / easyloader-packer / service for several days.
      Is he still working? How?

      posted in SOFTWARE
      A
      AucT
    • 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 1

      Adafruit_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);
      }

      posted in Modules
      A
      AucT
    • M5Stamp C3 programming examples

      When will there be M5Stamp C3 programming examples? Interested in turning on the LED in different colors.

      posted in Modules
      A
      AucT
    • recording .bin file via M5Burner

      How can I prepare a .bin file for direct program recording into m5stickC (m5StickCPlus) via M5Burner?

      posted in SOFTWARE
      A
      AucT
    • 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?

      posted in M5 Stick/StickC
      A
      AucT
    • 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.

      posted in M5 Stick/StickC
      A
      AucT
    • RE: How to use mic on M5stickC via UIFlow?

      this is a very useful function. Looking forward to!

      posted in M5 Stick/StickC
      A
      AucT
    • Custom EasyLoader

      How to make EasyLoader for M5StickC with my program? How to prepare the necessary files?
      I am writing in Arduino and PlatformIO.

      posted in M5 Stick/StickC
      A
      AucT
    • RE: Knock Detector with microphone m5stickC

      @world101 said in Knock Detector with microphone m5stickC:

      @auct

      Try this...
      https://github.com/m5stack/M5StickC/blob/master/examples/Basics/Micophone/Micophone.ino

      Thank you, I saw it. How to write it in Python?

      posted in M5 Stick/StickC
      A
      AucT
    • RE: Knock Detector with microphone m5stickC

      Yes, you need to use a internal microphone.
      How?

      posted in M5 Stick/StickC
      A
      AucT