Initial commit

This commit is contained in:
starcalc 2018-04-08 13:48:58 +02:00
commit e00f8e53e8
8 changed files with 1941 additions and 0 deletions

265
ESP8266-RGB5m.ino Normal file
View File

@ -0,0 +1,265 @@
#include <Arduino.h>
#include <Homie.h>
#include <ArduinoOTA.h>
#include <Adafruit_NeoPixel.h>
#define NUMPIXELS 5 * 60 // 60 Pixel per meter, it is being used within NeoPatterns.h
#include "NeoPatterns.h"
#include <math.h>
#define PIN D4
#define PINLOW_RELAIS D2
NeoPatterns strip = NeoPatterns(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800, &StripComplete, &DebugOutput);
bool stopAfterCompletion;
HomieNode homieNode("strip", "strip");
void StripComplete() {
if (stopAfterCompletion)
{
strip.IconComplete();
}
return;
}
void DebugOutput(String value) {
homieNode.setProperty("DEBUG").send(value);
}
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);
}
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);
}
bool onSetBrightness(const HomieRange& range, const String& value) {
long brightness = value.toInt();
if (brightness < 0 || brightness > 255) {
return false;
}
if (brightness > 160) {
brightness = 160; // Künstliche Begrenzung
}
strip.setBrightness(brightness);
strip.show();
homieNode.setProperty("brightness").send(value);
}
bool onSetEffect(const HomieRange& range, const String& value) {
digitalWrite(PINLOW_RELAIS, LOW); // This relais: LOW = ON
stopAfterCompletion = false;
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), 4, 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" || effect == "chase") {
strip.TheaterChase(strip.Color(255, 0, 0), strip.Color(0, 0, 255), 50);
}
else if (effect == "bvb") {
strip.BVBChase(strip.Color(255, 185, 0), strip.Color(0, 0, 0), 50);
}
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 == "random") {
strip.Random();
}
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 if (effect == "plasma") {
strip.Plasma();
}
else if (effect == "fire") {
strip.Fire();
}
else if (effect == "fireworks") {
strip.Fireworks();
}
else if (effect == "drop") {
strip.Drop();
}
else if (effect == "scannerrandom") {
strip.ScannerRandom(strip.Color(255, 0, 0), 4, true);
}
else if (effect == "ring") {
strip.Rings();
} else {
// Test whether command with parameters was sent
int sep = value.indexOf("|");
String command = value.substring(0, sep);
String parameters = value.substring(sep + 1);
if (command.equals("fill")) {
strip.ColorSetParameters(parameters);
}
else if (command.equals("randomfade")) {
int sepparam = parameters.indexOf("|");
int p1 = parameters.substring(0, sepparam).toInt();
if (p1 <= 0) {
p1 = 5;
}
strip.RandomFadeSingle(p1);
}
else if (command.equals("randomscanner")) {
int sepparam = parameters.indexOf("|");
int p1 = parameters.substring(0, sepparam).toInt();
if (p1 <= 0) {
p1 = 5;
}
homieNode.setProperty("effect").send(String(p1));
strip.Scanner(strip.Color(255, 0, 0), p1, true);
}
else {
strip.None();
digitalWrite(PINLOW_RELAIS, HIGH); // This relais: HIGH = OFF
digitalWrite(PIN, LOW); // D4 ist auch gleichzeitig der LED-Pin, daher abschalten... (TODO: TEST: FIXME)
}
}
homieNode.setProperty("effect").send(value);
}
bool onSetIcon(const HomieRange& range, const String& value) {
stopAfterCompletion = true;
String _iconname = value;
if (value[0] == '#') { //color given
strip.Icon(value.substring(7)[0], value.substring(0, 6));
}
else {
strip.Icon(value[0]);
}
homieNode.setProperty("icon").send(value);
}
bool onSetClear(const HomieRange& range, const String& value) {
strip.None();
strip.clear();
strip.show();
homieNode.setProperty("clear").send(value);
}
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);
}
void loopHandler() {
strip.Update();
}
void setup() {
Serial.begin(115200);
pinMode(PINLOW_RELAIS, OUTPUT);
digitalWrite(PINLOW_RELAIS, HIGH); // This relais: HIGH = OFF
Homie_setFirmware("rgb5m", "1.0.4");
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);
homieNode.advertise("icon").settable(onSetIcon);
// Homie.disableLedFeedback();
// Homie.setResetTrigger(D0, LOW, 2000);
Homie.setup();
strip.begin();
strip.clear();
strip.setBrightness(160); // Künstliche Begrenzung, da nur 6A Netzteil
strip.show();
stopAfterCompletion = false; // Default
ArduinoOTA.setHostname("rgb5m");
ArduinoOTA.onStart([]() {
strip.None();
strip.clear();
strip.setBrightness(25);
strip.show();
});
ArduinoOTA.onEnd([]() {
strip.clear();
strip.show();
});
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
Serial.print(progress);
Serial.print(" ");
Serial.print(total);
Serial.print(" ");
Serial.print(NUMPIXELS * (float)progress / (float)total);
// strip.setPixelColor(total, strip.Color(255,0,0));
// strip.setPixelColor(progress / (total / NUMPIXELS), strip.Color(255, 0, 0));
for (int i = 0; i < NUMPIXELS; i++)
{
if (i > (NUMPIXELS * (float)progress / (float)total))
{
// Higher: Default to off
strip.setPixelColor(i, strip.Color(0, 0, 0));
}
else
{
// Lower/Same: Enable
strip.setPixelColor(i, strip.Color(255, 0, 0));
}
}
strip.show();
});
ArduinoOTA.begin();
}
void loop() {
Homie.loop();
ArduinoOTA.handle();
}

1177
NeoPatterns.cpp Normal file

File diff suppressed because it is too large Load Diff

182
NeoPatterns.h Normal file
View File

@ -0,0 +1,182 @@
#ifndef NEOPATTERNS_H
#define NEOPATTERNS_H
#include <Adafruit_NeoPixel.h>
#include "font.h"
#include <math.h>
#include <vector>
#include <algorithm> // std::remove
#include "Rocket.h"
#include "Particle.h"
// class Rocket;
// class Particle;
// Ideas
// Drop (Middle high, than to both sides diming out)
#define MAX_DROPS 10
#define MAX_RINGS 1
// Two or more chasers
// Chaser changing direction randomly
// Pattern types supported:
enum pattern { NONE, RAINBOW_CYCLE, THEATER_CHASE, COLOR_WIPE, SCANNER, FADE, RANDOM_FADE, SMOOTH, ICON, RANDOM_FADE_SINGLE, PLASMA, FILL, RANDOM, FIRE, FIREWORKS, DROP, RINGS, SCANNER_RANDOM, BVB };
// Patern directions supported:
enum direction { FORWARD, REVERSE };
class NeoPatterns : public Adafruit_NeoPixel
{
public:
NeoPatterns(uint16_t pixels, uint8_t pin, uint8_t type, void (*callback)(), void (*callbackDebug)(String));
void Update();
void Reverse();
void None(uint8_t interval = 40);
void RainbowCycle(uint8_t interval, direction dir = FORWARD);
void RainbowCycleUpdate();
void TheaterChase(uint32_t color1, uint32_t color2, uint8_t interval, direction dir = FORWARD);
void TheaterChaseUpdate();
void BVBChase(uint32_t color1, uint32_t color2, uint8_t interval, direction dir = FORWARD);
void BVBChaseUpdate();
void ColorWipe(uint32_t color, uint8_t interval, direction dir = FORWARD);
void ColorWipeUpdate();
void Scanner(uint32_t color1 = 16711680, uint8_t interval = 40, bool colorful = false, bool spiral = false);
void ScannerUpdate();
void ScannerRandom(uint32_t color1 = 16711680, uint8_t interval = 40, bool colorful = false, bool spiral = false);
void ScannerRandomUpdate();
void Fade(uint32_t color1, uint32_t color2, uint16_t steps, uint8_t interval, direction dir = FORWARD);
void FadeUpdate();
void RandomFade(uint8_t interval = 100);
void RandomFadeUpdate();
void RandomFadeSingle(uint8_t interval = 100, uint8_t speed = 5);
void RandomFadeSingleUpdate();
void Fire(uint8_t interval = 100);
void FireUpdate();
void Fireworks();
void FireworksUpdate();
void explosion(int pos, float rocketspeed);
void Drop(uint8_t interval = 100);
void DropUpdate();
void Rings(uint8_t interval = 100);
void RingsUpdate();
void RandomBuffer();
void Random();
void Smooth(uint8_t wheelSpeed = 16, uint8_t smoothing = 80, uint8_t strength = 50, uint8_t interval = 40);
void SmoothUpdate();
void Icon(uint8_t fontchar, String iconcolor = "#FFFFFF", uint8_t interval = 30);
void IconUpdate();
void IconComplete();
void Plasma(float phase = 0, float phaseIncrement = 0.03, float colorStretch = 0.3, uint8_t interval = 60); // 0.08 and 0.11
void PlasmaUpdate();
void SetColor1(uint32_t color);
void SetColor2(uint32_t color);
//Utilities
void ColorSet(uint32_t color);
void ColorSetParameters(String parameters);
uint8_t Red(uint32_t color);
uint8_t Green(uint32_t color);
uint8_t Blue(uint32_t color);
uint32_t Wheel(byte WheelPos);
uint32_t Wheel(byte WheelPos, float brightness);
uint8_t numToSpiralPos(int num);
uint8_t xyToPos(int x, int y);
uint8_t numToPos(int num);
uint8_t getAverage(uint8_t array[], uint8_t i, int x, int y);
uint32_t parseColor(String value);
#define EXPLOSION_SIZE_MIN 5
#define EXPLOSION_SIZE_MAX 10
// 60 LED Strip: 50, 100, 0.985 is a good choice (with Interval = 25)
// Start 0, with maximum speed (100), the rocket should explode at the LATEST at position 50 (of 60). (Which is 10 pixels before maximum)
// #define EXPLOSION_SPEED 0.25f
// #define ROCKET_SPEED_MIN 50
// ROCKET_SPEED_MAX should not be >100, as this would skip LEDs.
// #define ROCKET_SPEED_MAX 100
// #define ROCKET_SLOWDOWN 0.985f
#define ROCKET_LAUNCH_TIMEOUT_MIN 1000
#define ROCKET_LAUNCH_TIMEOUT_MAX 3000
uint32_t maxRocketID = 0;
uint32_t maxParticleID = 0;
uint32_t currentRocketMillis = 0;
uint32_t rocketTimeout;
float explosion_speed = 0.25f;
uint8_t rocket_speed_min = 50;
uint8_t rocket_speed_max = 100;
double rocket_slowdown = 0.985f;
private:
std::vector <Rocket> rocket_arr;
std::vector <Particle> particle_arr;
// Member Variables:
pattern ActivePattern; // which pattern is running
pattern SavedPattern;
direction Direction; // direction to run the pattern
direction SavedDirection;
unsigned long Interval; // milliseconds between updates
unsigned long SavedInterval;
unsigned long lastUpdate; // last update of position
uint32_t Color1, Color2; // What colors are in use
uint32_t SavedColor1;
uint16_t TotalSteps; // total number of steps in the pattern
uint16_t SavedTotalSteps;
uint16_t Index; // current step within the pattern
uint16_t SavedIndex;
uint8_t Every; // Turn every "Every" pixel in Color1/Color2
byte wPos;
bool colorful;
bool spiral;
uint8_t wPosSlow;
uint8_t WheelSpeed;
uint8_t Smoothing;
uint8_t Strength;
uint8_t movingPoint_x;
uint8_t movingPoint_y;
uint8_t *pixelR;
uint8_t *pixelG;
uint8_t *pixelB;
uint8_t *pixelR_buffer;
uint8_t *pixelG_buffer;
uint8_t *pixelB_buffer;
// Drops
uint8_t *drop;
uint8_t *dropBrightness;
// Rings
uint8_t *ring;
uint8_t *ringBrightness;
uint8_t *ringDistance;
uint8_t FontChar;
float PlasmaPhase;
float SavedPlasmaPhase;
float PlasmaPhaseIncrement;
float SavedPlasmaPhaseIncrement;
float PlasmaColorStretch;
float SavedPlasmaColorStretch;
uint32_t DimColor(uint32_t color);
void Increment();
void (*OnComplete)(); // Callback on completion of pattern
void (*OnDebugOutput)(String); // Callback on completion of pattern
// Convenient 2D point structure
struct Point {
float x;
float y;
};
};
#endif

48
Particle.cpp Normal file
View File

@ -0,0 +1,48 @@
#include "Particle.h"
#include "NeoPatterns.h"
Particle::Particle() // Particle::Particle(NeoPatterns * parent)
{
_pos = 0;
// _id = parent->maxParticleID;
// parent->maxParticleID++;
} //Default constructor.
Particle::Particle(NeoPatterns * parent, float pos, float speed, uint8_t hue, float brightness, float decay )
{
_id = parent->maxParticleID;
parent->maxParticleID++;
_pos = pos;
_speed = speed;
_hue = hue;
_brightness = brightness;
_decay = decay;
_parent = parent;
}
bool Particle::operator==(const Particle &p) const {
return (p._id == _id);
}
void Particle::update()
{
_pos += _speed;
_speed *= 0.96;
_brightness *= _decay;
if (_pos > _parent->numPixels()) {
_pos = 0;
}
_parent->setPixelColor((int)_pos, _parent->Wheel(_hue, _brightness));
}
float Particle::brightness()
{
return _brightness;
}

25
Particle.h Normal file
View File

@ -0,0 +1,25 @@
#ifndef PARTICLE_H
#define PARTICLE_H
#include <Adafruit_NeoPixel.h>
class NeoPatterns; // Forward declaration
class Particle
{
public:
Particle(NeoPatterns * parent, float pos, float speed, uint8_t hue, float brightness, float decay = 0.95);
Particle();
bool operator==(const Particle &p) const;
void update();
int _id;
float brightness();
private:
float _pos;
float _speed;
float _brightness;
float _decay;
uint8_t _hue;
NeoPatterns * _parent;
};
#endif

62
Rocket.cpp Normal file
View File

@ -0,0 +1,62 @@
#include "Rocket.h"
#include "NeoPatterns.h"
Rocket::Rocket()
{
// _id = maxRocketID;
// maxRocketID++;
_pos = 0;
_speed = 1;
_lastbright = 1;
}
Rocket::Rocket(NeoPatterns *parent, float pos, float rocketspeed, float rocket_slowdown)
{
_parent = parent;
_id = _parent->maxRocketID;
_parent->maxRocketID++;
_rocket_slowdown = rocket_slowdown;
_iteration = 0;
Serial.print("Rocket: ");
Serial.print(_id);
Serial.print(" ");
Serial.print(pos);
Serial.print(" ");
Serial.println(rocketspeed);
_pos = pos;
_speed = rocketspeed;
}
bool Rocket::operator==(const Rocket &r) const {
return (r._id == _id);
}
void Rocket::update()
{
_iteration++;
_pos += _speed;
_speed *= _rocket_slowdown; // 0.97
_parent->setPixelColor(_pos, _parent->Color(50, 32, 0));
}
// Schweif mit Sparkle
int Rocket::pos()
{
return _pos;
}
float Rocket::rocketspeed()
{
return _speed;
}
int Rocket::id()
{
return _id;
}
uint16_t Rocket::iteration()
{
return _iteration;
}

29
Rocket.h Normal file
View File

@ -0,0 +1,29 @@
#ifndef ROCKET_H
#define ROCKET_H
#include <Adafruit_NeoPixel.h>
class NeoPatterns; // Forward declaration
class Rocket
{
public:
int _id;
Rocket(NeoPatterns *parent, float pos, float rocketspeed, float rocket_slowdown);
Rocket();
bool operator==(const Rocket &r) const;
void update();
int pos();
float rocketspeed();
int id();
uint16_t iteration();
private:
float _pos;
float _speed;
int _lastbright;
float _rocket_slowdown;
uint16_t _iteration;
NeoPatterns * _parent;
};
#endif

153
font.h Normal file
View File

@ -0,0 +1,153 @@
#ifndef FONT_H
#define FONT_H
/* the values in this array are a 8x8 bitmap font for ascii characters */
static uint64_t font[128] = {
/************************************************************************
font.c
Copyright (C) Lisa Milne 2014 <lisa@ltmnet.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
************************************************************************/
0x7E7E7E7E7E7E0000, /* NUL */
0x7E7E7E7E7E7E0000, /* SOH */
0x7E7E7E7E7E7E0000, /* STX */
0x7E7E7E7E7E7E0000, /* ETX */
0x7E7E7E7E7E7E0000, /* EOT */
0x7E7E7E7E7E7E0000, /* ENQ */
0x7E7E7E7E7E7E0000, /* ACK */
0x7E7E7E7E7E7E0000, /* BEL */
0x7E7E7E7E7E7E0000, /* BS */
0x0, /* TAB */
0x7E7E7E7E7E7E0000, /* LF */
0x7E7E7E7E7E7E0000, /* VT */
0x7E7E7E7E7E7E0000, /* FF */
0x7E7E7E7E7E7E0000, /* CR */
0x7E7E7E7E7E7E0000, /* SO */
0x7E7E7E7E7E7E0000, /* SI */
0x7E7E7E7E7E7E0000, /* DLE */
0x7E7E7E7E7E7E0000, /* DC1 */
0x7E7E7E7E7E7E0000, /* DC2 */
0x7E7E7E7E7E7E0000, /* DC3 */
0x7E7E7E7E7E7E0000, /* DC4 */
0x7E7E7E7E7E7E0000, /* NAK */
0x7E7E7E7E7E7E0000, /* SYN */
0x7E7E7E7E7E7E0000, /* ETB */
0x7E7E7E7E7E7E0000, /* CAN */
0x7E7E7E7E7E7E0000, /* EM */
0x7E7E7E7E7E7E0000, /* SUB */
0x7E7E7E7E7E7E0000, /* ESC */
0x7E7E7E7E7E7E0000, /* FS */
0x7E7E7E7E7E7E0000, /* GS */
0x7E7E7E7E7E7E0000, /* RS */
0x7E7E7E7E7E7E0000, /* US */
0x0, /* (space) */
0x808080800080000, /* ! */
0x2828000000000000, /* " */
0x287C287C280000, /* # */
0x81E281C0A3C0800, /* $ */
0x6094681629060000, /* % */
0x1C20201926190000, /* & */
0x808000000000000, /* ' */
0x810202010080000, /* ( */
0x1008040408100000, /* ) */
0x2A1C3E1C2A000000, /* * */
0x8083E08080000, /* + */
0x81000, /* , */
0x3C00000000, /* - */
0x80000, /* . */
0x204081020400000, /* / */
0x1824424224180000, /* 0 */
0x8180808081C0000, /* 1 */
0x3C420418207E0000, /* 2 */
0x3C420418423C0000, /* 3 */
0x81828487C080000, /* 4 */
0x7E407C02423C0000, /* 5 */
0x3C407C42423C0000, /* 6 */
0x7E04081020400000, /* 7 */
0x3C423C42423C0000, /* 8 */
0x3C42423E023C0000, /* 9 */
0x80000080000, /* : */
0x80000081000, /* ; */
0x6186018060000, /* < */
0x7E007E000000, /* = */
0x60180618600000, /* > */
0x3844041800100000, /* ? */
0x3C449C945C201C, /* @ */
0x1818243C42420000, /* A */
0x7844784444780000, /* B */
0x3844808044380000, /* C */
0x7844444444780000, /* D */
0x7C407840407C0000, /* E */
0x7C40784040400000, /* F */
0x3844809C44380000, /* G */
0x42427E4242420000, /* H */
0x3E080808083E0000, /* I */
0x1C04040444380000, /* J */
0x4448507048440000, /* K */
0x40404040407E0000, /* L */
0x4163554941410000, /* M */
0x4262524A46420000, /* N */
0x1C222222221C0000, /* O */
0x7844784040400000, /* P */
0x1C222222221C0200, /* Q */
0x7844785048440000, /* R */
0x1C22100C221C0000, /* S */
0x7F08080808080000, /* T */
0x42424242423C0000, /* U */
0x8142422424180000, /* V */
0x4141495563410000, /* W */
0x4224181824420000, /* X */
0x4122140808080000, /* Y */
0x7E040810207E0000, /* Z */
0x3820202020380000, /* [ */
0x4020100804020000, /* */
0x3808080808380000, /* ] */
0x1028000000000000, /* ^ */
0x7E0000, /* _ */
0x1008000000000000, /* ` */
0x3C023E463A0000, /* a */
0x40407C42625C0000, /* b */
0x1C20201C0000, /* c */
0x2023E42463A0000, /* d */
0x3C427E403C0000, /* e */
0x18103810100000, /* f */
0x344C44340438, /* g */
0x2020382424240000, /* h */
0x800080808080000, /* i */
0x800180808080870, /* j */
0x20202428302C0000, /* k */
0x1010101010180000, /* l */
0x665A42420000, /* m */
0x2E3222220000, /* n */
0x3C42423C0000, /* o */
0x5C62427C4040, /* p */
0x3A46423E0202, /* q */
0x2C3220200000, /* r */
0x1C201804380000, /* s */
0x103C1010180000, /* t */
0x2222261A0000, /* u */
0x424224180000, /* v */
0x81815A660000, /* w */
0x422418660000, /* x */
0x422214081060, /* y */
0x3C08103C0000, /* z */
0x1C103030101C0000, /* { */
0x808080808080800, /* | */
0x38080C0C08380000, /* } */
0x324C000000, /* ~ */
0x7E7E7E7E7E7E0000 /* DEL */
};
#endif