mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 13:37:03 +03:00
improve display
This commit is contained in:
37
plugin/Player.pm
Normal file
37
plugin/Player.pm
Normal file
@@ -0,0 +1,37 @@
|
||||
package Plugins::SqueezeESP32::Player;
|
||||
|
||||
use strict;
|
||||
use base qw(Slim::Player::SqueezePlay);
|
||||
|
||||
use Slim::Utils::Log;
|
||||
use Slim::Utils::Prefs;
|
||||
|
||||
my $prefs = preferences('plugin.squeezeesp32');
|
||||
|
||||
sub model { 'squeezeesp32' }
|
||||
sub modelName { 'SqueezeESP32' }
|
||||
sub hasIR { 0 }
|
||||
|
||||
# We need to implement this to allow us to receive SETD commands
|
||||
# and we need SETD to support custom display widths
|
||||
sub directBodyFrame { 1 }
|
||||
|
||||
# Allow the player to define it's display width (and probably more)
|
||||
sub playerSettingsFrame {
|
||||
my $client = shift;
|
||||
my $data_ref = shift;
|
||||
|
||||
my $value;
|
||||
my $id = unpack('C', $$data_ref);
|
||||
|
||||
# New SETD command 0xfe for display width
|
||||
if ($id == 0xfe) {
|
||||
$value = (unpack('CC', $$data_ref))[1];
|
||||
if ($value > 10 && $value < 200) {
|
||||
$client->display->widthOverride(1, $value);
|
||||
$client->update;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
1;
|
||||
@@ -20,8 +20,8 @@ sub initPlugin {
|
||||
my $class = shift;
|
||||
|
||||
$class->SUPER::initPlugin(@_);
|
||||
Slim::Networking::Slimproto::addPlayerClass($class, 100, 'squeeze2esp32', { client => 'Slim::Player::SqueezePlay', display => 'Slim::Display::Text' });
|
||||
LOG_INFO("Added class 100 for SqueezeESP32");
|
||||
Slim::Networking::Slimproto::addPlayerClass($class, 100, 'squeeze2esp32', { client => 'Plugins::SqueezeESP32::Player', display => 'Plugins::SqueezeESP32::Text' });
|
||||
$log->info("Added class 100 for SqueezeESP32");
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
Binary file not shown.
10
plugin/Text.pm
Normal file
10
plugin/Text.pm
Normal file
@@ -0,0 +1,10 @@
|
||||
package Plugins::SqueezeESP32::Text;
|
||||
|
||||
use strict;
|
||||
|
||||
use base qw(Slim::Display::Text);
|
||||
|
||||
# we don't want the special Noritake codes
|
||||
sub vfdmodel { 'squeezeslave' }
|
||||
|
||||
1;
|
||||
2
plugin/strings.txt
Normal file
2
plugin/strings.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
WELCOME_TO_SQUEEZEESP32
|
||||
EN Welcome to SqueezeESP32
|
||||
Reference in New Issue
Block a user