Skip to content

Commit 1ae8bf4

Browse files
committed
Fix data type for CMD_TUNER
Signed-off-by: falkTX <[email protected]>
1 parent da2a0cd commit 1ae8bf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: mod/hmi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def ping(self, callback):
462462
self.send(CMD_PING, callback, 'boolean')
463463

464464
def tuner(self, freq, note, cents, callback):
465-
self.send('%s %f %s %f' % (CMD_TUNER, freq, note, cents), callback)
465+
self.send('%s %f %s %d' % (CMD_TUNER, freq, note, cents), callback)
466466

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

0 commit comments

Comments
 (0)