From 123908ac7aa3c3c6178a0c51b8f9e3bc17f7b74a Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 5 Nov 2020 11:40:34 -0500 Subject: neopixel: Fix neopixel_result message so that it contains an oid In order for commit 82156170 to work properly, the neopixel_result message must contain the oid. Signed-off-by: Kevin O'Connor --- src/neopixel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/neopixel.c b/src/neopixel.c index 1a38d4da..bbea09f8 100644 --- a/src/neopixel.c +++ b/src/neopixel.c @@ -195,6 +195,6 @@ command_neopixel_send(uint32_t *args) uint8_t oid = args[0]; struct neopixel_s *n = oid_lookup(oid, command_config_neopixel); int ret = send_data(n); - sendf("neopixel_result success=%c", ret ? 0 : 1); + sendf("neopixel_result oid=%c success=%c", oid, ret ? 0 : 1); } DECL_COMMAND(command_neopixel_send, "neopixel_send oid=%c"); -- cgit v1.2.3-70-g09d2