forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LCDd.ini
2691 lines (2352 loc) · 75.2 KB
/
LCDd.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[]
mountpoint = LCDd.ecf
;infos/plugins = ini validation enum range ipaddr path network type
infos/plugins = dump
;Until the max plugin error is not fixed, some specifications will be left commented out
;=============================================================================
;=============================================================================
;Affecting all subsettings, eg curses/Contrast, CFontz/Contrast, etc.
;------------------------------------
[_/contrast]
type = unsigned_short
check/range = 0-1000
description = Set the initial contrast
[_/brightness]
type = unsigned_short
check/range = 0-1000
[_/offbrightness]
type = unsigned_short
check/range = 0-1000
[_/reboot]
type = boolean
check/type = boolean
default = no
description = "Reinitialize the LCD`s BIOS. Normally you shouldn`t need this"
;Server
;----------------------------------------
[server/driverpath]
type = string
check/type = string
check/validation = .*[\/]$
check/validation/match = LINE
check/validation/message = "The path has to contain a backslack (/) at the end"
default = "server/drivers/"
description = "Where can we find the driver modules ?
IMPORTANT: Make sure to change this setting to reflect your
specific setup! Otherwise LCDd won't be able to find
the driver modules and will thus not be able to
function properly.
NOTE: Always place a slash as last character !"
[server/driver]
type = string
check/type = string
default = curses
description = "Tells the server to load the given drivers. Multiple lines can be given.
The name of the driver is case sensitive and determines the section
where to look for further configuration options of the specific driver
as well as the name of the dynamic driver module to load at runtime.
The latter one can be changed by giving a File= directive in the
driver specific section.
The following drivers are supported:
bayrad, CFontz, CFontzPacket, curses, CwLnx, ea65, EyeboxOne, futaba,
g15, glcd, glcdlib, glk, hd44780, icp_a106, imon, imonlcd,, IOWarrior,
irman, joy, lb216, lcdm001, lcterm, linux_input, lirc, lis, MD8800,
mdm166a, ms6931, mtc_s16209x, MtxOrb, mx5000, NoritakeVFD,
Olimex_MOD_LCD1x9, picolcd, pyramid, rawserial, sdeclcd, sed1330,
sed1520, serialPOS, serialVFD, shuttleVFD, sli, stv5730, svga, t6963,
text, tyan, ula200, vlsys_m428, xosd, yard2LCD"
[server/bind]
type = string
;check/ipaddr =
check/type = string
default = 127.0.0.1
description = Tells the driver to bind to the given interface
[server/port]
type = unsigned_short
;check/port/listen =
default = 13666
description = Listen on this specified port.
[server/reportlevel]
type = unsigned_short
check/range = 0-5
default = 2
description = Sets the reporting level.
[server/reporttosyslog]
type = boolean
check/type = boolean
default = no
description = Should we report to syslog instead of stderr?
[server/user]
type = string
check/type = string
default = nobody
description = "User to run as. LCDd will drop its root privileges and run as this user instead."
[server/foreground]
type = boolean
check/type = boolean
default = no
description = The server will stay in the foreground if set to yes
[server/hello]
type = string
check/type = string
default = builtin
description = "Hello message: each entry represents a display line"
[server/goodbye]
type = string
check/type = string
default = builtin
description = "GoodBye message: each entry represents a display line"
[server/frameinterval]
type = unsigned_long
check/type = unsigned_long
check/validation = [1-9]\d*
check/validation/match = LINE
check/validation/message = FrameInterval must be a positive number
default = 125000
description = "Sets the interval in microseconds for updating the display"
[server/waittime]
type = unsigned_long
check/type = unsigned_long
check/validation = [1-9]\d*
check/validation/match = LINE
check/validation/message = WaitTime must be a positive number
default = 4
description = Sets the default time in seconds to displays a screen
[server/autorotate]
type = boolean
check/type = boolean
default = on
description = If set to no, LCDd will start with screen rotation disabled. This has the same effect as if the ToggleRotateKey had been pressed. Rotation will start if the ToggleRotateKey is pressed. Note that this setting does not turn off priority sorting of screens
[server/serverscreen]
type = string
check/enum = #2
check/enum/#0 = off
check/enum/#1 = on
check/enum/#2 = blank
default = on
description = If yes, the the serverscreen will be rotated as a usual info screen. If no, it will be a background screen, only visible when no other screens are active. The special value 'blank' is similar to no, but only a blank screen is displayed.
[server/backlight]
type = string
check/enum = #2
check/enum/#0 = off
check/enum/#1 = on
check/enum/#2 = open
default = open
description = Set master backlight setting. If set to 'open' a client may control the backlight for its own screens (only)
[server/heartbeat]
type = string
check/enum = #2
check/enum/#0 = off
check/enum/#1 = on
check/enum/#2 = open
default = open
description = "Set master heartbeat setting. If set to 'open' a client may control the
heartbeat for its own screens (only)"
[server/togglerotatekey]
type = string
check/type = string
default = Enter
description = "The '...Key=' lines define what the server does with keypresses that
don't go to any client. The ToggleRotateKey stops rotation of screens, while
the PrevScreenKey and NextScreenKey go back / forward one screen (even if
rotation is disabled.
Assign the key string returned by the driver to the ...Key setting."
[server/prevscreenkey]
type = string
check/type = string
default = Left
description = "The '...Key=' lines define what the server does with keypresses that
don't go to any client. The ToggleRotateKey stops rotation of screens, while
the PrevScreenKey and NextScreenKey go back / forward one screen (even if
rotation is disabled.
Assign the key string returned by the driver to the ...Key setting."
[server/nextscreenkey]
type = string
check/type = string
default = Right
description = "The '...Key=' lines define what the server does with keypresses that
don't go to any client. The ToggleRotateKey stops rotation of screens, while
the PrevScreenKey and NextScreenKey go back / forward one screen (even if
rotation is disabled.
Assign the key string returned by the driver to the ...Key setting."
[server/scrollupkey]
type = string
check/type = string
default = Up
description = "The '...Key=' lines define what the server does with keypresses that
don't go to any client. The ToggleRotateKey stops rotation of screens, while
the PrevScreenKey and NextScreenKey go back / forward one screen (even if
rotation is disabled.
Assign the key string returned by the driver to the ...Key setting."
[server/scrolldownkey]
type = string
check/type = string
default = Down
description = "The '...Key=' lines define what the server does with keypresses that
don't go to any client. The ToggleRotateKey stops rotation of screens, while
the PrevScreenKey and NextScreenKey go back / forward one screen (even if
rotation is disabled.
Assign the key string returned by the driver to the ...Key setting."
;Menu
;==================================================
[menu/permissivegoto]
type = boolean
check/type = boolean
default = false
description = "If true the server allows transitions between different client's menus"
[menu/menukey]
type = string
check/type = string
default = Escape
description = "Up to six keys are supported. The MenuKey (to enter and exit the menu), the
EnterKey (to select values) and at least one movement keys are required."
[menu/enterkey]
type = string
check/type = string
default = Enter
description = "Up to six keys are supported. The MenuKey (to enter and exit the menu), the
EnterKey (to select values) and at least one movement keys are required."
[menu/upkey]
type = string
check/type = string
default = Up
description = "Up to six keys are supported. The MenuKey (to enter and exit the menu), the
EnterKey (to select values) and at least one movement keys are required."
[menu/downkey]
type = string
check/type = string
default = Down
description = "Up to six keys are supported. The MenuKey (to enter and exit the menu), the
EnterKey (to select values) and at least one movement keys are required."
[menu/leftkey]
type = string
check/type = string
default = Left
description = "Up to six keys are supported. The MenuKey (to enter and exit the menu), the
EnterKey (to select values) and at least one movement keys are required."
[menu/rightkey]
type = string
check/type = string
default = Right
description = "Up to six keys are supported. The MenuKey (to enter and exit the menu), the
EnterKey (to select values) and at least one movement keys are required."
;bayrad
;==================================================
[bayrad/device]
type = string
check/type = string
;check/path =
default = /dev/lcd
description = Select the output device to use
[bayrad/speed]
type = unsigned_short
check/range = 1200, 2400, 9600, 19200
default = 9600
description = Set the communication speed
;CFontz
;==================================================
[cfontz/device]
type = string
check/type = string
;check/path =
default = /dev/lcd
description = Select the output device to use
[cfontz/size]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = 20x4
description = Select the LCD size
[cfontz/contrast]
default = 350
[cfontz/brightness]
default = 1000
description = Set the initial brightness
[cfontz/offbrightness]
default = 0
description = Set the initial off-brightness. This value is used when the display is normally switched off in case LCDd is inactive
[cfontz/speed]
type = unsigned_short
check/range = 1200, 2400, 9600, 19200, 115200
default = 9600
description = Set the communication speed
[cfontz/newfirmware]
type = boolean
check/type = boolean
default = no
description = "Set the firmware version (New means >= 2.0)"
[cfontz/reboot]
default = no
;CFontzPacket
;==================================================
[cfontzpacket/model]
type = string
check/enum = #3
check/enum/#0 = 533
check/enum/#1 = 631
check/enum/#2 = 633
check/enum/#3 = 635
default = 633
description = Select the LCD model
[cfontzpacket/device]
type = string
check/type = string
;check/path =
default = /dev/lcd
description = Select the output device to use
[cfontzpacket/contrast]
default = 350
[cfontzpacket/brightness]
default = 1000
description = Set the initial brightness
[cfontzpacket/offbrightness]
default = 0
description = Set the initial off-brightness. This value is used when the display is normally switched off in case LCDd is inactive
[cfontzpacket/reboot]
default = no
[cfontzpacket/usb]
type = boolean
check/type = boolean
default = no
description = Enable the USB flag if the device is connected to an USB port. For serial ports leave it disabled.
[cfontzpacket/oldfirmware]
type = boolean
check/type = boolean
default = no
description = Very old 633 firmware versions do not support partial screen updates using 'Send Data to LCD' command (31). For those devices it may be necessary to enable this flag
[cfontzpacket/size]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = 20x4
description = Override the LCD size known for the selected model. Usually setting this value should not be necessary.
[cfontzpacket/speed]
type = unsigned_short
check/range = 19200, 115200
default = ;Default value depends on model.
description = Override the default communication speed known for the selected model.
;curses
;==================================================
[curses/foreground]
type = string
check/enum = #7
check/enum/#0 = red
check/enum/#1 = black
check/enum/#2 = green
check/enum/#3 = yellow
check/enum/#4 = blue
check/enum/#5 = magenta
check/enum/#6 = cyan
check/enum/#7 = white
default = blue
description = Color settings
[curses/background]
type = string
check/enum = #7
check/enum/#0 = red
check/enum/#1 = black
check/enum/#2 = green
check/enum/#3 = yellow
check/enum/#4 = blue
check/enum/#5 = magenta
check/enum/#6 = cyan
check/enum/#7 = white
default = cyan
description = background color when "backlight" is off
[curses/backlight]
type = string
check/enum = #7
check/enum/#0 = red
check/enum/#1 = black
check/enum/#2 = green
check/enum/#3 = yellow
check/enum/#4 = blue
check/enum/#5 = magenta
check/enum/#6 = cyan
check/enum/#7 = white
default = red
description = background color when "backlight" is on
[curses/size]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = 20x4
description = display size
[curses/topleftx]
type = unsigned_short
check/validation = ([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Must be a positive number
default = 7
description = What position (X,Y) to start the left top corner at...
[curses/toplefty]
type = unsigned_short
check/validation = ([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Must be a positive number
default = 7
description = What position (X,Y) to start the left top corner at...
[curses/useacs]
type = boolean
check/type = boolean
default = no
description = use ASC symbols for icons & bars
[curses/drawborder]
type = boolean
check/type = boolean
default = yes
description = draw Border
;CwLnx
;==================================================
[cwlnx/model]
type = string
check/enum = #2
check/enum/#0 = 12232
check/enum/#1 = 12832
check/enum/#2 = 1602
default = 12232
description = Select the LCD model
[cwlnx/device]
type = string
check/type = string
;check/path =
default = /dev/lcd
description = Select the output device to use
[cwlnx/size]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = ;Default depends on model: 12232: 20x4; 12832: 21x4; 1602: 16x2"
description = "Select the LCD size."
[cwlnx/speed]
type = unsigned_short
check/range = 9600, 19200
default = 19200
description = Set the communication speed
[cwlnx/reboot]
default = no
[cwlnx/keypad]
type = boolean
check/type = boolean
default = yes
description = If you have a keypad connected. Keypad layout is currently not configureable from the config file.
[cwlnx/keymap_a]
type = string
check/type = string
default = Up
description = "If you have a non-standard keypad you can associate any keystrings to keys.
There are 6 input keys in the CwLnx hardware that generate characters
from 'A' to 'F'.
The built-in default mapping hardcoded in the driver.
You can leave those unchanged if you have a standard keypad.
You can change it if you want to report other keystrings or have a non
standard keypad."
[cwlnx/keymap_b]
type = string
check/type = string
default = Down
description = "If you have a non-standard keypad you can associate any keystrings to keys.
There are 6 input keys in the CwLnx hardware that generate characters
from 'A' to 'F'.
The built-in default mapping hardcoded in the driver.
You can leave those unchanged if you have a standard keypad.
You can change it if you want to report other keystrings or have a non
standard keypad."
[cwlnx/keymap_c]
type = string
check/type = string
default = Left
description = "If you have a non-standard keypad you can associate any keystrings to keys.
There are 6 input keys in the CwLnx hardware that generate characters
from 'A' to 'F'.
The built-in default mapping hardcoded in the driver.
You can leave those unchanged if you have a standard keypad.
You can change it if you want to report other keystrings or have a non
standard keypad."
[cwlnx/keymap_d]
type = string
check/type = string
default = Right
description = "If you have a non-standard keypad you can associate any keystrings to keys.
There are 6 input keys in the CwLnx hardware that generate characters
from 'A' to 'F'.
The built-in default mapping hardcoded in the driver.
You can leave those unchanged if you have a standard keypad.
You can change it if you want to report other keystrings or have a non
standard keypad."
[cwlnx/keymap_e]
type = string
check/type = string
default = Enter
description = "If you have a non-standard keypad you can associate any keystrings to keys.
There are 6 input keys in the CwLnx hardware that generate characters
from 'A' to 'F'.
The built-in default mapping hardcoded in the driver.
You can leave those unchanged if you have a standard keypad.
You can change it if you want to report other keystrings or have a non
standard keypad."
[cwlnx/keymap_f]
type = string
check/type = string
default = Escape
description = "If you have a non-standard keypad you can associate any keystrings to keys.
There are 6 input keys in the CwLnx hardware that generate characters
from 'A' to 'F'.
The built-in default mapping hardcoded in the driver.
You can leave those unchanged if you have a standard keypad.
You can change it if you want to report other keystrings or have a non
standard keypad."
[cwlnx/keypad_test_mode]
type = boolean
check/type = boolean
default = no
description = permits one to test keypad assignment
;ea65
;==================================================
[ea65/brightness]
default = 500
description = "As the VFD is self luminescent we don't have a backlight
But we can use the backlight functions to control the front LEDs
Brightness 0 to 299 -> LEDs off
Brightness 300 to 699 -> LEDs half bright
Brightness 700 to 1000 -> LEDs full bright"
[ea65/offbrightness]
default = 0
description = OffBrightness is the the value used for the 'backlight off' state
;EyeboxOne
;==================================================
[eyeboxone/device]
type = string
check/type = string
;check/path =
default = /dev/ttyS1
description = Select the output device to use
[eyeboxone/size]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = 20x4
description = Set the display size
[eyeboxone/backlight]
type = boolean
check/type = boolean
default = yes
description = Switch on the backlight?
[eyeboxone/cursor]
type = boolean
check/type = boolean
default = no
description = Switch on the cursor?
[eyeboxone/speed]
type = unsigned_short
check/range = 1200, 2400, 9600, 19200
default = 19200
description = Set the communication speed
[eyeboxone/leftkey]
type = string
check/type = string
default = D
description = "Enter Key is a \r character, so it's hardcoded in the driver"
[eyeboxone/rightkey]
type = string
check/type = string
default = C
description = "Enter Key is a \r character, so it's hardcoded in the driver"
[eyeboxone/upkey]
type = string
check/type = string
default = A
description = "Enter Key is a \r character, so it's hardcoded in the driver"
[eyeboxone/downkey]
type = string
check/type = string
default = B
description = "Enter Key is a \r character, so it's hardcoded in the driver"
[eyeboxone/escapekey]
type = string
check/type = string
default = P
description = "Enter Key is a \r character, so it's hardcoded in the driver"
[eyeboxone/keypad_test_mode]
type = boolean
check/type = boolean
default = no
description = "You can find out which key of your display sends which
character by setting keypad_test_mode to yes and running
LCDd. LCDd will output all characters it receives.
Afterwards you can modify the settings above and set
keypad_set_mode to no again."
;g15
;==================================================
[g15/size]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = 20x5
description = Display size (currently unused)
;glcd
;==================================================
[glcd/connectiontype]
type = string
check/enum = #6
check/enum/#0 = t6963
check/enum/#1 = png
check/enum/#2 = serdisplib
check/enum/#3 = glcd2usb
check/enum/#4 = x11
check/enum/#5 = picolcdgfx
check/enum/#6 = xyz
default = t6963
description = Select what type of connection. See documentation for types.
[glcd/size]
type = string
check/type = string
check/validation = (640|[1-9]|[1-9][0-9]|[1-5][0-9][0-9]|6[0-3][0-9])x(480|[1-9]|[1-9][0-9]|[1-3][0-9][0-9]|4[0-7][0-9])
check/validation/match = LINE
check/validation/message = Not a valid size declaration. legal: 1x1 - 640x480
default = 128x64
description = Width and height of the display in pixel. The supported sizes may depend on the ConnectionType
[glcd/cellsize]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = 6x8
description = Width and height of a character cell in pixels. This value is only used the driver has been compiled with FreeType and it is enabled.
[glcd/useft2]
type = boolean
check/type = boolean
default = yes
description = If LCDproc has been compiled with FreeType 2 support this option can be used to turn if off intentionally.
[glcd/normal_font]
type = string
check/type = string
;check/path =
default = /usr/local/lib/X11/fonts/TTF/andalemo.ttf
description = Path to font file to use for FreeType rendering. This font must be monospace and should contain some special Unicode characters like arrows (Andale Mono is recommended and can be fetched at http://corefonts.sf.net).
[glcd/fonthasicons]
type = boolean
check/type = boolean
default = yes
description = Some fonts miss the Unicode characters used to represent icons. In this case the built-in 5x8 font can used if this option is turned off.
[glcd/contrast]
default = 600
[glcd/brightness]
default = 800
[glcd/offbrightness]
default = 100
[glcd/keyrepeatdelay]
type = unsigned_short
check/range = 0-3000
default = 500
description = Time (ms) from first key report to first repeat. Set to 0 to disable repeated key reports.
[glcd/keymap_a]
type = string
check/type = string
default = Up
description = "Assign key strings to keys. There may be up to 16 keys numbered 'A' to 'Z'."
[glcd/keymap_b]
type = string
check/type = string
default = Down
description = "Assign key strings to keys. There may be up to 16 keys numbered 'A' to 'Z'."
[glcd/keymap_c]
type = string
check/type = string
default = Left
description = "Assign key strings to keys. There may be up to 16 keys numbered 'A' to 'Z'."
[glcd/keymap_d]
type = string
check/type = string
default = Right
description = "Assign key strings to keys. There may be up to 16 keys numbered 'A' to 'Z'."
[glcd/keymap_e]
type = string
check/type = string
default = Enter
description = "Assign key strings to keys. There may be up to 16 keys numbered 'A' to 'Z'."
[glcd/keymap_f]
type = string
check/type = string
default = Escape
description = "Assign key strings to keys. There may be up to 16 keys numbered 'A' to 'Z'."
[glcd/keyrepeatinterval]
type = unsigned_short
check/range = 0-3000
default = 500
description = Time (ms) between repeated key reports. Ignored if KeyRepeatDelay is disabled (set to zero).
[glcd/port]
type = string
check/type = string
check/validation = 0x([2-3][0-9A-F]{2}|400)
check/validation/match = LINE
check/validation/message = Not a valid port declaration. legal: 0x200 - 0x400
default = 0x378
description = Parallel port to use
[glcd/bidirectional]
type = boolean
check/type = boolean
default = yes
description = Use LPT port in bi-directional mode. This should work on most LPT port and is required for proper timing!
[glcd/delaybus]
type = boolean
check/type = boolean
default = no
description = Insert additional delays into reads / writes.
[glcd/serdisp_name]
type = string
check/type = string
default = t6963
description = "Name of the underlying serdisplib driver, e.g. ctinclud. See
serdisplib documentation for details."
[glcd/serdisp_device]
type = string
check/type = string
;check/path =
default = /dev/ppi0
description = The display device to use, e.g. serraw:/dev/ttyS0, parport:/dev/parport0 or USB:07c0/1501
[glcd/serdisp_options]
type = string
check/type = string
default =
description = "Options string to pass to serdisplib during initialization. Use
this to set any display related options (e.g. wiring). The display size is
always set based on the Size configured above!
Important: The value must be quoted as it contains equal signs!"
[glcd/x11_pixelsize]
type = string
check/type = string
check/validation = \d+\+\d+
check/validation/match = LINE
default = 3+1
check/validation/message = [number]+[number] has to be provided, eg: 3+1 or 5+2
description = "Each LCD dot is drawn in the X window as a filled rectangle of this size
plus a gap between each filled rectangle. A PixelSize of 3+1
would draw a 3x3 filled rectangle with a gap of 1 pixel to the right and
bottom, effectively using a 4x4 area of the window."
[glcd/x11_pixelcolor]
type = string
check/type = string
check/validation = 0x[0-9A-F]{6}
check/validation/match = LINE
check/validation/message = Colors are in RRGGBB format prefixed with "0x"
default = 0x000000
description = The color of each dot at full contrast.
[glcd/x11_backlightcolor]
type = string
check/type = string
check/validation = 0x[0-9A-F]{6}
check/validation/match = LINE
check/validation/message = Colors are in RRGGBB format prefixed with "0x"
default = 0x80FF80
description = The color of the backlight as full brightness.
[glcd/x11_border]
type = unsigned_long
check/type = unsigned_long
check/validation = ^([1-9]\d*|0)$
check/validation/match = LINE
check/validation/message = Must be a positive number
default = 20
description = Adds a border (empty space) around the LCD portion of X11 window.
[glcd/x11_inverted]
type = boolean
check/type = boolean
default = no
description = Inverts the pixels.
[glcd/picolcdgfx_keytimeout]
type = string
check/type = string
check/validation = ([1-9][0-9]*)
check/validation/match = LINE
check/validation/message = Number must be any positive integer >0
default = 125
description = Time in ms for usb_read to wait on a key press.
[glcd/picolcdgfx_inverted]
type = boolean
check/type = boolean
default = no
description = Inverts the pixels.
;glcdlib
;==================================================
[glcdlib/driver]
type = string
check/type = string
default = image
description = "
Specify which graphical display supported by graphlcd-base to use.
Legal values for <replaceable>GRAPHLCD-DRIVER</replaceable> are
specified in graphlcd's configuration file <filename>/etc/graphlcd.conf</filename>.
For graphlcd 0.13 they comprise avrctl, framebuffer, gu140x32f, gu256x64-372,
gu256x64C-3xx0, hd61830, image, ks0108, noritake800, sed1330, sed1520, serdisp, simlcd, t6963c
"
[glcdlib/CharEncoding]
type = string
check/type = string
default = iso8859-2
description = "character encoding to use"
[glcdlib/useft2]
type = boolean
check/type = boolean
default = yes
description = "no=use graphlcd bitmap fonts (they have only one size / font file)
yes=use fonts supported by FreeType2 (needs Freetype2 support in
libglcdprocdriver and its dependants)"
[glcdlib/textresolution]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = 16x4
description = "Text resolution in fixed width characters.
(if it won't fit according to available physical pixel resolution
and the minimum available font face size in pixels, then
'DebugBorder' will automatically be turned on)"
[glcdlib/fontfile]
type = string
check/type = string
;check/path =
default = /usr/share/fonts/corefonts/courbd.ttf
description = "path to font file to use"
[glcdlib/minfontfacesize]
type = string
check/type = string
check/validation = ([1-9]+[0-9]*)x([1-9]+[0-9]*)
check/validation/match = LINE
check/validation/message = Not a valid size declaration. Examples: 20x4, 19x3, 40x150
default = 7x12
description = "path to font file to use"
[glcdlib/contrast]
default = 50
[glcdlib/brightness]
default = 50
[glcdlib/backlight]
type = boolean
check/type = boolean
default = no
[glcdlib/upsidedown]
type = boolean
check/type = boolean
default = no
[glcdlib/invert]
type = boolean
check/type = boolean
default = no
[glcdlib/showdebugframe]
type = boolean
check/type = boolean
default = no
[glcdlib/showbigborder]
type = boolean
check/type = boolean
default = no
[glcdlib/showthinborder]
type = boolean
check/type = boolean
default = yes
[glcdlib/pixelshiftx]
type = short
check/type = short
check/validation = ([0-9]+)
check/validation/match = LINE