From 476105a267c9bfc54c3cf98206a03a2dbe21dc7a Mon Sep 17 00:00:00 2001 From: Ewoud Date: Mon, 13 Feb 2023 19:14:11 +0100 Subject: [PATCH] Add serpentine to default peek + version date --- wled00/wled.h | 2 +- wled00/ws.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wled00/wled.h b/wled00/wled.h index 764222fd..52832e6c 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -8,7 +8,7 @@ */ // version code in format yymmddb (b = daily build) -#define VERSION 2302130 +#define VERSION 2302131 //uncomment this if you have a "my_config.h" file you'd like to use //#define WLED_USE_MY_CONFIG diff --git a/wled00/ws.cpp b/wled00/ws.cpp index 26d8f16d..da85cf35 100644 --- a/wled00/ws.cpp +++ b/wled00/ws.cpp @@ -172,7 +172,7 @@ bool sendLiveLedsWs(uint32_t wsClient) { //WLEDMM: include ledmap in peek if default panel uint32_t c; - if (strip.panel.size()==1 && !strip.panel[0].vertical && !strip.panel[0].bottomStart && !strip.panel[0].rightStart) // one default panel + if (strip.panel.size()==1 && !strip.panel[0].vertical && !strip.panel[0].bottomStart && !strip.panel[0].rightStart && !strip.panel[0].serpentine) // one default panel c = busses.getPixelColor(i); else c = strip.getPixelColor(i);