Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#

A C# LED matrix display

Rate me:
Please Sign up or sign in to vote.
4.91/5 (92 votes)
4 Apr 2010CPOL2 min read 196.3K   15.9K   211   50
A C# user control which displays texts or symbols as if they were displayed on an LED matrix screen.

Image 1

Description

This article introduces a C# user control which displays texts or symbols as if they were displayed on an LED matrix screen. The control manages several items, an item defined by its text, its direction, and its speed. The goal of the article is to describe the key points of the control; it's not a strictly technical explanation. There are no technical difficulties. The control is presented in an application that allows the user to manage two text items.

Key points

Mutli-display items

The control manages the display of an item list. Aan item is associated to an array which defines the LED "On" and position (X, Y) on the display. On a "PaintEvent", each LED on the display is analysed to know if there is an "LedOn" point among the items that corresponds to the LED.

Shema.JPG

Custom font file

To build the "LedOn" array of an item from a text string, the control introduces a conversion function which gives the LED On array via a symbol code as an input. The function uses an XML file as the translation file from the code to the symbol. Actually, the control introduces an example file in the resources of the project. The code used is the ASCII code. Each symbol in the file is defined by the LED "On" on its lines (the LED "On" is represented by a #).

XML
<LedMatrixSymbol SymbolCode="71" Description="G">
    <LedLine LineNumber="0" LineLedOn="_______"/>
    <LedLine LineNumber="1" LineLedOn="__###__"/>
    <LedLine LineNumber="2" LineLedOn="_#___#_"/>
    <LedLine LineNumber="3" LineLedOn="_#_____"/>
    <LedLine LineNumber="4" LineLedOn="_#_____"/>
    <LedLine LineNumber="5" LineLedOn="_#__##_"/>
    <LedLine LineNumber="6" LineLedOn="_#___#_"/>
    <LedLine LineNumber="7" LineLedOn="__###__"/>
</LedMatrixSymbol>

Modification on the flow

The properties of each item (LED "On" array, speed, and direction) can be changed at any time. The properties of the display (LED colours and matrix size) are also modifiable.

LED size management

In the first version of the code, the LED size was deducted by a simple way. Each LED cell was divided in six equals parts: 1 for the border on the left (top), 4 for the LED, and 1 for the border on the right (down). This way, the minimum size for an LED cell was 6 pixels.

PrevLedSz.JPG

In the new version, the LED cell is not divided in sections. The part of the LED diameter in the LED cell is not defined by code (2/3 in previous version) but by a coefficient as a new parameter of the control. So the ratio between the border and the LED can be set from 0 to 1.

NewLedSz.JPG

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Srikanth039-Dec-10 1:01
Srikanth039-Dec-10 1:01 
GeneralA C# LED matrix display Pin
aleribrib6-Sep-10 7:03
aleribrib6-Sep-10 7:03 
GeneralA C# LED matrix display Pin
aleribrib3-Sep-10 4:46
aleribrib3-Sep-10 4:46 
GeneralRe: A C# LED matrix display Pin
Chootair6-Sep-10 1:22
Chootair6-Sep-10 1:22 
QuestionHow to use UNICODE? Pin
jbahn22-Aug-10 15:08
jbahn22-Aug-10 15:08 
QuestionHow to support Chinese? Pin
432848316-May-10 17:04
432848316-May-10 17:04 
AnswerRe: How to support Chinese? Pin
silas_yao18-Feb-11 4:35
silas_yao18-Feb-11 4:35 
GeneralGood Job Pin
Subhash Lama12-May-10 21:38
Subhash Lama12-May-10 21:38 
GeneralERROR Pin
Subhash Lama12-May-10 21:37
Subhash Lama12-May-10 21:37 
Generala simpler way Pin
Alan Zavari18-Apr-10 5:25
Alan Zavari18-Apr-10 5:25 
GeneralExcellent work Pin
radar_ksa17-Apr-10 23:34
radar_ksa17-Apr-10 23:34 
GeneralExtraordinary Pin
Pavan_N13-Apr-10 19:20
Pavan_N13-Apr-10 19:20 
GeneralNow that is cool! Pin
Philip.F4-Apr-10 11:34
Philip.F4-Apr-10 11:34 
QuestionMake the LED bigger? Pin
anga9-Mar-10 2:05
anga9-Mar-10 2:05 
AnswerRe: Make the LED bigger? Pin
Chootair4-Apr-10 8:39
Chootair4-Apr-10 8:39 
Generalvery nice, but an error in symbol code 44 Pin
wima8-Mar-10 19:35
wima8-Mar-10 19:35 
GeneralRe: very nice, but an error in symbol code 44 Pin
Chootair4-Apr-10 8:41
Chootair4-Apr-10 8:41 
Generalawesome Pin
Mico Perez8-Mar-10 15:12
Mico Perez8-Mar-10 15:12 
GeneralNice Work!! Pin
ReymonARG3-Mar-10 6:09
ReymonARG3-Mar-10 6:09 
GeneralGreat control! Pin
fmaeseele3-Mar-10 4:17
fmaeseele3-Mar-10 4:17 
GeneralFantastic!! Pin
Luca Bonotto3-Mar-10 1:28
Luca Bonotto3-Mar-10 1:28 
GeneralRe: Fantastic!! Pin
Member 1002008213-Sep-15 8:47
Member 1002008213-Sep-15 8:47 
GeneralGreat work Pin
Khaniya2-Mar-10 23:54
professionalKhaniya2-Mar-10 23:54 
GeneralExcellent Pin
Poiuy Terry2-Mar-10 22:39
Poiuy Terry2-Mar-10 22:39 
Generalvery funny! Pin
johannesnestler2-Mar-10 22:10
johannesnestler2-Mar-10 22:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.