2017-11-27 21:13:38 +00:00
|
|
|
#include <Homie.h>
|
|
|
|
#include <ArduinoOTA.h>
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include <SoftwareSerial.h>
|
2017-11-28 21:03:38 +00:00
|
|
|
#include "NeoPatterns.h"
|
|
|
|
|
2017-12-14 23:08:47 +00:00
|
|
|
#define PIN D7
|
2018-01-03 00:07:32 +00:00
|
|
|
// #define BIGPIXELS 20
|
|
|
|
#define NUMPIXELS 70 // 3 LEDs form one pixel
|
2018-01-09 23:20:28 +00:00
|
|
|
#define NUMBOXS 25
|
2018-01-03 00:07:32 +00:00
|
|
|
// #define NUMPIXELS (BIGPIXELS * 3) // 3 LEDs form one pixel
|
2017-12-14 23:08:47 +00:00
|
|
|
// #define NUMPIXELS 60
|
2017-11-28 21:03:38 +00:00
|
|
|
|
2017-12-14 23:08:47 +00:00
|
|
|
NeoPatterns strip = NeoPatterns(NUMPIXELS, PIN, NEO_BRG + NEO_KHZ400, &StripComplete);
|
2017-11-28 21:03:38 +00:00
|
|
|
HomieNode homieNode("pixel", "commands");
|
2017-11-27 21:13:38 +00:00
|
|
|
|
|
|
|
// Timeout, wann die Verbindung als "zurückgesetzt" angesehen werden soll und wieder auf das erste Byte gewartet wird
|
|
|
|
#define TIMEOUT 500
|
|
|
|
|
|
|
|
#define FW_NAME "esp-videoswitcher"
|
2018-01-09 23:20:28 +00:00
|
|
|
#define FW_VERSION "1.0.3"
|
2017-11-27 21:13:38 +00:00
|
|
|
|
|
|
|
SoftwareSerial swSer(D2, D1);
|
|
|
|
int currentnumber = 0;
|
2017-11-27 22:08:41 +00:00
|
|
|
int inputbytes[4];
|
2017-11-28 10:28:46 +00:00
|
|
|
int commandbytes[4];
|
2017-11-27 22:08:41 +00:00
|
|
|
String output = "";
|
|
|
|
String output2 = "";
|
2017-11-27 21:13:38 +00:00
|
|
|
|
2018-01-09 23:20:28 +00:00
|
|
|
unsigned long lastMillis = 0;
|
2018-01-03 00:07:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 25 Boxen insgesamt
|
|
|
|
* Box 0, 1, 2
|
|
|
|
* 0-29 je 3
|
|
|
|
*
|
|
|
|
* 40-
|
|
|
|
* PS1 = 13: 21, 22, 23
|
|
|
|
* SW Pixel
|
|
|
|
* 1 55, 56, 57
|
|
|
|
* 2 52, 53, 54
|
|
|
|
* 3 49, 50, 51
|
|
|
|
* 4 46, 47, 48
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-11-27 21:13:38 +00:00
|
|
|
HomieNode switchNode("switch", "switch");
|
|
|
|
|
2017-11-28 21:03:38 +00:00
|
|
|
void StripComplete(){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-12-21 20:17:35 +00:00
|
|
|
bool onSetBox(const HomieRange& range, const String& value) {
|
2018-01-03 00:07:32 +00:00
|
|
|
if (range.index < 0 || range.index > (NUMBOXS)) {
|
2017-12-21 20:17:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-01-03 00:07:32 +00:00
|
|
|
strip.colorBox(range.index, value.toInt());
|
2017-12-21 20:17:35 +00:00
|
|
|
homieNode.setProperty("box_" + String(range.index)).send(value);
|
2018-01-03 00:07:32 +00:00
|
|
|
return true;
|
2017-12-21 20:17:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-28 21:03:38 +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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool onSetPixels(const HomieRange& range, const String& value) {
|
|
|
|
|
|
|
|
String remaining = value;
|
|
|
|
int i = 0;
|
|
|
|
// Kein Effekt
|
|
|
|
strip.Stop();
|
|
|
|
do {
|
|
|
|
String current = remaining.substring(0, 7);
|
|
|
|
Homie.getLogger() << i << ":" << current << endl;
|
|
|
|
uint32_t currentcolor = strip.parseColor(current);
|
|
|
|
|
|
|
|
strip.setPixelColor(strip.numToPos(i), currentcolor);
|
|
|
|
i++;
|
|
|
|
|
|
|
|
remaining = remaining.substring(7);
|
|
|
|
|
|
|
|
} while (remaining.length() > 2 && (i < strip.numPixels()));
|
|
|
|
Homie.getLogger() << " filling rest with black" << endl;
|
|
|
|
while (i < strip.numPixels()) {
|
|
|
|
strip.setPixelColor(strip.numToPos(i), strip.Color(0, 0, 0));
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
strip.show();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-12-21 20:17:35 +00:00
|
|
|
bool onSetBoxs(const HomieRange& range, const String& value) {
|
|
|
|
|
|
|
|
String remaining = value;
|
|
|
|
int i = 0;
|
|
|
|
// Kein Effekt
|
|
|
|
strip.Stop();
|
|
|
|
do {
|
|
|
|
String current = remaining.substring(0, 7);
|
|
|
|
Homie.getLogger() << i << ":" << current << endl;
|
|
|
|
uint32_t currentcolor = strip.parseColor(current);
|
|
|
|
|
|
|
|
strip.setPixelColor(i*3, currentcolor);
|
|
|
|
strip.setPixelColor(i*3+1, currentcolor);
|
|
|
|
strip.setPixelColor(i*3+2, currentcolor);
|
|
|
|
i++;
|
|
|
|
|
|
|
|
remaining = remaining.substring(7);
|
|
|
|
|
|
|
|
} while (remaining.length() > 2 && (i < strip.numPixels()));
|
|
|
|
Homie.getLogger() << " filling rest with black" << endl;
|
|
|
|
while (i < strip.numPixels()) {
|
|
|
|
strip.setPixelColor(strip.numToPos(i), strip.Color(0, 0, 0));
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
strip.show();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-28 21:03:38 +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" || effect == "chase") {
|
|
|
|
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 == "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();
|
|
|
|
}
|
2018-01-09 18:04:19 +00:00
|
|
|
else if (effect == "radar") {
|
|
|
|
strip.Radar();
|
|
|
|
}
|
2017-11-28 21:03:38 +00:00
|
|
|
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 {
|
|
|
|
strip.None();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
homieNode.setProperty("effect").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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-11-27 21:13:38 +00:00
|
|
|
bool switchHandler(const HomieRange& range, const String& value) {
|
|
|
|
Homie.getLogger() << "switch " << ": " << value << endl;
|
2017-11-28 10:54:49 +00:00
|
|
|
int localByte = 0;
|
|
|
|
|
|
|
|
int lastspace = 0;
|
|
|
|
int nextspace = 0;
|
|
|
|
while (nextspace < value.length()-1)
|
|
|
|
{
|
|
|
|
// Nur solange wir noch Platz für Inputbytes haben... :)
|
|
|
|
if (localByte <= 3) {
|
|
|
|
nextspace = value.indexOf(' ', lastspace);
|
2017-11-28 18:38:40 +00:00
|
|
|
commandbytes[localByte] = (value.substring(lastspace,nextspace)).toInt();
|
|
|
|
lastspace = nextspace+1;
|
2017-11-28 10:54:49 +00:00
|
|
|
localByte++;
|
|
|
|
}
|
|
|
|
}
|
2017-11-28 10:28:46 +00:00
|
|
|
|
2017-11-28 10:54:49 +00:00
|
|
|
if (localByte ==4)
|
2017-11-28 10:28:46 +00:00
|
|
|
{
|
|
|
|
// Nur wenn wirklich 4 Werte übernommen wurden
|
|
|
|
switchNode.setProperty("switch").send(value);
|
|
|
|
// Sende an das Gerät
|
|
|
|
swSer.write(commandbytes[0]);
|
|
|
|
swSer.write(commandbytes[1]);
|
|
|
|
swSer.write(commandbytes[2]);
|
|
|
|
swSer.write(commandbytes[3]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
commandbytes[0] = 0;
|
|
|
|
commandbytes[1] = 0;
|
|
|
|
commandbytes[2] = 0;
|
|
|
|
commandbytes[3] = 0;
|
|
|
|
switchNode.setProperty("switch").send("ERROR");
|
|
|
|
}
|
2017-11-27 21:13:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-11-28 21:03:38 +00:00
|
|
|
void loopHandler() {
|
|
|
|
strip.Update();
|
|
|
|
}
|
|
|
|
|
2017-11-27 21:13:38 +00:00
|
|
|
void setup() {
|
|
|
|
Serial.begin(115200);
|
|
|
|
swSer.begin(9600);
|
|
|
|
Serial.println("\nKramer VS-162AV");
|
|
|
|
|
|
|
|
Homie_setFirmware(FW_NAME, FW_VERSION);
|
|
|
|
Homie_setBrand(FW_NAME);
|
|
|
|
|
2017-11-28 21:03:38 +00:00
|
|
|
Homie.setLoopFunction(loopHandler);
|
|
|
|
|
2017-11-27 21:13:38 +00:00
|
|
|
switchNode.advertise("switch").settable(switchHandler);
|
|
|
|
|
2017-11-28 21:03:38 +00:00
|
|
|
homieNode.advertiseRange("pixel", 0, NUMPIXELS - 1).settable(onSetPixel);
|
2018-01-03 00:07:32 +00:00
|
|
|
homieNode.advertiseRange("box", 0, NUMBOXS - 1).settable(onSetBox);
|
2017-11-28 21:03:38 +00:00
|
|
|
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);
|
2018-01-03 00:07:32 +00:00
|
|
|
// homieNode.advertiseRange("pixels", 0, (NUMPIXELS - 1)*7).settable(onSetPixels);
|
|
|
|
// homieNode.advertiseRange("boxs", 0, (BIGPIXELS - 1)*7).settable(onSetBoxs);
|
2017-11-28 21:03:38 +00:00
|
|
|
|
|
|
|
|
2017-11-27 21:13:38 +00:00
|
|
|
Homie.setup();
|
|
|
|
|
2017-11-28 21:03:38 +00:00
|
|
|
strip.begin();
|
|
|
|
strip.clear();
|
|
|
|
strip.show();
|
|
|
|
|
2017-12-14 23:08:47 +00:00
|
|
|
// Default effect
|
|
|
|
strip.RainbowCycle(50);
|
|
|
|
|
2017-11-27 21:13:38 +00:00
|
|
|
ArduinoOTA.setHostname(Homie.getConfiguration().deviceId);
|
2017-12-21 20:17:35 +00:00
|
|
|
ArduinoOTA.onStart([]() {
|
2018-01-03 00:07:32 +00:00
|
|
|
Serial.println("\nArduinoOTA.onStart()");
|
2017-12-21 20:17:35 +00:00
|
|
|
strip.clear();
|
|
|
|
strip.setBrightness(64);
|
|
|
|
});
|
|
|
|
ArduinoOTA.onEnd([]() {
|
2018-01-03 00:07:32 +00:00
|
|
|
Serial.println("\nArduinoOTA.onEnd()");
|
2017-12-21 20:17:35 +00:00
|
|
|
strip.clear();
|
|
|
|
});
|
|
|
|
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
|
2018-01-03 00:07:32 +00:00
|
|
|
Serial.println("\nArduinoOTA.onProgress()");
|
|
|
|
// strip.setPixelColor(progress / (total / NUMPIXELS), strip.Color(100, 0, 0));
|
|
|
|
// strip.show();
|
2017-12-21 20:17:35 +00:00
|
|
|
});
|
|
|
|
|
2017-11-27 21:13:38 +00:00
|
|
|
ArduinoOTA.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
Homie.loop();
|
|
|
|
ArduinoOTA.handle();
|
2017-11-28 21:03:38 +00:00
|
|
|
|
2017-11-27 21:13:38 +00:00
|
|
|
while (swSer.available() > 0) {
|
2018-01-09 23:20:28 +00:00
|
|
|
lastMillis = millis();
|
2017-11-27 21:13:38 +00:00
|
|
|
int r1 = swSer.read();
|
2017-11-27 22:08:41 +00:00
|
|
|
Serial.print(currentnumber);
|
|
|
|
Serial.print(": ");
|
2017-11-27 21:13:38 +00:00
|
|
|
Serial.print(r1);
|
|
|
|
Serial.print(" ");
|
2017-11-27 22:08:41 +00:00
|
|
|
inputbytes[currentnumber] = r1;
|
|
|
|
|
|
|
|
output += String(r1, DEC);
|
|
|
|
output += " ";
|
|
|
|
if (currentnumber == 3) {
|
|
|
|
switchNode.setProperty("data").send(output);
|
|
|
|
output2 = "";
|
|
|
|
output2 += "OUTPUT ";
|
|
|
|
output2 += String(inputbytes[2]-128, DEC);
|
|
|
|
output2 += " INPUT ";
|
|
|
|
output2 += String(inputbytes[1]-128, DEC);
|
|
|
|
switchNode.setProperty("switchevent").send(output2);
|
|
|
|
switchNode.setProperty("input").send(String(inputbytes[1]-128, DEC));
|
|
|
|
switchNode.setProperty("output").send(String(inputbytes[2]-128, DEC));
|
2017-11-28 10:28:46 +00:00
|
|
|
|
2017-12-21 20:17:35 +00:00
|
|
|
|
|
|
|
// Zeige aktuelle Quelle auf dem Strip an
|
|
|
|
strip.None();
|
|
|
|
for (int j=0;j<NUMPIXELS;j++)
|
|
|
|
{
|
|
|
|
strip.setPixelColor(j, strip.Color(0, 0, 0));
|
|
|
|
}
|
|
|
|
strip.show();
|
|
|
|
strip.colorBox(inputbytes[1]-128, strip.Color(255, 255, 255));
|
|
|
|
// strip.setPixelColor((inputbytes[1]-128)*3, strip.Color(255, 0, 0));
|
|
|
|
// strip.setPixelColor((inputbytes[1]-128)*3+1, strip.Color(255, 0, 0));
|
|
|
|
// strip.setPixelColor((inputbytes[1]-128)*3+2, strip.Color(255, 0, 0));
|
|
|
|
strip.show();
|
|
|
|
|
2017-11-27 22:08:41 +00:00
|
|
|
currentnumber = 0;
|
|
|
|
inputbytes[0] = 0;
|
|
|
|
inputbytes[1] = 0;
|
|
|
|
inputbytes[2] = 0;
|
|
|
|
inputbytes[3] = 0;
|
|
|
|
output = "";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Serial.print(">");
|
|
|
|
Serial.print(currentnumber);
|
|
|
|
Serial.print("<");
|
|
|
|
currentnumber++;
|
|
|
|
}
|
2018-01-09 23:20:28 +00:00
|
|
|
if (millis() > lastMillis + 1000)
|
|
|
|
{
|
|
|
|
currentnumber = 0;
|
|
|
|
}
|
2017-11-27 21:13:38 +00:00
|
|
|
}
|
|
|
|
}
|