Skip to content

Commit

Permalink
Fix data type for CMD_TUNER
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Nov 15, 2023
1 parent da2a0cd commit 1ae8bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/hmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def ping(self, callback):
self.send(CMD_PING, callback, 'boolean')

def tuner(self, freq, note, cents, callback):
self.send('%s %f %s %f' % (CMD_TUNER, freq, note, cents), callback)
self.send('%s %f %s %d' % (CMD_TUNER, freq, note, cents), callback)

#TODO, This message should be handled by mod-system-control once in place
def expression_overcurrent(self, callback):
Expand Down

0 comments on commit 1ae8bf4

Please sign in to comment.