Click here to Skip to main content
15,884,739 members
Articles / Desktop Programming / MFC
Article

Seven Segment LCD Control

Rate me:
Please Sign up or sign in to vote.
4.74/5 (13 votes)
18 Jan 2008CPOL2 min read 86.8K   5.9K   58   5
Simple Seven Segment LCD Control derived from CWnd and CStatic

Introduction

This control is a seven segment LCD like in digital clocks or embedded systems.

Background

I wanted to create a simple control to set date/time quickly by dragging the mouse on the number. It was self evident to make it look like a digital clock. I also wanted it simple to use and simple to deploy, e.g. without installing extra fonts, or making a special installation for the executable.

new-4.jpg

Using the Code

The Clcd7 class is the heart of it all. The demo application contains a fully functional time setting demo control, where the LCD can be used to set time (the app itself just puts the result in an edit box):

C++
    //
    // The control is easy to use. Just create a Static Control in the Dialog Editor,
    // rename its ID to something other then IDC_STATIC. Add a variable with class
    // wizard and rename the declaration in your header from CStatic to Clcd7
    //

    Clcd7    hour1, hour2;
    Clcd7    minute1, minute2;
          
In the IntDialog() function of the parent, you may set operational parameters such as:

    m_lcd.SetBgColor(RGB(192, 192, 192));  
    m_lcd.SetFgColor(RGB(12, 12, 12));      //use your colors
 
// The LCD will send the following messages to your dialog (its parent)

#define WM_OVERFLOW       (WM_USER + 1)
#define WM_UNDERFLOW      (WM_USER + 2)
#define WM_TCHANGE        (WM_USER + 3) 

(make sure the messages are unique in your app, or us RegWndMsg)

To capture these messages use:

BEGIN_MESSAGE_MAP(CTimectrlDlg, CDialog)
    //{{AFX_MSG_MAP(CTimectrlDlg)
    ......
    ON_MESSAGE(WM_TCHANGE, lcd_change)
    ......
    //}}AFX_MSG_MAP
END_MESSAGE_MAP()


To capture  the message:

void CTimectrlDlg::lcd_change(WORD wparam, LONG lparam)

{
    TRACE("lcd change on %d\r\n", wparam);
}

The wparam contains the control id of the LCD that sent the message.

Points of Interest

I used Windows message mechanism to send a message when the LCD has changed. This allowed a very simple code to update the UI feedback and to update the edit box that mirrored the current numbers.

The underflow or overflow messages can be used to couple multiple LCDs together very simply. The principle is as follows:

If LCD1 sends an overflow message -> increment LCD2 .....

C++
if(pMsg->message == WM_OVERFLOW)
    {
    TRACE("CTimectrlDlg::PreTranslateMessage WM_OVERFLOW on %d\r\n", pMsg->wParam);
    if(pMsg->wParam    == CONTROL_FOR_LOWER_DIGIT)
        {
        // m_lcd2 is the CONTROL_FOR_HIGHER_DIGIT
        m_lcd2.num++;
        m_lcd.Invaldate();
        }
    }

The same can be done for the UNDERFLOW as well. When Invalidate() is called, the control may send a message if it overflows. This allows cascading multiple LCDs.

To set the LCD to Hex mode, use:

C++
// Hex Mode:
    SetMinMax(0, 15);

// Dec Mode:
   SetMinMax(0, 9);
new-3.jpg

I also made arrangements to set the parameters of the control, sensitive to its Windows creation state. This way, parameters can be set on the pre-creation state without blowing the whole thing up with an ASSERT.

C++
Here is a snippet how:

void Clcd7::SetBgColor(COLORREF col)
{
    bg = col;

    if(::IsWindow(m_hWnd))
        Invalidate();
}

An older version of the control demo:

new-2.jpg

History

  • 16th January, 2008: Initial release
  • 18th January, 2008: Added cleaned version of the source (cleaned out *.obj and such)

Notables

I tried using an LCD font as a display for the control. While displaying the font was easy, hit testing on the font, scaling it and magnifying it was harder. The : (colon) was in the wrong place, the gaps did not magnify as nicely as needed, and making the lines thin or fat was not an option. Hence the custom LCD. One cool side effect is that it can be used in the transparency environment.

Thanks for reading.

License

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


Written By
Software Developer (Senior) Self Employed
United States United States
C, C++, DSP, Graphical Apps, UNIX, LINUX

Comments and Discussions

 
GeneralGood stuff! Pin
trevor.hart22-Jan-08 9:53
trevor.hart22-Jan-08 9:53 
GeneralVery nice looking Pin
Sam Levy18-Jan-08 3:18
Sam Levy18-Jan-08 3:18 
GeneralRe: Very nice looking Pin
PeterGlen18-Jan-08 16:56
PeterGlen18-Jan-08 16:56 
QuestionWhat's the Use? Pin
Priyank Bolia16-Jan-08 4:14
Priyank Bolia16-Jan-08 4:14 
AnswerRe: What's the Use? Pin
EricLayne21-Aug-10 10:44
EricLayne21-Aug-10 10:44 

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.