Display plugin update

This commit is contained in:
philippe44
2020-01-13 00:32:36 -08:00
parent 9091f7726c
commit 2783a83a00
6 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
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;