Skip to content

Commit

Permalink
Fix WS2801 output on boards with ethrnet (similar to Aircoookie#2542)
Browse files Browse the repository at this point in the history
and the corresponding fix Aircoookie@d1fed11
  • Loading branch information
david-sawatzke committed Jun 6, 2023
1 parent d383bc9 commit 59f1cdc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions wled00/bus_wrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,11 @@
#define B_SS_LPO_3 NeoPixelBusLg<Lpd6803GrbFeature, Lpd6803Method, NeoGammaNullMethod>

//WS2801
#ifdef WLED_USE_ETHERNET
#define B_HS_WS1_3 NeoPixelBusLg<NeoRbgFeature, Ws2801MethodBase<TwoWireHspiImple<SpiSpeedHz>>, NeoGammaNullMethod>
#else
#define B_HS_WS1_3 NeoPixelBusLg<NeoRbgFeature, Ws2801SpiHzMethod, NeoGammaNullMethod>
#endif
#define B_SS_WS1_3 NeoPixelBusLg<NeoRbgFeature, Ws2801Method, NeoGammaNullMethod>

//P9813
Expand Down

0 comments on commit 59f1cdc

Please sign in to comment.