找到Philips Hue的桥接IP地址

时间:2015-07-28 02:04:30

标签: c# philips-hue

我使用了以下链接Nuget for HueApi

中的示例
static void Main(string[] args)
{
    IBridgeLocator locator = new SSDPBridgeLocator();

    //For Windows 8 and .NET45 projects you can use the SSDPBridgeLocator which actually scans your network. 
    //See the included BridgeDiscoveryTests and the specific .NET and .WinRT projects
    IEnumerable<string> bridgeIPs = locator.LocateBridgesAsync(TimeSpan.FromSeconds(5)).GetAwaiter().GetResult();
    foreach (var bridgeIp in bridgeIPs)
    {
        Console.WriteLine(bridgeIp);
    }
    Console.ReadLine();
}

当我运行此控制台应用程序时,它找不到桥接IP地址。有人能解释一下我做错了什么吗?我验证了飞利浦Hue的桥梁工作正常。

如何在网络中自动找到飞利浦Hue桥?

我应该在哪个凭据上运行控制台应用?

1 个答案:

答案 0 :(得分:0)

我遇到的问题:在我使用Nuget for HueApi并进行构建并尝试运行其曾经成功检索桥接IP地址的代码后,但在其他时间失败了。

我确保一直成功运行的一些事情: 1)在评论中以Ben提到的管理员身份运行 2)进行清理并重建,然后尝试运行该应用程序。