~ubuntu-branches/ubuntu/trusty/libconfig-model-perl/trusty

« back to all changes in this revision

Viewing changes to lib/Config/Model/models/LCDd/MtxOrb.pl

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, gregor herrmann, Dominique Dumont
  • Date: 2013-05-26 12:40:30 UTC
  • mfrom: (1.3.61)
  • Revision ID: package-import@ubuntu.com-20130526124030-nfmm6ejhjubovp7v
Tags: 2.036-1
[ gregor herrmann ]
* Add =encoding to POD in dh_config_model_upgrade.

[ Dominique Dumont ]
* Imported Upstream version 2.036
  * config-edit: added deprecation warning
  * Value: fix pod doc error in L<> (Closes: #709784)
  * Node::load_data: use a predictable order to accept elements.
    This change fixes the test failure in t/backend_ini.t
    (Closes: #709785)
  * make t/pod.t run only when AUTHOR_TESTING is set

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
    'class_description' => 'generated from LCDd.conf',
13
13
    'name' => 'LCDd::MtxOrb',
14
14
    'element' => [
15
 
      'KeyMap_B',
16
 
      {
17
 
        'value_type' => 'uniline',
18
 
        'default' => 'Right',
19
 
        'type' => 'leaf'
20
 
      },
21
 
      'hasAdjustableBacklight',
22
 
      {
23
 
        'value_type' => 'enum',
24
 
        'upstream_default' => 'yes',
 
15
      'Brightness',
 
16
      {
 
17
        'value_type' => 'integer',
 
18
        'min' => '0',
 
19
        'upstream_default' => '1000',
 
20
        'max' => '1000',
25
21
        'type' => 'leaf',
26
 
        'description' => 'Some old displays do not have an adjustable backlight but only can
27
 
switch the backlight on/off. If you experience randomly appearing block
28
 
characters, try setting this to false. ',
29
 
        'choice' => [
30
 
          'yes',
31
 
          'no'
32
 
        ]
 
22
        'description' => 'Set the initial brightness '
33
23
      },
34
24
      'Contrast',
35
25
      {
40
30
NOTE: The driver will ignore this if the display
41
31
      is a vfd or vkd as they don\'t have this feature'
42
32
      },
43
 
      'KeyMap_F',
44
 
      {
45
 
        'value_type' => 'uniline',
46
 
        'default' => 'Escape',
 
33
      'Device',
 
34
      {
 
35
        'value_type' => 'uniline',
 
36
        'upstream_default' => '/dev/lcd',
 
37
        'type' => 'leaf',
 
38
        'description' => 'Select the output device to use '
 
39
      },
 
40
      'KeyMap_A',
 
41
      {
 
42
        'value_type' => 'uniline',
 
43
        'default' => 'Left',
 
44
        'type' => 'leaf',
 
45
        'description' => 'The following table translates from MtxOrb key letters to logical key names.
 
46
By default no keys are mapped, meaning the keypad is not used at all.'
 
47
      },
 
48
      'KeyMap_B',
 
49
      {
 
50
        'value_type' => 'uniline',
 
51
        'default' => 'Right',
47
52
        'type' => 'leaf'
48
53
      },
49
54
      'KeyMap_C',
52
57
        'default' => 'Up',
53
58
        'type' => 'leaf'
54
59
      },
 
60
      'KeyMap_D',
 
61
      {
 
62
        'value_type' => 'uniline',
 
63
        'default' => 'Down',
 
64
        'type' => 'leaf'
 
65
      },
55
66
      'KeyMap_E',
56
67
      {
57
68
        'value_type' => 'uniline',
58
69
        'default' => 'Enter',
59
70
        'type' => 'leaf'
60
71
      },
61
 
      'Device',
62
 
      {
63
 
        'value_type' => 'uniline',
64
 
        'upstream_default' => '/dev/lcd',
65
 
        'type' => 'leaf',
66
 
        'description' => 'Select the output device to use '
 
72
      'KeyMap_F',
 
73
      {
 
74
        'value_type' => 'uniline',
 
75
        'default' => 'Escape',
 
76
        'type' => 'leaf'
 
77
      },
 
78
      'OffBrightness',
 
79
      {
 
80
        'value_type' => 'integer',
 
81
        'min' => '0',
 
82
        'upstream_default' => '0',
 
83
        'max' => '1000',
 
84
        'type' => 'leaf',
 
85
        'description' => 'Set the initial off-brightness 
 
86
This value is used when the display is normally
 
87
switched off in case LCDd is inactive'
 
88
      },
 
89
      'Size',
 
90
      {
 
91
        'value_type' => 'uniline',
 
92
        'upstream_default' => '20x4',
 
93
        'type' => 'leaf',
 
94
        'description' => 'Set the display size '
 
95
      },
 
96
      'Speed',
 
97
      {
 
98
        'value_type' => 'enum',
 
99
        'upstream_default' => '19200',
 
100
        'type' => 'leaf',
 
101
        'description' => 'Set the communication speed ',
 
102
        'choice' => [
 
103
          '1200',
 
104
          '2400',
 
105
          '9600',
 
106
          '19200'
 
107
        ]
67
108
      },
68
109
      'Type',
69
110
      {
78
119
          'vkd'
79
120
        ]
80
121
      },
81
 
      'Brightness',
 
122
      'hasAdjustableBacklight',
82
123
      {
83
 
        'value_type' => 'integer',
84
 
        'min' => '0',
85
 
        'upstream_default' => '1000',
86
 
        'max' => '1000',
 
124
        'value_type' => 'enum',
 
125
        'upstream_default' => 'yes',
87
126
        'type' => 'leaf',
88
 
        'description' => 'Set the initial brightness '
 
127
        'description' => 'Some old displays do not have an adjustable backlight but only can
 
128
switch the backlight on/off. If you experience randomly appearing block
 
129
characters, try setting this to false. ',
 
130
        'choice' => [
 
131
          'yes',
 
132
          'no'
 
133
        ]
89
134
      },
90
135
      'keypad_test_mode',
91
136
      {
98
143
LCDd. LCDd will output all characters it receives.
99
144
Afterwards you can modify the settings above and set
100
145
keypad_set_mode to no again.'
101
 
      },
102
 
      'KeyMap_D',
103
 
      {
104
 
        'value_type' => 'uniline',
105
 
        'default' => 'Down',
106
 
        'type' => 'leaf'
107
 
      },
108
 
      'Size',
109
 
      {
110
 
        'value_type' => 'uniline',
111
 
        'upstream_default' => '20x4',
112
 
        'type' => 'leaf',
113
 
        'description' => 'Set the display size '
114
 
      },
115
 
      'Speed',
116
 
      {
117
 
        'value_type' => 'enum',
118
 
        'upstream_default' => '19200',
119
 
        'type' => 'leaf',
120
 
        'description' => 'Set the communication speed ',
121
 
        'choice' => [
122
 
          '1200',
123
 
          '2400',
124
 
          '9600',
125
 
          '19200'
126
 
        ]
127
 
      },
128
 
      'OffBrightness',
129
 
      {
130
 
        'value_type' => 'integer',
131
 
        'min' => '0',
132
 
        'upstream_default' => '0',
133
 
        'max' => '1000',
134
 
        'type' => 'leaf',
135
 
        'description' => 'Set the initial off-brightness 
136
 
This value is used when the display is normally
137
 
switched off in case LCDd is inactive'
138
 
      },
139
 
      'KeyMap_A',
140
 
      {
141
 
        'value_type' => 'uniline',
142
 
        'default' => 'Left',
143
 
        'type' => 'leaf',
144
 
        'description' => 'The following table translates from MtxOrb key letters to logical key names.
145
 
By default no keys are mapped, meaning the keypad is not used at all.'
146
146
      }
147
147
    ]
148
148
  }