查找 Philips Hue 的网桥 IP 地址
Find the bridge IP address for Philips Hue
我使用了下面的示例 link 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 地址。有人可以解释我做错了什么吗?我确认 Philips Hue 的桥工作正常。
如何在网络中自动找到 Philips Hue 网桥?
我应该 运行 控制台应用程序使用哪些凭据?
我面临的问题:在我使用 Nuget for HueApi 并进行构建并尝试 运行 它曾经成功检索网桥 IP 地址的代码之后,但失败了其他时间。
我确保 运行 一直成功的一些事情:
1) 运行 作为 Ben 在评论中提到的 Admin
2) 清理并重建然后尝试 运行 应用程序。
我使用了下面的示例 link 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 地址。有人可以解释我做错了什么吗?我确认 Philips Hue 的桥工作正常。
如何在网络中自动找到 Philips Hue 网桥?
我应该 运行 控制台应用程序使用哪些凭据?
我面临的问题:在我使用 Nuget for HueApi 并进行构建并尝试 运行 它曾经成功检索网桥 IP 地址的代码之后,但失败了其他时间。
我确保 运行 一直成功的一些事情: 1) 运行 作为 Ben 在评论中提到的 Admin 2) 清理并重建然后尝试 运行 应用程序。