File Coverage

blib/lib/Config/Model/models/LCDd/MD8800.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   6267 use strict;
  1         2  
  1         33  
2 1     1   5 use warnings;
  1         2  
  1         89  
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' => '0',
13             'type' => 'leaf',
14             'upstream_default' => '1000',
15             'value_type' => 'integer'
16             },
17             'Device',
18             {
19             'description' => 'device to use ',
20             'type' => 'leaf',
21             'upstream_default' => '/dev/ttyS1',
22             'value_type' => 'uniline'
23             },
24             'OffBrightness',
25             {
26             'description' => 'Set the initial off-brightness
27             This value is used when the display is normally
28             switched off in case LCDd is inactive',
29             'max' => '1000',
30             'min' => '0',
31             'type' => 'leaf',
32             'upstream_default' => '0',
33             'value_type' => 'integer'
34             },
35             'Size',
36             {
37             'description' => 'display size ',
38             'type' => 'leaf',
39             'upstream_default' => '16x2',
40             'value_type' => 'uniline'
41             }
42             ],
43             'name' => 'LCDd::MD8800'
44             }
45             ]
46             ;
47