The trouble occurred when I was trying to add the twinkling lights in the background.
This comets work perfectly in this code without the background twinkling lights:
// This #include statement was automatically added by the Particle IDE.
#include <neopixel.h>
/* ======================= includes ================================= */
#include "Particle.h"
SYSTEM_MODE(AUTOMATIC);
#define PIXEL_COUNT 864
#define PIXEL_PIN D1
#define PIXEL_TYPE SK6812RGBW
Adafruit_NeoPixel strip(PIXEL_COUNT, PIXEL_PIN, PIXEL_TYPE);
struct ANIMATION_DATA {
uint8_t g;
uint8_t r;
uint8_t b;
int pos;
int len;
};
// circular buffer with 100 slots will overwrite unfinished animations when full
const int maxAnim = 100;
int animHead = 0;
int animTail = 0;
ANIMATION_DATA anim[maxAnim];
const uint8_t cometAnim[] = { 255, 200, 175, 160, 155, 150, 145, 140, 135, 130, 125, 120, 115, 110, 105, 100, 95, 90, 85, 80, 75, 70, 65, 60, 55, 50, 45, 40, 35, 30, 25, 20, 15, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
const uint8_t brightAnim[] = { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 245, 240, 240, 240, 240, 235, 230, 230, 230, 230, 225, 220, 220, 220, 220, 215, 210, 210, 210, 210, 205, 200, 200, 200, 200, 200, 195, 195, 190, 190, 190, 190, 190, 195, 180, 180, 180, 175, 170, 165, 160, 155, 150, 145, 140, 135, 130, 125, 120, 115, 110, 105, 100, 95, 90, 85, 80, 75, 70};
const int cometLen = sizeof(cometAnim) / sizeof(cometAnim[0]);
const uint32_t msRefresh = 0;
const int stepSpeed = 10;
void setup() {
memset(anim, 0, sizeof(anim));
strip.begin();
strip.show(); // Initialize all pixels to 'off'
Particle.function("led", addComet);
}
void loop() {
static uint32_t msDelay = 0;
if (millis() - msDelay < msRefresh) return;
msDelay = millis();
if (animHead != animTail) {
ANIMATION_DATA *a;
for (int i = animTail; i != animHead; ) {
a = &anim[i];
if (a->len) {
int px;
//Draw the Comet
for (int p = a->len-1; p >= 0; p--) {
px = constrain(a->pos - p, 0, strip.numPixels()-1);
strip.setColorDimmed(px, a->g, a->r, a->b, cometAnim[p], brightAnim[p]);
}
//Erase the pixels behind comet as it moves forward
if (a->pos - a->len >= 0) {
for (int k = 0; k < stepSpeed; k++) {
strip.setPixelColor(a->pos-k - a->len, 0);
}
}
//Make comet jump forward stepSpeed pixels at a time to make comet run seemingly faster
if (a->pos < PIXEL_COUNT) {
a->pos+=stepSpeed;
}
else {
a->len-=stepSpeed;
}
if (a->len <= 0) {
*a = { 0, 0, 0, 0, 0};
animTail++;
animTail %= maxAnim;
}
}
i++;
i %= maxAnim;
}
strip.show();
}
}
int addComet(String command) {
int retVal = -1;
if (command=="login") {
anim[animHead] = { 200, 200, 200, 0, cometLen }; // white
retVal = 0;
Particle.publish("login");
}
else if (command=="idea") {
anim[animHead] = { 255, 255, 0, 0, cometLen }; // yellow
retVal = 1;
Particle.publish("idea");
}
else if (command=="comment") {
anim[animHead] = { 0, 0, 255, 0, cometLen }; // blue
retVal = 2;
Particle.publish("comment");
}
else if (command=="outcome") {
anim[animHead] = { 255, 0, 0, 0, cometLen }; // green
retVal = 3;
Particle.publish("outcome");
}
else if (command=="project") {
anim[animHead] = { 255, 0, 0, 0, cometLen }; // green
retVal = 4;
Particle.publish("project");
}
else if (command=="status") {
anim[animHead] = { 100, 255, 0, 0, cometLen }; // orange
retVal = 5;
Particle.publish("status");
}
else if (command=="step") {
anim[animHead] = { 0, 75, 255, 0, cometLen }; // purple
retVal = 6;
Particle.publish("step");
}
else if (command=="vote") {
anim[animHead] = { 0, 255, 0, 0, cometLen }; // red
retVal = 7;
Particle.publish("vote");
}
else if (command=="view") {
anim[animHead] = { 105, 255, 200, 0, cometLen }; // pink
retVal = 7;
Particle.publish("view");
}
animHead++;
animHead %= maxAnim;
return retVal;
}
However, when I tried to add in the twinkling lights in the background, the comets stopped running concurrently. Can you see where I went wrong when I tried to implement the twinkling lights?
/* ======================= includes ================================= */
#include "Particle.h"
#include <neopixel.h>
SYSTEM_MODE(AUTOMATIC);
#define PIXEL_COUNT 864
#define PIXEL_PIN D1
#define PIXEL_TYPE SK6812RGBW
Adafruit_NeoPixel strip(PIXEL_COUNT, PIXEL_PIN, PIXEL_TYPE);
struct ANIMATION_DATA {
uint8_t g;
uint8_t r;
uint8_t b;
int pos;
int len;
};
// circular buffer with 100 slots will overwrite unfinished animations when full
const int maxAnim = 100;
int animHead = 0;
int animTail = 0;
ANIMATION_DATA anim[maxAnim];
const uint8_t whiteAnim[] = { 255, 200, 175, 160, 155, 150, 145, 140, 135, 130, 125, 120, 115, 110, 105, 100, 95, 90, 85, 80, 75, 70, 65, 60, 55, 50, 45, 40, 35, 30, 25, 20, 15, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
const uint8_t brightAnim[] = { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 245, 240, 240, 240, 240, 235, 230, 230, 230, 230, 225, 220, 220, 220, 220, 215, 210, 210, 210, 210, 205, 200, 200, 200, 200, 200, 195, 195, 190, 190, 190, 190, 190, 195, 180, 180, 180, 175, 170, 165, 160, 155, 150, 145, 140, 135, 130, 125, 120, 115, 110, 105, 100, 95, 90, 85, 80, 75, 70};
const int cometLen = sizeof(whiteAnim) / sizeof(whiteAnim[0]);
const uint32_t msRefresh = 0;
const int stepSpeed = 10;
static int animationStep = 0;
static bool PixelState = false;
static int Pixel;
void setup() {
memset(anim, 0, sizeof(anim));
strip.begin();
strip.show(); // Initialize all pixels to 'off'
Particle.function("led", addComet);
//strip.setBrightness(30);
Serial.begin(9600);
}
void loop() {
static uint32_t msDelay = 0;
if (millis() - msDelay < msRefresh) return;
msDelay = millis();
if (PixelState == false) {
Pixel = random(PIXEL_COUNT);
strip.setPixelColor(Pixel,random(255), random(255), random(255), 100);
strip.show();
PixelState = true;
} else {
strip.setPixelColor(Pixel,0,0,0,0);
strip.show();
PixelState = false;
}
//if (animHead != animTail)
{
ANIMATION_DATA *a;
animationStep = animTail;
{
/*Serial.println("animationStep");
Serial.println(animationStep);
Serial.println("animTail");
Serial.println(animTail);
Serial.println("animHead");
Serial.println(animHead);*/
a = &anim[animationStep];
Serial.println("animationStep");
Serial.println(animationStep);
//if (a->len)
{
int px;
//Draw the Comet
for (int p = a->len-1; p >= 0; p--) {
px = constrain(a->pos - p, 0, PIXEL_COUNT-1);
strip.setColorDimmed(px, a->g, a->r, a->b, whiteAnim[p], brightAnim[p]);
}
//Erase the pixels behind comet as it moves forward
if (a->pos - a->len >= 0) {
for (int k = 0; k < stepSpeed; k++) {
strip.setPixelColor(a->pos-k - a->len, 0);
}
}
//Make comet jump forward stepSpeed pixels at a time to make comet run seemingly faster
if (a->pos < PIXEL_COUNT+stepSpeed) {
a->pos+=stepSpeed;
}
else {
a->len-=stepSpeed;
}
if (a->len <= 0) {
*a = { 0, 0, 0, 0, 0};
animTail++;
animTail %= maxAnim;
}
}
animationStep++;
animationStep %= maxAnim;
}
strip.show();
}
}
int addComet(String command) {
int retVal = -1;
if (command=="login") {
anim[animHead] = { 200, 200, 200, 0, cometLen }; // white
retVal = 0;
Particle.publish("login");
}
else if (command=="idea") {
anim[animHead] = { 255, 255, 0, 0, cometLen }; // yellow
retVal = 1;
Particle.publish("idea");
}
else if (command=="comment") {
anim[animHead] = { 0, 0, 255, 0, cometLen }; // blue
retVal = 2;
Particle.publish("comment");
}
else if (command=="outcome") {
anim[animHead] = { 255, 0, 0, 0, cometLen }; // green
retVal = 3;
Particle.publish("outcome");
}
else if (command=="project") {
anim[animHead] = { 255, 0, 0, 0, cometLen }; // green
retVal = 4;
Particle.publish("project");
}
else if (command=="status") {
anim[animHead] = { 100, 255, 0, 0, cometLen }; // orange
retVal = 5;
Particle.publish("status");
}
else if (command=="step") {
anim[animHead] = { 0, 75, 255, 0, cometLen }; // purple
retVal = 6;
Particle.publish("step");
}
else if (command=="vote") {
anim[animHead] = { 0, 255, 0, 0, cometLen }; // red
retVal = 7;
Particle.publish("vote");
}
else if (command=="view") {
anim[animHead] = { 105, 255, 200, 0, cometLen }; // pink
retVal = 7;
Particle.publish("view");
}
animHead++;
animHead %= maxAnim;
return retVal;
}