From f3fd814ce072dbd1ea4a4dbbce4d10302f65a13f Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 1 Dec 2020 11:09:00 -0500 Subject: [PATCH] neopixel: Don't wait for responses when in debug mode. Signed-off-by: Kevin O'Connor --- klippy/extras/neopixel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/klippy/extras/neopixel.py b/klippy/extras/neopixel.py index ccddcd22..e7785d97 100644 --- a/klippy/extras/neopixel.py +++ b/klippy/extras/neopixel.py @@ -101,6 +101,8 @@ class PrinterNeoPixel: if print_time is not None: minclock = self.mcu.print_time_to_clock(print_time) scmd = self.neopixel_send_cmd.send + if self.printer.get_start_args().get('debugoutput') is not None: + return for i in range(8): params = scmd([self.oid], minclock=minclock, reqclock=BACKGROUND_PRIORITY_CLOCK)