Navigation

    M5Stack Community

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

    Best posts made by 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
    • 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
    • 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