Delphi程序读取RSSI的无线连接?

时间:2013-01-14 18:54:07

标签: delphi logging wireless rssi

我想编写一个简单的实用程序来定期将我的WiFi路由器的RSSI记录到文本文件中。有人知道Delphi库或API包装器来读取无线路由器的RSSI值吗?

1 个答案:

答案 0 :(得分:4)

您可以使用Native Wifi API获取有效网络wifi连接的RSSI,在调用WlanOpenHandleWlanEnumInterfaces函数后,必须执行WlanQueryInterface方法通过wlan_intf_opcode_current_connection枚举值和指向WLAN_CONNECTION_ATTRIBUTES结构的指针,您必须在此处访问wlanAssociationAttributes元素并最终读取wlanSignalQuality字段的值。

这是该字段的描述。

  

wlanSignalQuality

A percentage value that represents the signal quality of the network. 
     

WLAN_SIGNAL_QUALITY的类型为ULONG。该成员包含一个   值0在0之间。值0表示实际的RSSI信号   强度为-100 dbm。值100表示​​实际的RSSI信号   强度为-50 dbm。您可以计算RSSI信号强度值   对于使用线性的wlanSignalQuality值介于1和99之间   内插。

试试此示例代码

uses
  Windows,
  SysUtils,
  nduWlanAPI   in 'nduWlanAPI.pas',
  nduWlanTypes in 'nduWlanTypes.pas';

procedure Scan();
var
  hClient              : THandle;
  dwVersion            : DWORD;
  ResultInt            : DWORD;
  pInterface           : Pndu_WLAN_INTERFACE_INFO_LIST;
  i                    : Integer;
  pInterfaceGuid       : TGUID;
  pdwDataSize, RSSI    : DWORD;
  ppData               : pndu_WLAN_CONNECTION_ATTRIBUTES;
begin
  ResultInt:=WlanOpenHandle(1, nil, @dwVersion, @hClient);
 try
  if  ResultInt<> ERROR_SUCCESS then
  begin
     WriteLn('Error Open CLient'+IntToStr(ResultInt));
     Exit;
  end;

  ResultInt:=WlanEnumInterfaces(hClient, nil, @pInterface);
  if  ResultInt<> ERROR_SUCCESS then
  begin
     WriteLn('Error Enum Interfaces '+IntToStr(ResultInt));
     exit;
  end;

  for i := 0 to pInterface^.dwNumberOfItems - 1 do
  begin
    Writeln('Interface  ' + pInterface^.InterfaceInfo[i].strInterfaceDescription);
    WriteLn('GUID       ' + GUIDToString(pInterface^.InterfaceInfo[i].InterfaceGuid));
    pInterfaceGuid:= pInterface^.InterfaceInfo[pInterface^.dwIndex].InterfaceGuid;

    ppData:=nil;
    pdwDataSize:=0;
    ResultInt:=WlanQueryInterface(hClient, @pInterfaceGuid, wlan_intf_opcode_current_connection, nil, @pdwDataSize, @ppData,nil);
    try
      if (ResultInt=ERROR_SUCCESS) and (pdwDataSize=SizeOf(Tndu_WLAN_CONNECTION_ATTRIBUTES)) then
      begin
        Writeln(Format('Profile %s',[ppData^.strProfileName]));
        Writeln(Format('Mac Address %.2x:%.2x:%.2x:%.2x:%.2x:%.2x',[
        ppData^.wlanAssociationAttributes.dot11Bssid[0],
        ppData^.wlanAssociationAttributes.dot11Bssid[1],
        ppData^.wlanAssociationAttributes.dot11Bssid[2],
        ppData^.wlanAssociationAttributes.dot11Bssid[3],
        ppData^.wlanAssociationAttributes.dot11Bssid[4],
        ppData^.wlanAssociationAttributes.dot11Bssid[5]]));
        RSSI := (ppData^.wlanAssociationAttributes.wlanSignalQuality div 2) - 100;
        Writeln(Format('RSSI %d dbm',[RSSI]));
      end;
    finally
      if ppData<>nil then
       WlanFreeMemory(ppData);
    end;
  end;
 finally
  WlanCloseHandle(hClient, nil);
 end;
end;

begin
  try
    Scan();
  except
    on E:Exception do
      Writeln(E.Classname, ': ', E.Message);
  end;
  Readln;
end.

注意:遗憾的是,AFAIK不存在本地Wifi API标头到Delphi的官方版本,因此在此期间您可以使用these