Skip to content

Commit

Permalink
hide broken amps and non-functional tuner in Lite mk2
Browse files Browse the repository at this point in the history
  • Loading branch information
Diyan committed Nov 16, 2023
1 parent a3621f2 commit ea8e4ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lib/bluetooth/devices/NuxMightyLiteMk2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ class NuxMightyLiteMk2 extends NuxDevice

@override
bool get tunerAvailable {
return deviceControl.isConnected;
//probably in a firmware update
return false;
//return deviceControl.isConnected;
}

@override
Expand Down
5 changes: 3 additions & 2 deletions lib/bluetooth/devices/presets/MightyMk2Preset.dart
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ class MightyMk2Preset extends Preset {
DeluxeRvb(),
BassMate(),
Tweedy(),
TwinRvb(),
//this one and VibroKing cause crashes or ear piercing feedbacks
//TwinRvb(),
HiWire(),
CaliCrunch(),
ClassA15(),
Expand All @@ -136,7 +137,7 @@ class MightyMk2Preset extends Preset {
FiremanHBE(),
DualRect(),
DIEVH4(),
VibroKing(),
//VibroKing(),
Budda(),
MrZ38(),
SuperRvb(),
Expand Down

0 comments on commit ea8e4ba

Please sign in to comment.