From 821561708d0973ba2dbc93fabff381075c0b2aed Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 4 Nov 2020 18:47:36 -0500 Subject: [PATCH] neopixel: Fix failure with multiple simultaneous neopixel updates Make sure to set the oid parameter of mcu.lookup_query_command() so responses are routed correctly. Signed-off-by: Kevin O'Connor --- klippy/extras/neopixel.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/klippy/extras/neopixel.py b/klippy/extras/neopixel.py index 03856c1f..b8a94599 100644 --- a/klippy/extras/neopixel.py +++ b/klippy/extras/neopixel.py @@ -56,7 +56,8 @@ class PrinterNeoPixel: self.neopixel_update_cmd = self.mcu.lookup_command( "neopixel_update oid=%c pos=%hu data=%*s", cq=cmd_queue) self.neopixel_send_cmd = self.mcu.lookup_query_command( - "neopixel_send oid=%c", "neopixel_result success=%c", cq=cmd_queue) + "neopixel_send oid=%c", "neopixel_result success=%c", + oid=self.oid, cq=cmd_queue) def update_color_data(self, red, green, blue, white, index=None): red = int(red * 255. + .5) blue = int(blue * 255. + .5)