Click here to Skip to main content
15,879,326 members
Articles / Programming Languages / C#

TrafficLights

Rate me:
Please Sign up or sign in to vote.
4.80/5 (34 votes)
3 Apr 2012CPOL1 min read 69.8K   4.2K   78   14
Blinks keyboard LEDs to display network traffic.

Introduction 

I wanted to see the network activity other than in the system tray network icon, so I thought of using the keyboard's CAPS LOCK, SCROLL LOCK, and NUM key LEDs to display the network activity. TrafficLights is a simple application which blinks keyboard lights based on the network traffic on your computer. You can configure which light should blink on send or receive packets. It silently sits on your system tray. You can right click on TrafficLights' system tray icon to configure the LEDs or shut it down.

Background 

This is just to learn how to trap network traffic and control keyboard LEDs in .NET.

Using the Code

There are basically two parts to this application:

  • How to identify network traffic.
  • The code below is used to initialize the PerformanceCounter class instances - one for send and one for receive (namely m_performanceCounterSent and m_performanceCounterReceive). They are initialized like so:

    C#
    //
    m_performanceCounterCategory = new PerformanceCounterCategory("Network Interface");
    string instance = m_performanceCounterCategory.GetInstanceNames()[0]; // 1st NIC !
    m_performanceCounterSent = new PerformanceCounter("Network Interface", 
                                   "Bytes Sent/sec", instance);
    m_performanceCounterReceived = new PerformanceCounter("Network Interface", 
                                       "Bytes Received/sec", instance);
  • How to control keyboard LEDs.
  • A background thread keeps running in the application, and it keeps on checking on the performance counter to check any network activity. And when an activity is detected, it blinks the configured keyboard LED.

    C#
    float fSentValue = m_performanceCounterSent.NextValue() / 1024;
    float fReceivedValue = m_performanceCounterReceived.NextValue() / 1024;
    if (fSentValue > 0)
    {
       keybd_event((byte)m_sendLED, 0x45, KEYEVENTF_EXTENDEDKEY, (UIntPtr)0);
       keybd_event((byte)m_sendLED, 0x45, 
                    KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, (UIntPtr)0);
    }
    if (fReceivedValue > 0)
    {
       keybd_event((byte)m_receiveLED, 0x45, KEYEVENTF_EXTENDEDKEY, (UIntPtr)0);
       keybd_event((byte)m_receiveLED, 0x45, 
                    KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, (UIntPtr)0);
    }

Points of Interest

As I mentioned earlier, it's a very simple application, but the intention was to learn how to trap network traffic in .NET.

History

This is the first version of this application. Also, my first attempt to post anything on CodeProject.

License

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


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

Comments and Discussions

 
QuestionNot sure it's a good idea. Pin
Thornik9-Apr-12 22:03
Thornik9-Apr-12 22:03 
QuestionStart menu Pin
AndreasJoh4-Apr-12 2:01
AndreasJoh4-Apr-12 2:01 
GeneralMy vote of 5 Pin
Abinash Bishoyi22-Mar-12 1:32
Abinash Bishoyi22-Mar-12 1:32 
GeneralGood C# copy Pin
Igor Tolmachev16-Jan-10 4:53
Igor Tolmachev16-Jan-10 4:53 
GeneralRe: Good C# copy Pin
Amit Engineer18-Jan-10 9:01
Amit Engineer18-Jan-10 9:01 
GeneralRe: Good C# copy Pin
Rafael Nicoletti3-Apr-12 11:47
Rafael Nicoletti3-Apr-12 11:47 
GeneralNice and funny Pin
Muhammad Nauman Yousuf14-Dec-09 22:24
Muhammad Nauman Yousuf14-Dec-09 22:24 
GeneralNice but heavy CPU load Pin
onclethomas11-Dec-09 8:38
onclethomas11-Dec-09 8:38 
GeneralRe: Nice but heavy CPU load Pin
Amit Engineer11-Dec-09 10:01
Amit Engineer11-Dec-09 10:01 
QuestionRe: Nice but heavy CPU load Pin
Amit Engineer11-Dec-09 10:11
Amit Engineer11-Dec-09 10:11 
AnswerRe: Nice but heavy CPU load Pin
Igor Tolmachev16-Jan-10 4:56
Igor Tolmachev16-Jan-10 4:56 
See the "Updating Your Code" guideline here: "http://www.codeproject.com/info/Submit.aspx[^]
Generalgreat Pin
thebeekeeper11-Dec-09 4:57
thebeekeeper11-Dec-09 4:57 
Generalfunny.. [modified] Pin
reborn_zhang11-Dec-09 4:45
reborn_zhang11-Dec-09 4:45 
GeneralRe: funny.. Pin
reborn_zhang11-Dec-09 4:56
reborn_zhang11-Dec-09 4:56 

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.