Skip to content

Commit

Permalink
The verison number should not have a trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Dec 17, 2024
1 parent 3da1142 commit 3677764
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ class FirmwareVersion : public Plugin {
return EventHandlerResult::OK;

#ifdef KALEIDOSCOPE_FIRMWARE_VERSION
::Focus.send(F(KALEIDOSCOPE_FIRMWARE_VERSION));
::Focus.sendRaw(F(KALEIDOSCOPE_FIRMWARE_VERSION));
#else
::Focus.send(F("0.0.0"));
::Focus.sendRaw(F("0.0.0"));
#endif

return EventHandlerResult::OK;
Expand Down

0 comments on commit 3677764

Please sign in to comment.