mirror of
https://github.com/AlexGyver/GyverLamp.git
synced 2025-08-07 16:40:32 +03:00
103 lines
3.3 KiB
C++
103 lines
3.3 KiB
C++
void parseUDP() {
|
|
int packetSize = Udp.parsePacket();
|
|
if (packetSize) {
|
|
int n = Udp.read(packetBuffer, UDP_TX_PACKET_MAX_SIZE);
|
|
packetBuffer[n] = 0;
|
|
inputBuffer = packetBuffer;
|
|
|
|
if (inputBuffer.startsWith("DEB")) {
|
|
inputBuffer = "OK " + timeClient.getFormattedTime();
|
|
} else if (inputBuffer.startsWith("GET")) {
|
|
sendCurrent();
|
|
} else if (inputBuffer.startsWith("EFF")) {
|
|
saveEEPROM();
|
|
currentMode = (byte)inputBuffer.substring(3).toInt();
|
|
loadingFlag = true;
|
|
FastLED.clear();
|
|
delay(1);
|
|
sendCurrent();
|
|
FastLED.setBrightness(modes[currentMode].brightness);
|
|
} else if (inputBuffer.startsWith("BRI")) {
|
|
modes[currentMode].brightness = inputBuffer.substring(3).toInt();
|
|
FastLED.setBrightness(modes[currentMode].brightness);
|
|
settChanged = true;
|
|
eepromTimer = millis();
|
|
} else if (inputBuffer.startsWith("SPD")) {
|
|
modes[currentMode].speed = inputBuffer.substring(3).toInt();
|
|
loadingFlag = true;
|
|
settChanged = true;
|
|
eepromTimer = millis();
|
|
} else if (inputBuffer.startsWith("SCA")) {
|
|
modes[currentMode].scale = inputBuffer.substring(3).toInt();
|
|
loadingFlag = true;
|
|
settChanged = true;
|
|
eepromTimer = millis();
|
|
} else if (inputBuffer.startsWith("P_ON")) {
|
|
ONflag = true;
|
|
changePower();
|
|
sendCurrent();
|
|
} else if (inputBuffer.startsWith("P_OFF")) {
|
|
ONflag = false;
|
|
changePower();
|
|
sendCurrent();
|
|
} else if (inputBuffer.startsWith("ALM_SET")) {
|
|
byte alarmNum = (char)inputBuffer[7] - '0';
|
|
alarmNum -= 1;
|
|
if (inputBuffer.indexOf("ON") != -1) {
|
|
alarm[alarmNum].state = true;
|
|
inputBuffer = "alm #" + String(alarmNum + 1) + " ON";
|
|
} else if (inputBuffer.indexOf("OFF") != -1) {
|
|
alarm[alarmNum].state = false;
|
|
inputBuffer = "alm #" + String(alarmNum + 1) + " OFF";
|
|
} else {
|
|
int almTime = inputBuffer.substring(8).toInt();
|
|
alarm[alarmNum].time = almTime;
|
|
byte hour = floor(almTime / 60);
|
|
byte minute = almTime - hour * 60;
|
|
inputBuffer = "alm #" + String(alarmNum + 1) +
|
|
" " + String(hour) +
|
|
":" + String(minute);
|
|
}
|
|
saveAlarm(alarmNum);
|
|
} else if (inputBuffer.startsWith("ALM_GET")) {
|
|
sendAlarms();
|
|
} else if (inputBuffer.startsWith("DAWN")) {
|
|
dawnMode = inputBuffer.substring(4).toInt() - 1;
|
|
saveDawnMmode();
|
|
}
|
|
|
|
char reply[inputBuffer.length() + 1];
|
|
inputBuffer.toCharArray(reply, inputBuffer.length() + 1);
|
|
Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
|
|
Udp.write(reply);
|
|
Udp.endPacket();
|
|
}
|
|
}
|
|
|
|
void sendCurrent() {
|
|
inputBuffer = "CURR";
|
|
inputBuffer += " ";
|
|
inputBuffer += String(currentMode);
|
|
inputBuffer += " ";
|
|
inputBuffer += String(modes[currentMode].brightness);
|
|
inputBuffer += " ";
|
|
inputBuffer += String(modes[currentMode].speed);
|
|
inputBuffer += " ";
|
|
inputBuffer += String(modes[currentMode].scale);
|
|
inputBuffer += " ";
|
|
inputBuffer += String(ONflag);
|
|
}
|
|
|
|
void sendAlarms() {
|
|
inputBuffer = "ALMS ";
|
|
for (byte i = 0; i < 7; i++) {
|
|
inputBuffer += String(alarm[i].state);
|
|
inputBuffer += " ";
|
|
}
|
|
for (byte i = 0; i < 7; i++) {
|
|
inputBuffer += String(alarm[i].time);
|
|
inputBuffer += " ";
|
|
}
|
|
inputBuffer += (dawnMode + 1);
|
|
}
|