Navigation

    M5Stack Community

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

    XXL-Wing

    @XXL-Wing

    0
    Reputation
    4
    Posts
    121
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    XXL-Wing Follow

    Posts made by XXL-Wing

    • RE: ATOM Lite with different LED controllers for internal LED?

      Boiled it down to minimalistic piece of code to avoind any sideeffects...

      Here is a link to 2 different Atom Lite pieces running exactly the same software as shown below.
      https://photos.app.goo.gl/KBm54aqW5LbtxsWq7
      This video shows them side-by-side.....
      They dow not in any direction behave at least a little bit similar.....

      Any ideas anyone?

      This is running on the Atom Lite now:

      #include <Arduino.h>
      #include <LiteLED.h>

      // Choose the LED type from the list below.
      // #define LED_TYPE LED_STRIP_WS2812
      #define LED_TYPE LED_STRIP_SK6812
      // #define LED_TYPE LED_STRIP_APA106
      // #define LED_TYPE LED_STRIP_SM16703

      #define LED_TYPE_IS_RGBW 1
      #define LED_GPIO 27
      #define LED_BRIGHT 100

      static const crgb_t L_RED = 0xff0000;
      static const crgb_t L_GREEN = 0x00ff00;
      static const crgb_t L_BLUE = 0x0000ff;
      static const crgb_t L_WHITE = 0xe0e0e0;

      LiteLED myLED( LED_TYPE, LED_TYPE_IS_RGBW );

      void setup() {
      myLED.begin( LED_GPIO, 1 );
      myLED.brightness( LED_BRIGHT );
      }

      void loop() {
      myLED.setPixel( 0, L_RED, 1 );
      delay( 500 );
      myLED.setPixel( 0, L_GREEN, 1 );
      delay( 500 );
      myLED.setPixel( 0, L_BLUE, 1 );
      delay( 500 );
      myLED.setPixel( 0, L_WHITE, 1 );
      delay( 500 );
      }

      posted in Atom
      X
      XXL-Wing
    • RE: ATOM Lite with different LED controllers for internal LED?

      If I try to solder the bad ones off and solder them to the good modules they are for sure broken :-)

      posted in Atom
      X
      XXL-Wing
    • RE: ATOM Lite with different LED controllers for internal LED?

      All the ATOMS I test on the exact same spot on the table.
      The misbehaving ones just show wrong colors and do not blink, whereas the "good" ones behave right.
      Exact same code, exact same setup on the table.

      Looks like a hardware issue or other LEDs that need different data formats.

      posted in Atom
      X
      XXL-Wing
    • ATOM Lite with different LED controllers for internal LED?

      Hi,

      I have a very strange pheomenon here...
      I use an ATOM Lite as temperature monitoring node.
      The system status is displayed by using the single RGB LED the ATOM Lite has on its front.

      Now here is the story:
      The code I have written performs very well on three of my 5 ATOM Lite nodes and shows the correct behavior of the RGB LED (e.g. blinking blue when temperature is below a defined threshold).

      Two other ATOM Lite I have behave very strange and do something completely weird with the exact same code.
      Different colors, brightness etc. Looks like the controller misinterprets the data sent because it is a different type of controller.

      Do different pieces of ATOM Lites have different LED drivers built in? If so what is the correct way to handle this across multiple nodes?

      I am using the Adafruit NeoPixel Library for controlling the LED.

      thanks in advance
      Mike

      posted in Atom
      X
      XXL-Wing