Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

Commit c788116

Browse files
authored
Merge pull request #17 from SciLor/develop
Develop
2 parents 323662e + 7cb12c7 commit c788116

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

HyperionRGB/HyperionRGB.ino

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ void changeMode(Mode newMode, double interval = 1.0d) {
6969
udpLed.stop();
7070

7171
switch (activeMode) {
72+
case OFF:
73+
ledStrip.clear();
74+
ledStrip.show();
75+
break;
76+
case STATIC_COLOR:
77+
break;
7278
case RAINBOW:
7379
case FIRE2012:
7480
animationThread.setInterval(interval);

HyperionRGB/WrapperJsonServer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#include "BaseHeader.h"
55
#include <ArduinoJson.h>
6-
#include <WifiServer.h>
7-
#include <WifiClient.h>
6+
#include <WiFiServer.h>
7+
#include <WiFiClient.h>
88

99
#define TCP_BUFFER 512
1010

0 commit comments

Comments
 (0)