====== LEDMatrix driver =====
** For those who think that size matters ... **
{{:lcd4linux:ledmatrix-lcd4linux.2.jpg}}
(The missing pixel in the letter B is a defective LED in my display and not a bug in lcd4linux)
The [[http://www.harbaum.org/till/ledmatrix|LEDMATRIX]] display is a DIY LED matrix display.
The current version sports an ethernet interface and a resolution of 80x32 pixels
in three colors (red, green and amber).
The total display size is about 60 x 25 cm². It consists of 5120 individually addressable
LEDs consuming at most 100 watts.
===== Display Section =====
Display {
Driver 'LEDMatrix'
IPAddress ''
Port Portno
font 'font size'
fontstyle 'style'
}
----
===== Parameters =====
|Driver|'LEDMatrix'|
|IPAddress|IP address or host name of LED display (e.g. 192.168.1.111)|
|Port|UDP port number to be used. Default is 4711|
|Font|Font size. Default is 6*8|
|Fontstyle|Font style (bold or plain). Default is plain) |
----
===== Examples =====
To use red as the default foregound color:
Display LEDMATRIX {
Driver 'LEDMatrix'
IPAddress '192.168.1.111'
Port 4711
font '6x8'
fontstyle 'bold'
Foreground 'ff0000'
Background '000000'
Basecolor '000000'
}
----