File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -556,7 +556,7 @@ Segment &Segment::setCCT(uint16_t k) {
556556 k = (k - 1900 ) >> 5 ;
557557 }
558558 if (cct != k) {
559- DEBUG_PRINTF_P (PSTR (" - Starting CCT transition: %d\n " ), k);
559+ // DEBUGFX_PRINTF_P (PSTR("- Starting CCT transition: %d\n"), k);
560560 startTransition (strip.getTransition ()); // start transition prior to change
561561 cct = k;
562562 stateChanged = true ; // send UDP/WS broadcast
@@ -566,7 +566,7 @@ Segment &Segment::setCCT(uint16_t k) {
566566
567567Segment &Segment::setOpacity (uint8_t o) {
568568 if (opacity != o) {
569- DEBUG_PRINTF_P (PSTR (" - Starting opacity transition: %d\n " ), o);
569+ // DEBUGFX_PRINTF_P (PSTR("- Starting opacity transition: %d\n"), o);
570570 startTransition (strip.getTransition ()); // start transition prior to change
571571 opacity = o;
572572 stateChanged = true ; // send UDP/WS broadcast
You can’t perform that action at this time.
0 commit comments