summaryrefslogtreecommitdiff
path: root/tascam_fw_console/console.py
diff options
context:
space:
mode:
authorsbahling <sbahling@mudgum.net>2018-11-05 22:50:13 +0100
committersbahling <sbahling@mudgum.net>2018-11-05 22:50:13 +0100
commitf97a3cd79e816d8d471d78ea2e57e91ec4d62531 (patch)
tree3e05f3962b52933fceaf122678aa637894db9a5b /tascam_fw_console/console.py
parent538472d1dcbd174917ac036d5f89868c739d5d61 (diff)
downloadtascam-fw-osc-f97a3cd79e816d8d471d78ea2e57e91ec4d62531.tar.gz
tascam-fw-osc-f97a3cd79e816d8d471d78ea2e57e91ec4d62531.tar.xz
tascam-fw-osc-f97a3cd79e816d8d471d78ea2e57e91ec4d62531.zip
More code cleanup
Diffstat (limited to 'tascam_fw_console/console.py')
-rw-r--r--tascam_fw_console/console.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tascam_fw_console/console.py b/tascam_fw_console/console.py
index 858ee17..fa334dc 100644
--- a/tascam_fw_console/console.py
+++ b/tascam_fw_console/console.py
@@ -319,12 +319,6 @@ class Console():
else:
self.unit.leds.rec.turn_off()
- def pan_stereo_position_handler(self, addr, ssid, pan):
- self.strips[int(ssid)].recv_pan(pan)
-
- def strip_trimdb_handler(self, addr, ssid, trim):
- self.strips[int(ssid)].recv_trim(trim)
-
def strip_name_handler(self, addr, ssid, name):
self.strips[int(ssid)].name = name
@@ -338,7 +332,6 @@ class Console():
def encoder_mode_handler(self, addr, mode):
mode = mode.upper()
- print(mode)
for other in ENCODER_MODES:
self.unit.leds.turn_off(other)
self.unit.leds.turn_on(mode)