diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/neopixel.c | 2 |
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"); |