Click here to Skip to main content
15,880,796 members
Articles / Programming Languages / C#
Article

Wireless signal indicator

Rate me:
Please Sign up or sign in to vote.
2.77/5 (16 votes)
7 Feb 2008CPOL 118.1K   5.1K   51   17
A desktop utility to indicate the current wireless singnal strength, signal quality, and link status.

Image 1

Introduction

Wireless signal status indicator is a simple tray application which gives continuous status information about the signal strength, signal quality, and link status. The application is rich in UI to show all these details in an effective manner.

Background

  • Signal strength: The received strength of the wireless signal at the client adapter.
  • Signal quality: The quality of the signal received at the client adapter.
  • Link status: The link quality between the client adapter and the corresponding wireless network.

Using the code

The native Wifi WlanQueryInterface() function is used to query the "connection attributes" of a wireless connection. This function will be called in client program in a timer functionality to get the signal quality continuously.

Based on interpolation between the signal quality and signal strength, the signal strength is calculated as:

C#
public static uint GetSignalQuality(Guid gg)
{
    UInt32 dwSize = 0;
    IntPtr ppData = IntPtr.Zero;
    IntPtr ppChannel = IntPtr.Zero;
    WLAN_OPCODE_VALUE_TYPE pOpcodeValueType;

    if (WlanQueryInterface(m_pClientHandle, ref gg, 
        WLAN_INTF_OPCODE.wlan_intf_opcode_current_connection, 
        IntPtr.Zero, out dwSize, out ppData, 
        out pOpcodeValueType) != ERROR_SUCCESS)
    {
        m_errorMessage = "Failed WlanQueryInterface() - " + 
                         "Current  Connection Attributes";
        return 0;
    }

    if (ppData != IntPtr.Zero)
    {
        WLAN_CONNECTION_ATTRIBUTES connectionAttributes = 
             new WLAN_CONNECTION_ATTRIBUTES(ppData);
        return connectionAttributes.wlanAssociationAttributes.wlanSignalQuality;

    }
    return 0;
}

Points of interest

The tool also provides a context menu in the tray icon to select the network interface through which you want to query the signal quality, and an Exit menu to close the application.

License

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


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

Comments and Discussions

 
QuestionCan this application be used for more than 1 network? Pin
mona199019-Mar-14 7:46
mona199019-Mar-14 7:46 
Question[My vote of 2] Getting marshalling error on GetSignalQuality and no source for ConnectionClass.dll Pin
cobaia0129-May-13 11:19
cobaia0129-May-13 11:19 
QuestionNo signal strength reported on Win7 tablet PC, Thoughts? Pin
Rascal910-Apr-13 11:43
Rascal910-Apr-13 11:43 
QuestionWin7 64Bit Issue Pin
Stan Bartsch18-Sep-12 6:17
Stan Bartsch18-Sep-12 6:17 
GeneralMy vote of 1 Pin
User 198493324-May-12 9:51
User 198493324-May-12 9:51 
QuestionConnectionClass Source Code Pin
aefaustino25-Apr-12 2:09
aefaustino25-Apr-12 2:09 
QuestionUsing DeviceIoControl Pin
Debojyoti Majumder30-Mar-11 18:43
Debojyoti Majumder30-Mar-11 18:43 
GeneralGreat work Pin
TJTurner28-Sep-09 16:17
TJTurner28-Sep-09 16:17 
GeneralMy vote of 1 Pin
sesar30-Aug-09 15:06
sesar30-Aug-09 15:06 
GeneralRe: My vote of 1 Pin
RickNash14-Sep-09 2:46
RickNash14-Sep-09 2:46 
GeneralMy vote of 2 Pin
Country Man9-Jun-09 4:37
Country Man9-Jun-09 4:37 
GeneralMy vote of 1 Pin
Bikkel324-Jun-09 20:22
Bikkel324-Jun-09 20:22 
Source is not complete. The most important part (WlanConnection.ConnectionClass) is missing.
GeneralConnectionClass Pin
buratino2214-Jul-08 22:55
buratino2214-Jul-08 22:55 
GeneralConnectionClass.dll Pin
RickNash14-Apr-08 5:20
RickNash14-Apr-08 5:20 
GeneralRe: ConnectionClass.dll Pin
mygapula sudheer10-Sep-09 23:52
mygapula sudheer10-Sep-09 23:52 
GeneralExcellent One........ Pin
ravinaik7-Feb-08 18:14
ravinaik7-Feb-08 18:14 
GeneralGreat Work!! Pin
MayankSingla7-Feb-08 17:53
MayankSingla7-Feb-08 17:53 

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.