2017-02-27 16:51:18 +00:00
|
|
|
#include <Homie.h>
|
2016-12-18 21:17:09 +00:00
|
|
|
#include <Adafruit_NeoPixel.h>
|
2017-02-27 16:51:18 +00:00
|
|
|
#include <ArduinoOTA.h>
|
2017-02-28 21:57:30 +00:00
|
|
|
#include "NeoPatterns.h"
|
|
|
|
#include "font.h"
|
2016-12-18 21:17:09 +00:00
|
|
|
#ifdef __AVR__
|
2017-02-27 16:51:18 +00:00
|
|
|
#include <avr/power.h>
|
2016-12-18 21:17:09 +00:00
|
|
|
#endif
|
2016-12-18 20:15:32 +00:00
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
#define PIN D1 //data pin for ws2812 (pixelprojektor @ ctdo: PIN 2)
|
2016-12-22 23:05:38 +00:00
|
|
|
#define NUMPIXELS 64
|
|
|
|
|
2017-02-28 23:02:17 +00:00
|
|
|
void StripComplete() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NeoPatterns strip = NeoPatterns(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800, &StripComplete);
|
|
|
|
|
|
|
|
HomieNode homieNode("pixel", "commands");
|
|
|
|
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool onSetColor(const HomieRange& range, const String& value) {
|
|
|
|
if (!range.isRange || range.index < 0 || range.index > 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (range.index) {
|
|
|
|
case 0:
|
|
|
|
strip.SetColor1(value.toInt());
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
strip.SetColor2(value.toInt());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
homieNode.setProperty("color_" + String(range.index)).send(value);
|
2017-02-28 23:02:17 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool onSetPixel(const HomieRange& range, const String& value) {
|
|
|
|
if (!range.isRange) {
|
|
|
|
strip.None();
|
|
|
|
strip.ColorSet(value.toInt());
|
|
|
|
homieNode.setProperty("pixel").send(value);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (range.index < 0 || range.index > strip.numPixels() - 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
strip.None();
|
|
|
|
strip.setPixelColor(range.index, value.toInt());
|
|
|
|
strip.show();
|
|
|
|
homieNode.setProperty("pixel_" + String(range.index)).send(value);
|
2017-02-28 23:02:17 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool onSetBrightness(const HomieRange& range, const String& value) {
|
|
|
|
long brightness = value.toInt();
|
|
|
|
if (brightness < 0 || brightness > 255) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
strip.setBrightness(brightness);
|
|
|
|
strip.show();
|
|
|
|
homieNode.setProperty("brightness").send(value);
|
2017-02-28 23:02:17 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool onSetEffect(const HomieRange& range, const String& value) {
|
|
|
|
String effect = value;
|
|
|
|
effect.toLowerCase();
|
|
|
|
if (effect == "scanner") {
|
|
|
|
strip.Scanner(strip.Color(255, 0, 0));
|
|
|
|
}
|
|
|
|
else if (effect == "randomscanner") {
|
|
|
|
strip.Scanner(strip.Color(255, 0, 0), 40, true);
|
|
|
|
}
|
|
|
|
else if (effect == "larsonspiral") {
|
|
|
|
strip.Scanner(strip.Color(255, 0, 0), 40, true, true);
|
|
|
|
}
|
|
|
|
else if (effect == "rainbowcycle") {
|
|
|
|
strip.RainbowCycle(50);
|
|
|
|
}
|
|
|
|
else if (effect == "theaterchase") {
|
|
|
|
strip.TheaterChase(strip.Color(255, 0, 0), strip.Color(0, 0, 255), 100);
|
|
|
|
}
|
|
|
|
else if (effect == "fade") {
|
|
|
|
strip.Fade(strip.Color(255, 0, 0), strip.Color(0, 0, 255), 200, 100);
|
|
|
|
}
|
|
|
|
else if (effect == "randomfade") {
|
|
|
|
strip.RandomFade();
|
|
|
|
}
|
|
|
|
else if (effect == "smooth") { //example: smooth|[wheelspeed]|[smoothing]|[strength] wheelspeed=1-255, smoothing=0-100, strength=1-255
|
|
|
|
strip.Smooth(16, 80, 50, 40);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
strip.None();
|
|
|
|
}
|
|
|
|
homieNode.setProperty("effect").send(value);
|
2017-02-28 23:02:17 +00:00
|
|
|
}
|
2016-12-22 23:05:38 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool onSetClear(const HomieRange& range, const String& value) {
|
|
|
|
strip.None();
|
|
|
|
strip.clear();
|
|
|
|
strip.show();
|
|
|
|
homieNode.setProperty("clear").send(value);
|
2017-02-28 23:02:17 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool onSetLength(const HomieRange& range, const String& value) {
|
|
|
|
strip.None();
|
|
|
|
strip.clear();
|
|
|
|
strip.show();
|
|
|
|
int newLength = value.toInt();
|
|
|
|
if (newLength > 0) {
|
|
|
|
strip.updateLength(newLength);
|
|
|
|
}
|
|
|
|
homieNode.setProperty("length").send(value);
|
2017-02-28 23:02:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void loopHandler() {
|
2017-03-01 15:21:34 +00:00
|
|
|
strip.Update();
|
2017-02-28 23:02:17 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void setup() {
|
2017-03-01 15:21:34 +00:00
|
|
|
Serial.begin(115200);
|
|
|
|
|
|
|
|
Homie_setFirmware("pixelprojektor", "1.0.0");
|
|
|
|
Homie.setLoopFunction(loopHandler);
|
|
|
|
|
|
|
|
homieNode.advertiseRange("pixel", 0, NUMPIXELS - 1).settable(onSetPixel);
|
|
|
|
homieNode.advertiseRange("color", 0, 1).settable(onSetColor);
|
|
|
|
homieNode.advertise("brightness").settable(onSetBrightness);
|
|
|
|
homieNode.advertise("effect").settable(onSetEffect);
|
|
|
|
homieNode.advertise("clear").settable(onSetClear);
|
|
|
|
homieNode.advertise("length").settable(onSetLength);
|
|
|
|
|
|
|
|
strip.begin();
|
|
|
|
strip.clear();
|
|
|
|
strip.setBrightness(64);
|
|
|
|
strip.show();
|
|
|
|
|
|
|
|
Homie.setup();
|
|
|
|
|
|
|
|
ArduinoOTA.setHostname("pixelprojektor");
|
|
|
|
ArduinoOTA.onStart([]() {
|
|
|
|
strip.clear();
|
|
|
|
});
|
|
|
|
ArduinoOTA.onEnd([]() {
|
|
|
|
strip.clear();
|
|
|
|
});
|
|
|
|
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
|
|
|
|
strip.setPixelColor(progress / (total / NUMPIXELS), strip.Color(100, 0, 0));
|
|
|
|
strip.show();
|
|
|
|
});
|
|
|
|
ArduinoOTA.begin();
|
2017-02-28 23:02:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
2017-03-01 15:21:34 +00:00
|
|
|
Homie.loop();
|
|
|
|
ArduinoOTA.handle();
|
2017-02-28 23:02:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Diese Effekte müssen nach dem Umbau wieder vorhanden sein:
|
|
|
|
/*
|
|
|
|
case EFFECT_SMOOTH:
|
|
|
|
led_movingPoint();
|
|
|
|
led_smooth();
|
|
|
|
break;
|
|
|
|
case EFFECT_SPIRAL:
|
|
|
|
led_spiral();
|
|
|
|
break;
|
|
|
|
case EFFECT_RANDOMFADE:
|
|
|
|
led_randomfade();
|
|
|
|
break;
|
|
|
|
case EFFECT_CHASE:
|
|
|
|
led_chase();
|
|
|
|
break;
|
|
|
|
case EFFECT_RADAR:
|
|
|
|
led_radar();
|
|
|
|
break;
|
|
|
|
case EFFECT_LARSON:
|
|
|
|
led_larson();
|
|
|
|
break;
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/************ Old stuff ************/
|
|
|
|
/*
|
2017-03-01 15:21:34 +00:00
|
|
|
#define FPS 15
|
|
|
|
uint8_t effect = 0;
|
|
|
|
uint8_t movingPoint_x = 3;
|
|
|
|
uint8_t movingPoint_y = 3;
|
|
|
|
uint8_t wheelPos = 0;
|
|
|
|
uint8_t wheelPosSlow = 0; //for slower wheelPos increment than 1
|
|
|
|
int wheelSpeed = 16; //16=+1/frame
|
|
|
|
int smoothing = 80; //0 to 100. 100=no change (ultrasmooth), 0=no smoothing.
|
|
|
|
int strength = 50; //how much pixels to apply color to
|
|
|
|
#define EFFECT_NONE 0
|
|
|
|
#define EFFECT_SMOOTH 1
|
|
|
|
#define EFFECT_SPIRAL 2
|
|
|
|
#define EFFECT_RANDOMFADE 3
|
|
|
|
#define EFFECT_CHASE 4
|
|
|
|
#define EFFECT_RADAR 5
|
|
|
|
#define EFFECT_LARSON 6
|
|
|
|
int fadespeedmax = 5; //1 to 255
|
|
|
|
int iconCountStart = 0; //for percentage calculation
|
|
|
|
int iconCountdown = 0; //0=off
|
|
|
|
uint8_t iconchar = 0; //last displayed char
|
|
|
|
int32_t iconcolor = 0; //last icon color
|
|
|
|
|
|
|
|
uint16_t Index; // current step within the pattern
|
|
|
|
// int Index = 0; // Step for Effect (e.g. chase)
|
|
|
|
// int state = 0; // Direction for Larson Scanner (spiral)
|
|
|
|
direction Direction; // direction to run the pattern
|
|
|
|
uint8_t pixelR[NUMPIXELS];
|
|
|
|
uint8_t pixelG[NUMPIXELS];
|
|
|
|
uint8_t pixelB[NUMPIXELS];
|
|
|
|
//write to buffer, flip with showBuffer()
|
|
|
|
uint8_t pixelR_buffer[NUMPIXELS];
|
|
|
|
uint8_t pixelG_buffer[NUMPIXELS];
|
|
|
|
uint8_t pixelB_buffer[NUMPIXELS];
|
|
|
|
|
|
|
|
long lastMillis = 0;
|
|
|
|
long fpsdelay = 1000 / FPS;
|
|
|
|
|
|
|
|
|
|
|
|
int xyToPos(int x, int y) { //convert x y pixel position to matrix position
|
2017-02-27 16:51:18 +00:00
|
|
|
if (y % 2 == 0) {
|
|
|
|
return (y * 8 + x);
|
|
|
|
} else {
|
|
|
|
return (y * 8 + (7 - x));
|
|
|
|
}
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
int numToPos(int num) { //convert pixel number to actual 8x8 matrix position
|
2017-02-27 16:51:18 +00:00
|
|
|
int x = num % 8;
|
|
|
|
int y = num / 8;
|
|
|
|
return xyToPos(x, y);
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 22:37:20 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
int numToSpiralPos(int num) { // convert pixel number to actual 8x8 matrix position in a spiral
|
2017-02-28 23:02:17 +00:00
|
|
|
int edge = (int)sqrt(NUMPIXELS);
|
|
|
|
int findx = edge-1; // 7
|
2017-02-27 16:51:18 +00:00
|
|
|
int findy = 0;
|
2017-02-28 23:02:17 +00:00
|
|
|
int stepsize = edge-1; // initial value (0..7)
|
2017-02-27 16:51:18 +00:00
|
|
|
int stepnumber = 0; // each "step" should be used twice
|
|
|
|
int count = -1;
|
|
|
|
int dir = 1; // direction: 0 = incX, 1=incY, 2=decX, 3=decY
|
2017-02-28 23:02:17 +00:00
|
|
|
if (num < edge) {
|
2017-02-27 16:51:18 +00:00
|
|
|
return num; // trivial
|
|
|
|
}
|
2017-02-28 23:02:17 +00:00
|
|
|
for (int i = edge; i <= num; i++)
|
2017-02-27 16:51:18 +00:00
|
|
|
{
|
|
|
|
count++;
|
|
|
|
if (count == stepsize) {
|
|
|
|
count = 0;
|
|
|
|
// Change direction
|
|
|
|
dir++;
|
|
|
|
stepnumber++;
|
|
|
|
if (stepnumber == 2) {
|
|
|
|
stepsize -= 1;
|
|
|
|
stepnumber = 0;
|
|
|
|
}
|
|
|
|
if (dir == 4) {
|
|
|
|
dir = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch (dir) {
|
|
|
|
case 0:
|
|
|
|
findx++;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
findy++;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
findx--;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
findy--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return xyToPos(findx, findy);
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 22:37:20 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
uint32_t wheel(byte WheelPos) {
|
2016-12-18 22:37:20 +00:00
|
|
|
WheelPos = 255 - WheelPos;
|
2017-02-27 16:51:18 +00:00
|
|
|
if (WheelPos < 85) {
|
2016-12-18 22:37:20 +00:00
|
|
|
return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
|
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
if (WheelPos < 170) {
|
2016-12-18 22:37:20 +00:00
|
|
|
WheelPos -= 85;
|
|
|
|
return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
|
|
|
|
}
|
|
|
|
WheelPos -= 170;
|
|
|
|
return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 22:37:20 +00:00
|
|
|
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_fill(uint32_t c)
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
for (int i = 0; i < strip.numPixels(); i++) {
|
2016-12-18 22:37:20 +00:00
|
|
|
strip.setPixelColor(i, c);
|
2016-12-18 21:17:09 +00:00
|
|
|
}
|
|
|
|
strip.show();
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 20:15:32 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_random()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
for (int i = 0; i < strip.numPixels(); i++) {
|
|
|
|
strip.setPixelColor(i, wheel(random(0, 255)));
|
2016-12-18 22:37:20 +00:00
|
|
|
}
|
|
|
|
strip.show();
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 21:17:09 +00:00
|
|
|
|
2016-12-22 23:05:38 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void showBuffer()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
for (int i = 0; i < strip.numPixels(); i++) {
|
|
|
|
pixelR[i] = pixelR_buffer[i];
|
|
|
|
pixelG[i] = pixelG_buffer[i];
|
|
|
|
pixelB[i] = pixelB_buffer[i];
|
2016-12-22 23:05:38 +00:00
|
|
|
strip.setPixelColor(i, pixelR[i], pixelG[i], pixelB[i]);
|
|
|
|
}
|
|
|
|
strip.show();
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-22 23:05:38 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
uint8_t getAverage(uint8_t array[NUMPIXELS], uint8_t i, int x, int y)
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
uint16_t sum = 0;
|
|
|
|
uint8_t count = 0;
|
|
|
|
if (i >= 8) { //up
|
|
|
|
sum += array[i - 8];
|
2016-12-22 23:05:38 +00:00
|
|
|
count++;
|
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
if (i < (64 - 8)) { //down
|
|
|
|
sum += array[i + 8];
|
2016-12-22 23:05:38 +00:00
|
|
|
count++;
|
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
if (i >= 1) { //left
|
|
|
|
sum += array[i - 1];
|
2016-12-22 23:05:38 +00:00
|
|
|
count++;
|
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
if (i < (64 - 1)) { //right
|
|
|
|
sum += array[i + 1];
|
2016-12-22 23:05:38 +00:00
|
|
|
count++;
|
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
return sum / count;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-22 23:05:38 +00:00
|
|
|
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_smooth()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
for (int i = 0; i < strip.numPixels(); i++) {
|
2016-12-23 00:43:06 +00:00
|
|
|
//uint8_t avgbrightness=pixelR_buffer[i]/3+pixelG_buffer[i]/3+pixelB_buffer[i]/3;
|
2017-02-27 16:51:18 +00:00
|
|
|
pixelR_buffer[i] = (smoothing / 100.0) * pixelR[i] + (1.0 - (smoothing / 100.0)) * getAverage(pixelR, i, 0, 0);
|
|
|
|
pixelG_buffer[i] = (smoothing / 100.0) * pixelG[i] + (1.0 - (smoothing / 100.0)) * getAverage(pixelG, i, 0, 0);
|
|
|
|
pixelB_buffer[i] = (smoothing / 100.0) * pixelB[i] + (1.0 - (smoothing / 100.0)) * getAverage(pixelB, i, 0, 0);
|
2016-12-22 23:05:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
showBuffer();
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-22 23:05:38 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_movingPoint()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
uint32_t c = wheel(wheelPos);
|
|
|
|
wheelPosSlow += wheelSpeed;
|
|
|
|
wheelPos = (wheelPos + (wheelPosSlow / 10) ) % 255;
|
|
|
|
wheelPosSlow = wheelPosSlow % 16;
|
|
|
|
|
2016-12-22 23:05:38 +00:00
|
|
|
uint8_t r = (uint8_t)(c >> 16);
|
|
|
|
uint8_t g = (uint8_t)(c >> 8);
|
|
|
|
uint8_t b = (uint8_t)c;
|
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
movingPoint_x = movingPoint_x + 8 + random(-random(0, 1 + 1), random(0, 1 + 1) + 1);
|
|
|
|
movingPoint_y = movingPoint_y + 8 + random(-random(0, 1 + 1), random(0, 1 + 1) + 1);
|
|
|
|
if (movingPoint_x < 8) {
|
|
|
|
movingPoint_x = 8 - movingPoint_x;
|
|
|
|
} else if (movingPoint_x >= 16) {
|
|
|
|
movingPoint_x = 22 - movingPoint_x;
|
|
|
|
} else {
|
|
|
|
movingPoint_x -= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (movingPoint_y < 8) {
|
|
|
|
movingPoint_y = 8 - movingPoint_y;
|
|
|
|
} else if (movingPoint_y >= 16) {
|
|
|
|
movingPoint_y = 22 - movingPoint_y;
|
|
|
|
} else {
|
|
|
|
movingPoint_y -= 8;
|
|
|
|
}
|
|
|
|
uint8_t startx = movingPoint_x;
|
|
|
|
uint8_t starty = movingPoint_y;
|
|
|
|
|
|
|
|
for (int i = 0; i < strength; i++) {
|
|
|
|
|
|
|
|
movingPoint_x = startx + 8 + random(-random(0, 2 + 1), random(0, 2 + 1) + 1);
|
|
|
|
movingPoint_y = starty + 8 + random(-random(0, 2 + 1), random(0, 2 + 1) + 1);
|
|
|
|
|
|
|
|
if (movingPoint_x < 8) {
|
|
|
|
movingPoint_x = 8 - movingPoint_x;
|
|
|
|
} else if (movingPoint_x >= 16) {
|
|
|
|
movingPoint_x = 22 - movingPoint_x;
|
|
|
|
} else {
|
|
|
|
movingPoint_x -= 8;
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
if (movingPoint_y < 8) {
|
|
|
|
movingPoint_y = 8 - movingPoint_y;
|
|
|
|
} else if (movingPoint_y >= 16) {
|
|
|
|
movingPoint_y = 22 - movingPoint_y;
|
|
|
|
} else {
|
|
|
|
movingPoint_y -= 8;
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
if (pixelR[xyToPos(movingPoint_x, movingPoint_y)] < r) {
|
|
|
|
pixelR[xyToPos(movingPoint_x, movingPoint_y)]++;
|
|
|
|
} else if (pixelR[xyToPos(movingPoint_x, movingPoint_y)] > r) {
|
|
|
|
pixelR[xyToPos(movingPoint_x, movingPoint_y)]--;
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
if (pixelG[xyToPos(movingPoint_x, movingPoint_y)] < g) {
|
|
|
|
pixelG[xyToPos(movingPoint_x, movingPoint_y)]++;
|
|
|
|
} else if (pixelG[xyToPos(movingPoint_x, movingPoint_y)] > g) {
|
|
|
|
pixelG[xyToPos(movingPoint_x, movingPoint_y)]--;
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
if (pixelB[xyToPos(movingPoint_x, movingPoint_y)] < b) {
|
|
|
|
pixelB[xyToPos(movingPoint_x, movingPoint_y)]++;
|
|
|
|
} else if (pixelB[xyToPos(movingPoint_x, movingPoint_y)] > b) {
|
|
|
|
pixelB[xyToPos(movingPoint_x, movingPoint_y)]--;
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
|
2016-12-22 23:05:38 +00:00
|
|
|
//pixelR[xyToPos(movingPoint_x,movingPoint_y)]=0.5*pixelR[xyToPos(movingPoint_x,movingPoint_y)]+0.5*r;
|
|
|
|
//pixelG[xyToPos(movingPoint_x,movingPoint_y)]=0.5*pixelG[xyToPos(movingPoint_x,movingPoint_y)]+0.5*g;
|
|
|
|
//pixelB[xyToPos(movingPoint_x,movingPoint_y)]=0.5*pixelB[xyToPos(movingPoint_x,movingPoint_y)]+0.5*b;
|
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
movingPoint_x = startx;
|
|
|
|
movingPoint_y = starty;
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
|
|
|
void bufferClear()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
for (int i = 0; i < strip.numPixels(); i++) {
|
|
|
|
pixelR_buffer[i] = 0;
|
|
|
|
pixelG_buffer[i] = 0;
|
|
|
|
pixelB_buffer[i] = 0;
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-22 23:05:38 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_chase()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
Index += 1;
|
|
|
|
if (Index > 255) {
|
|
|
|
Index = 1;
|
|
|
|
}
|
|
|
|
// for (int j=0; j < 256; j++) { // cycle all 256 colors in the wheel
|
|
|
|
for (int q = 0; q < 3; q++) {
|
|
|
|
for (uint16_t i = 0; i < strip.numPixels(); i = i + 3) {
|
|
|
|
strip.setPixelColor(i + q, wheel( (i + Index) % 255)); //turn every third pixel on
|
|
|
|
}
|
|
|
|
strip.show();
|
|
|
|
|
|
|
|
delay(49);
|
|
|
|
|
|
|
|
for (uint16_t i = 0; i < strip.numPixels(); i = i + 3) {
|
|
|
|
strip.setPixelColor(i + q, 0); //turn every third pixel off
|
|
|
|
}
|
|
|
|
}
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_radar()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
// "Sweep" in cirles...
|
|
|
|
// line(0,0,950*cos(radians(iAngle)),-950*sin(radians(iAngle)));
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
// Calculate 50% dimmed version of a color (used by led_larson())
|
|
|
|
uint32_t DimColor(uint32_t color)
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
// Shift R, G and B components one bit to the right
|
|
|
|
uint32_t Dimcolor = strip.Color(Red(color) >> 1, Green(color) >> 1, Blue(color) >> 1);
|
|
|
|
return Dimcolor;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
// Returns the Red component of a 32-bit color
|
|
|
|
uint8_t Red(uint32_t color)
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
return (color >> 16) & 0xFF;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
// Returns the Green component of a 32-bit color
|
|
|
|
uint8_t Green(uint32_t color)
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
return (color >> 8) & 0xFF;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
// Returns the Blue component of a 32-bit color
|
|
|
|
uint8_t Blue(uint32_t color)
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
return color & 0xFF;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void Increment()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
if (Direction == FORWARD)
|
|
|
|
{
|
|
|
|
Index++;
|
|
|
|
if (Index >= (strip.numPixels() - 1) * 2)
|
|
|
|
{
|
|
|
|
Index = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // Direction == REVERSE
|
|
|
|
{
|
|
|
|
--Index;
|
|
|
|
if (Index <= 0)
|
|
|
|
{
|
|
|
|
Index = (strip.numPixels() - 1) * 2 - 1;
|
|
|
|
}
|
|
|
|
}
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_larson()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
int EyeSize = 5;
|
|
|
|
uint32_t rgb[3] = {0};
|
2016-12-22 23:05:38 +00:00
|
|
|
wheelPos++;
|
2017-02-27 16:51:18 +00:00
|
|
|
if (wheelPos >= 256) {
|
|
|
|
wheelPos = 0;
|
|
|
|
}
|
|
|
|
int Color1 = wheel(wheelPos);
|
|
|
|
|
|
|
|
for (int i = 0; i < strip.numPixels(); i++)
|
|
|
|
{
|
|
|
|
int realpos = numToSpiralPos(i);
|
|
|
|
if (i == Index) // Scan Pixel to the right
|
|
|
|
{
|
|
|
|
strip.setPixelColor(realpos, Color1);
|
|
|
|
}
|
|
|
|
else if (i == ((strip.numPixels() - 1) * 2) - Index) // Scan Pixel to the left
|
|
|
|
{
|
|
|
|
strip.setPixelColor(realpos, Color1);
|
|
|
|
}
|
|
|
|
else // Fading tail
|
|
|
|
{
|
|
|
|
strip.setPixelColor(realpos, DimColor(strip.getPixelColor(realpos)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strip.show();
|
|
|
|
Increment();
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-23 00:43:06 +00:00
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_spiral()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
int every = 4;
|
|
|
|
wheelPos++;
|
|
|
|
int qp = Index % every;
|
|
|
|
Index++;
|
2017-02-28 23:02:17 +00:00
|
|
|
if (Index >= strip.numPixels() - 1) {
|
2017-02-27 16:51:18 +00:00
|
|
|
Index = 0;
|
|
|
|
}
|
|
|
|
int q = Index % every;
|
|
|
|
for (uint16_t i = 0; i < strip.numPixels(); i = i + every) {
|
|
|
|
strip.setPixelColor(numToSpiralPos(i + q), wheel( (i + Index * 4) % 255)); //turn every "every" pixel on
|
|
|
|
}
|
|
|
|
for (uint16_t i = 0; i < strip.numPixels(); i = i + every) {
|
|
|
|
strip.setPixelColor(numToSpiralPos(i + qp), 0); //turn every "every" pixel off
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
|
|
|
strip.show();
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-22 23:05:38 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_randomfade()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
for (int i = 0; i < strip.numPixels(); i++) {
|
|
|
|
pixelR_buffer[i] += random(0, random(0, fadespeedmax + 1) + 1); //use buffer red channel for color wheel
|
|
|
|
strip.setPixelColor(i, wheel(pixelR_buffer[i]));
|
2016-12-23 00:43:06 +00:00
|
|
|
}
|
|
|
|
strip.show();
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-08 02:00:14 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void led_icon(uint8_t fontchar, uint32_t iconcolor)
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
for (int i = 0; i < strip.numPixels(); i++) {
|
|
|
|
uint64_t mask = 1LL << (uint64_t)i;
|
|
|
|
|
|
|
|
if ( (font[fontchar]&mask) == 0) {
|
|
|
|
strip.setPixelColor(numToPos(i), strip.Color(0, 0, 0)); //bit is 0 at pos i
|
|
|
|
} else {
|
|
|
|
|
|
|
|
float _brightness = 1.0 - ( (iconCountStart - iconCountdown) * 1.0 / iconCountStart );
|
|
|
|
uint8_t _r = (uint8_t)(iconcolor >> 16);
|
|
|
|
uint8_t _g = (uint8_t)(iconcolor >> 8);
|
|
|
|
uint8_t _b = (uint8_t)iconcolor;
|
|
|
|
strip.setPixelColor(numToPos(i), strip.Color(_r * _brightness, _g * _brightness, _b * _brightness)); //bit is 1 at pos i
|
2017-02-08 02:00:14 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
}
|
|
|
|
strip.show();
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-08 02:00:14 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void set_randomBuffer()
|
|
|
|
{
|
2017-02-27 16:51:18 +00:00
|
|
|
for (int i = 0; i < strip.numPixels(); i++) {
|
|
|
|
uint32_t c = wheel(random(0, 256));
|
|
|
|
pixelR_buffer[i] = (uint8_t)(c >> 16);
|
|
|
|
pixelG_buffer[i] = (uint8_t)(c >> 8);
|
|
|
|
pixelB_buffer[i] = (uint8_t)c;
|
2016-12-23 00:43:06 +00:00
|
|
|
}
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-23 00:43:06 +00:00
|
|
|
|
2016-12-22 23:05:38 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
uint32_t parseColor(String value) {
|
2017-02-27 16:51:18 +00:00
|
|
|
if (value.charAt(0) == '#') { //solid fill
|
|
|
|
String color = value.substring(1);
|
2016-12-18 21:17:09 +00:00
|
|
|
int number = (int) strtol( &color[0], NULL, 16);
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2016-12-18 21:17:09 +00:00
|
|
|
|
|
|
|
// Split them up into r, g, b values
|
|
|
|
int r = number >> 16;
|
|
|
|
int g = number >> 8 & 0xFF;
|
|
|
|
int b = number & 0xFF;
|
|
|
|
Homie.getLogger() << "r=" << r << " g=" << g << " b=" << b << endl;
|
|
|
|
//Serial.print("r=");Serial.print(r);
|
|
|
|
//Serial.print(" g=");Serial.print(g);
|
|
|
|
//Serial.print(" b=");Serial.println(b);
|
2016-12-18 22:37:20 +00:00
|
|
|
return strip.Color(r, g, b);
|
2016-12-18 21:17:09 +00:00
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
}
|
2016-12-18 22:37:20 +00:00
|
|
|
return 0;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 22:37:20 +00:00
|
|
|
|
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool effectHandler(const HomieRange& range, const String& value) {
|
2016-12-18 22:37:20 +00:00
|
|
|
Homie.getLogger() << "-> " << value << endl;
|
|
|
|
int sep = value.indexOf("|");
|
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
String command = value.substring(0, sep);
|
|
|
|
String parameters = value.substring(sep + 1);
|
2016-12-18 22:37:20 +00:00
|
|
|
Homie.getLogger() << "command=" << command << " parameters=" << parameters << endl;
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
if (command.equals("fill")) {
|
|
|
|
effect = EFFECT_NONE;
|
2016-12-18 22:37:20 +00:00
|
|
|
led_fill(parseColor(parameters));
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("off")) {
|
|
|
|
effect = EFFECT_NONE;
|
2016-12-18 22:37:20 +00:00
|
|
|
led_fill(strip.Color(0, 0, 0));
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("random")) {
|
|
|
|
effect = EFFECT_NONE;
|
2016-12-18 22:37:20 +00:00
|
|
|
led_random();
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("set")) { //example: set|37#ff003a
|
|
|
|
effect = EFFECT_NONE;
|
|
|
|
int x = parameters.substring(0, 1).toInt();
|
|
|
|
int y = parameters.substring(1, 2).toInt();
|
|
|
|
String cstr = parameters.substring(2, 9);
|
|
|
|
strip.setPixelColor(xyToPos(x, y), parseColor(cstr));
|
2016-12-18 22:37:20 +00:00
|
|
|
strip.show();
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("smooth")) { //example: smooth|[wheelspeed]|[smoothing]|[strength] wheelspeed=1-255, smoothing=0-100, strength=1-255
|
2016-12-23 00:43:06 +00:00
|
|
|
int sepparam = parameters.indexOf("|");
|
2017-02-27 16:51:18 +00:00
|
|
|
int p1 = parameters.substring(0, sepparam).toInt();
|
|
|
|
String parameters_part2 = parameters.substring(sepparam + 1);
|
2016-12-23 00:43:06 +00:00
|
|
|
sepparam = parameters_part2.indexOf("|");
|
2017-02-27 16:51:18 +00:00
|
|
|
int p2 = parameters_part2.substring(0, sepparam).toInt();
|
|
|
|
int p3 = parameters_part2.substring(sepparam + 1).toInt();
|
|
|
|
wheelSpeed = 16; //default, speed=+1 /frame
|
|
|
|
if (p1 > 0) {
|
|
|
|
wheelSpeed = p1;
|
2016-12-23 00:43:06 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
smoothing = 80;
|
|
|
|
if (p2 > 0) {
|
|
|
|
smoothing = p2;
|
2016-12-23 00:43:06 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
strength = 50;
|
|
|
|
if (p3 > 0) {
|
|
|
|
strength = p3;
|
2016-12-23 00:43:06 +00:00
|
|
|
}
|
|
|
|
Homie.getLogger() << "-- p1=" << p1 << " p2=" << p2 << " p3=" << p3 << endl;
|
2017-02-27 16:51:18 +00:00
|
|
|
effect = EFFECT_SMOOTH;
|
2016-12-22 23:05:38 +00:00
|
|
|
bufferClear();
|
|
|
|
showBuffer();
|
|
|
|
strip.show();
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("spiral")) {
|
|
|
|
effect = EFFECT_SPIRAL;
|
|
|
|
Index = 0;
|
2016-12-22 23:05:38 +00:00
|
|
|
bufferClear();
|
|
|
|
showBuffer();
|
|
|
|
strip.show();
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("clearbuffer")) {
|
2016-12-23 00:43:06 +00:00
|
|
|
bufferClear();
|
|
|
|
showBuffer();
|
|
|
|
strip.show();
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("randomfade")) { //example: randomfade|5
|
2016-12-23 00:43:06 +00:00
|
|
|
int sepparam = parameters.indexOf("|");
|
2017-02-27 16:51:18 +00:00
|
|
|
int p1 = parameters.substring(0, sepparam).toInt();
|
|
|
|
fadespeedmax = 5;
|
|
|
|
if (p1 > 0) {
|
|
|
|
fadespeedmax = p1;
|
2016-12-23 00:43:06 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
effect = EFFECT_RANDOMFADE;
|
2016-12-23 00:43:06 +00:00
|
|
|
set_randomBuffer(); //initialize random
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("randombuffer")) {
|
2016-12-23 00:43:06 +00:00
|
|
|
set_randomBuffer(); //set random
|
|
|
|
showBuffer();
|
2017-02-27 16:51:18 +00:00
|
|
|
} else if (command.equals("chase")) {
|
|
|
|
effect = EFFECT_CHASE;
|
|
|
|
bufferClear();
|
|
|
|
showBuffer();
|
|
|
|
strip.show();
|
|
|
|
} else if (command.equals("radar")) {
|
|
|
|
effect = EFFECT_RADAR;
|
|
|
|
Index = 0;
|
|
|
|
bufferClear();
|
|
|
|
showBuffer();
|
|
|
|
strip.show();
|
|
|
|
} else if (command.equals("larson")) {
|
|
|
|
effect = EFFECT_LARSON;
|
|
|
|
Index = 0;
|
|
|
|
bufferClear();
|
|
|
|
showBuffer();
|
|
|
|
strip.show();
|
2016-12-18 20:15:32 +00:00
|
|
|
}
|
|
|
|
return true;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 20:15:32 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool pixelsHandler(const HomieRange& range, const String& value) {
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
String remaining = value;
|
|
|
|
int i = 0;
|
|
|
|
effect = EFFECT_NONE;
|
|
|
|
do {
|
|
|
|
String current = remaining.substring(0, 7);
|
2016-12-18 22:37:20 +00:00
|
|
|
Homie.getLogger() << i << ":" << current << endl;
|
2017-02-27 16:51:18 +00:00
|
|
|
uint32_t currentcolor = parseColor(current);
|
2016-12-18 22:37:20 +00:00
|
|
|
|
|
|
|
strip.setPixelColor(i, currentcolor);
|
|
|
|
i++;
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
remaining = remaining.substring(7);
|
|
|
|
|
|
|
|
} while (remaining.length() > 2 && (i < strip.numPixels()));
|
2016-12-18 22:37:20 +00:00
|
|
|
Homie.getLogger() << " filling rest with black" << endl;
|
2017-02-27 16:51:18 +00:00
|
|
|
while (i < strip.numPixels()) {
|
|
|
|
strip.setPixelColor(numToPos(i), strip.Color(0, 0, 0));
|
|
|
|
i++;
|
2016-12-18 20:15:32 +00:00
|
|
|
}
|
2016-12-18 22:37:20 +00:00
|
|
|
|
|
|
|
strip.show();
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2016-12-18 20:15:32 +00:00
|
|
|
return true;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 20:15:32 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
bool iconHandler(const HomieRange& range, const String& value) {
|
2017-02-27 16:51:18 +00:00
|
|
|
String _iconname = value;
|
|
|
|
iconcolor = strip.Color(255, 255, 255); //default color
|
|
|
|
if (value[0] == '#') { //color given
|
|
|
|
iconcolor = parseColor(value.substring(0, 6));
|
|
|
|
_iconname = value.substring(7); // example: #ff00dc|A (pipe will be ignored)
|
2017-02-08 02:00:14 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
iconCountStart = FPS * 2;
|
|
|
|
iconCountdown = iconCountStart;
|
|
|
|
if (_iconname.length() == 1) { //only one character
|
|
|
|
iconchar = value[0];
|
|
|
|
} else {
|
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
strip.show();
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
return true;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2017-02-08 02:00:14 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void setup() {
|
2016-12-18 20:15:32 +00:00
|
|
|
Serial.begin(115200);
|
|
|
|
Serial << endl << endl;
|
2017-01-04 21:06:29 +00:00
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
Serial << "Begin strip" << endl;
|
2017-01-04 21:06:29 +00:00
|
|
|
strip.begin();
|
|
|
|
strip.show(); // Initialize all pixels to 'off'
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-01-04 21:06:29 +00:00
|
|
|
|
|
|
|
led_fill(strip.Color(100, 0, 0));
|
2017-02-08 02:00:14 +00:00
|
|
|
//delay(500);
|
2017-02-27 16:51:18 +00:00
|
|
|
|
|
|
|
|
2017-01-04 21:06:29 +00:00
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
Serial << "Homie_setFirmware" << endl;
|
2016-12-18 20:15:32 +00:00
|
|
|
Homie_setFirmware("pixelprojektor", "1.0.0");
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
Serial << "Homie node advertise" << endl;
|
2016-12-18 21:17:09 +00:00
|
|
|
homieNode.advertise("effect").settable(effectHandler);
|
|
|
|
homieNode.advertise("pixels").settable(pixelsHandler);
|
2017-02-08 02:00:14 +00:00
|
|
|
homieNode.advertise("icon").settable(iconHandler);
|
2016-12-18 20:15:32 +00:00
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
led_fill(strip.Color(0, 0, 0));
|
2017-02-27 16:51:18 +00:00
|
|
|
strip.setPixelColor(0, strip.Color(100, 0, 0));
|
2017-01-04 21:06:29 +00:00
|
|
|
strip.show();
|
2016-12-18 21:17:09 +00:00
|
|
|
|
2017-02-08 02:00:14 +00:00
|
|
|
Serial << "homie setup" << endl;
|
2016-12-18 20:15:32 +00:00
|
|
|
Homie.setup();
|
2016-12-18 21:17:09 +00:00
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
// Hostname defaults to esp8266-[ChipID]
|
|
|
|
ArduinoOTA.setHostname("pixelprojektor");
|
|
|
|
|
|
|
|
// No authentication by default
|
|
|
|
// ArduinoOTA.setPassword((const char *)"ctdo2342");
|
|
|
|
|
|
|
|
ArduinoOTA.onStart([]() {
|
|
|
|
Serial.println("Start");
|
|
|
|
led_fill(strip.Color(0, 0, 0)); // Clear
|
|
|
|
});
|
|
|
|
ArduinoOTA.onEnd([]() {
|
|
|
|
Serial.println("\nEnd");
|
|
|
|
});
|
|
|
|
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
|
2017-02-28 23:02:17 +00:00
|
|
|
strip.setPixelColor(numToPos((progress / (total / strip.numPixels()))), strip.Color(100, 0, 0));
|
2017-02-27 16:51:18 +00:00
|
|
|
strip.show();
|
|
|
|
Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
|
|
|
|
});
|
|
|
|
ArduinoOTA.onError([](ota_error_t error) {
|
|
|
|
Serial.printf("Error[%u]: ", error);
|
|
|
|
if (error == OTA_AUTH_ERROR) Serial.println("Auth Failed");
|
|
|
|
else if (error == OTA_BEGIN_ERROR) Serial.println("Begin Failed");
|
|
|
|
else if (error == OTA_CONNECT_ERROR) Serial.println("Connect Failed");
|
|
|
|
else if (error == OTA_RECEIVE_ERROR) Serial.println("Receive Failed");
|
|
|
|
else if (error == OTA_END_ERROR) Serial.println("End Failed");
|
|
|
|
});
|
|
|
|
ArduinoOTA.begin();
|
|
|
|
|
|
|
|
effect = EFFECT_LARSON;
|
|
|
|
|
|
|
|
Serial << "Setup finished" << endl;
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 20:15:32 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
void loop() {
|
2016-12-18 20:15:32 +00:00
|
|
|
Homie.loop();
|
2017-02-27 16:51:18 +00:00
|
|
|
ArduinoOTA.handle();
|
2016-12-22 23:05:38 +00:00
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
long currentMillis = millis();
|
2017-02-08 02:00:14 +00:00
|
|
|
|
|
|
|
|
2017-02-27 16:51:18 +00:00
|
|
|
if (lastMillis + fpsdelay < currentMillis) {
|
|
|
|
if (iconCountdown > 0) { //icon effect active
|
2017-02-08 02:00:14 +00:00
|
|
|
iconCountdown--;
|
2017-02-27 16:51:18 +00:00
|
|
|
led_icon(iconchar, iconcolor);
|
|
|
|
} else {
|
|
|
|
switch (effect) {
|
2017-02-08 02:00:14 +00:00
|
|
|
case EFFECT_SMOOTH:
|
|
|
|
led_movingPoint();
|
|
|
|
led_smooth();
|
2017-02-27 16:51:18 +00:00
|
|
|
break;
|
2017-02-08 02:00:14 +00:00
|
|
|
case EFFECT_SPIRAL:
|
|
|
|
led_spiral();
|
2017-02-27 16:51:18 +00:00
|
|
|
break;
|
2017-02-08 02:00:14 +00:00
|
|
|
case EFFECT_RANDOMFADE:
|
|
|
|
led_randomfade();
|
2017-02-27 16:51:18 +00:00
|
|
|
break;
|
|
|
|
case EFFECT_CHASE:
|
|
|
|
led_chase();
|
|
|
|
break;
|
|
|
|
case EFFECT_RADAR:
|
|
|
|
led_radar();
|
|
|
|
break;
|
|
|
|
case EFFECT_LARSON:
|
|
|
|
led_larson();
|
|
|
|
break;
|
2017-02-08 02:00:14 +00:00
|
|
|
}
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
lastMillis = currentMillis;
|
2016-12-22 23:05:38 +00:00
|
|
|
}
|
2017-02-27 16:51:18 +00:00
|
|
|
|
2017-03-01 15:21:34 +00:00
|
|
|
}
|
2016-12-18 20:15:32 +00:00
|
|
|
|
2017-02-28 23:02:17 +00:00
|
|
|
*/
|