Skip to content

Commit b6f0732

Browse files
committed
Change to 1 strip, one led
1 parent a6b2c0b commit b6f0732

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

include/base.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
class Base
3232
{
3333
// LED strip number
34-
int ledsNumber = 3;
34+
int ledsNumber = 1;
3535
// frame is set and ready to render
3636
bool readyToRender = false;
3737

38-
int ledSegments = 8;
39-
int ledPins[8] = {16, 17, 18, 19, 20, 21, 22, 23};
40-
int ledCounts[8] = {1, 1, 1, 0, 0, 0, 0, 0};
38+
int ledSegments = 1;
39+
int ledPins[1] = {0};
40+
int ledCounts[1] = {1};
4141

42-
sk6812p* ledStrips[8] = {nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr};
42+
sk6812p* ledStrips[1] = {nullptr};
4343

4444
public:
4545
// static data buffer for the loop

0 commit comments

Comments
 (0)