File Coverage

blib/lib/Config/Model/models/LCDd/svga.pl
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 1     1   6930 use strict;
  1         3  
  1         32  
2 1     1   8 use warnings;
  1         2  
  1         107  
3              
4             return [
5             {
6             'class_description' => 'generated from LCDd.conf',
7             'element' => [
8             'Brightness',
9             {
10             'description' => 'Set the initial brightness ',
11             'max' => '1000',
12             'min' => '1',
13             'type' => 'leaf',
14             'upstream_default' => '1000',
15             'value_type' => 'integer'
16             },
17             'Contrast',
18             {
19             'description' => 'Set the initial contrast
20             Can be set but does not change anything internally',
21             'max' => '1000',
22             'min' => '0',
23             'type' => 'leaf',
24             'upstream_default' => '500',
25             'value_type' => 'integer'
26             },
27             'Mode',
28             {
29             'description' => 'svgalib mode to use
30             legal values are supported svgalib modes',
31             'type' => 'leaf',
32             'upstream_default' => 'G320x240x256',
33             'value_type' => 'uniline'
34             },
35             'OffBrightness',
36             {
37             'description' => 'Set the initial off-brightness
38             This value is used when the display is normally
39             switched off in case LCDd is inactive',
40             'max' => '1000',
41             'min' => '1',
42             'type' => 'leaf',
43             'upstream_default' => '500',
44             'value_type' => 'integer'
45             },
46             'Size',
47             {
48             'description' => 'set display size ',
49             'type' => 'leaf',
50             'upstream_default' => '20x4',
51             'value_type' => 'uniline'
52             }
53             ],
54             'name' => 'LCDd::svga'
55             }
56             ]
57             ;
58