Files
squeezelite-esp32/plugin/SqueezeESP32/Text.pm
philippe44 5a9df7b0d5 refactor display
- part of components
- separation between LMS & driver
- move slimp message to squeezelite
2020-01-18 16:19:06 -08:00

12 lines
173 B
Perl

package Plugins::SqueezeESP32::Text;
use strict;
use base qw(Slim::Display::Text);
# we don't want the special Noritake codes
sub vfdmodel {
return 'squeezeslave';
}
1;