mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-06 19:47:02 +03:00
25 lines
290 B
Perl
25 lines
290 B
Perl
package Plugins::SqueezeESP32::Graphics;
|
|
|
|
use strict;
|
|
|
|
use base qw(Slim::Display::Squeezebox2);
|
|
|
|
=comment
|
|
sub bytesPerColumn {
|
|
return 4;
|
|
}
|
|
=cut
|
|
|
|
sub displayHeight {
|
|
return 32;
|
|
}
|
|
|
|
sub displayWidth {
|
|
return shift->widthOverride(@_) || 128;
|
|
}
|
|
|
|
sub vfdmodel {
|
|
return 'graphic-128x32';
|
|
}
|
|
|
|
1; |