Skip to content

Commit fb95e3d

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mod/hmi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ def ping(self, callback):
459459
self.send(CMD_PING, callback, 'boolean')
460460

461461
def tuner(self, freq, note, cents, callback):
462-
self.send('%s %f %s %f' % (CMD_TUNER, freq, note, cents), callback)
462+
self.send('%s %f %s %d' % (CMD_TUNER, freq, note, cents), callback)
463463

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

0 commit comments

Comments
 (0)