Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
nfxbeats committed Oct 3, 2022
1 parent b08c1fb commit 9fddd33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions device_FIRE-NFX.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,12 +460,12 @@ def OnMidiIn(event):
_proctime = time.monotonic_ns() // 1000000
elapsed = _proctime-prevtime
if (_prevCtrlID == ctrlID):
print(ctrlID, _prevCtrlID, 'proc', _proctime, prevtime, 'elapsed', elapsed)
#print(ctrlID, _prevCtrlID, 'proc', _proctime, prevtime, 'elapsed', elapsed)
_DoubleTap = (elapsed < 220)
else:
_prevCtrlID = ctrlID
_DoubleTap = False
print('dbltap', _DoubleTap)
#print('dbltap', _DoubleTap)



Expand Down

0 comments on commit 9fddd33

Please sign in to comment.