Skip to content

Commit

Permalink
remove disable speaker setting
Browse files Browse the repository at this point in the history
  • Loading branch information
yannxou committed Oct 19, 2024
1 parent a0a942a commit 75ec7e2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions Reface_CP/RefaceCPControlSurface.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
from .TransportController import TransportController
from .NavigationController import NavigationController
from .NoteRepeatController import NoteRepeatController
from .Settings import DISABLE_SPEAKER

# Live Routing Category values
ROUTING_CATEGORY_NONE = 6
Expand Down Expand Up @@ -76,7 +75,7 @@ def _continue_init(self):
def _on_device_identified(self):
self._logger.log("RefaceCP Identification Succeeded.")
self._refaceCP.set_midi_control(True)
self._refaceCP.set_speaker_output(not DISABLE_SPEAKER)
self._refaceCP.set_speaker_output(False)
self._setup_buttons()
self._setup_song_listeners()
self._setup_channel_strip()
Expand Down
1 change: 0 additions & 1 deletion Reface_CP/Settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
DEBUG_ENABLED = False
DISABLE_SPEAKER = True

# Create a local file MySettings.py file to override with local configuration without pushing to repository.
try:
Expand Down

0 comments on commit 75ec7e2

Please sign in to comment.