ldeluca
About
- Username
- ldeluca
- Joined
- Visits
- 33
- Last Active
- Roles
- Member
Comments
-
I'm also seeing battery challenges. I tried to present this at a conference and it didn't last the 1/2 hour window. Granted I had a 3d case and I think part of my problem was that the charger wasn't pushed in far enough but even at home testing I …
-
@subtill you can check to see if your bluetooth picks up a signal for the Metawear.
-
pushed the change... it is now called setLED. Let me know if you have any other feedback.
-
@andrew, noted. I'll change the name to led
-
I think i got it working. wasn't enough to send the color information, also had to send the play command. HOW DO I RESET THE PATTERN. I want to use a single color not a pattern.
-
I tried this: data[0] = 0x02; // Color Register data[1] = 0x02; // always 2 on test data[2] = 0x00; // high intensity data[3] = 0x00; // low Intensity data[4] = 0xF4; // rise time data[5] = 0x01; // …
-
going through the java code to figure out the structure is painful. @eric, can you give us an example of changing the LED color?
-
Still waiting on a response to this one... var data = new Uint8Array(6); data[0] = 0x02; // module LED is at position 2 (but neopixel is at 6)? which to use? data[1] = 0x01; // pulse ops code data[2] = ///? how do we…