aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2020-11-05 11:40:34 -0500
committerKevin O'Connor <kevin@koconnor.net>2020-11-05 11:40:34 -0500
commit123908ac7aa3c3c6178a0c51b8f9e3bc17f7b74a (patch)
tree82c2b9a8f032a6e6cab09660ffdc20aaa7a7d896 /src
parent821561708d0973ba2dbc93fabff381075c0b2aed (diff)
downloadkutter-123908ac7aa3c3c6178a0c51b8f9e3bc17f7b74a.tar.gz
kutter-123908ac7aa3c3c6178a0c51b8f9e3bc17f7b74a.tar.xz
kutter-123908ac7aa3c3c6178a0c51b8f9e3bc17f7b74a.zip
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 <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r--src/neopixel.c2
1 files changed, 1 insertions, 1 deletions
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");