我正在调查UPnP, 借助生成的 Java/和机器人堆叠, 由设备制造者创造, 与UPnP工具来自英特尔。 来制造一个机器人应用程序, 这是UPnP系统中的控制点。
为了帮助我理解这些工具的原则,我创造了一个网络灯光,并为机器人制造了堆叠。但我似乎无法解决如何打开和关闭网络灯的问题。
有人能给我个建议吗?
感谢任何帮助
我正在调查UPnP, 借助生成的 Java/和机器人堆叠, 由设备制造者创造, 与UPnP工具来自英特尔。 来制造一个机器人应用程序, 这是UPnP系统中的控制点。
为了帮助我理解这些工具的原则,我创造了一个网络灯光,并为机器人制造了堆叠。但我似乎无法解决如何打开和关闭网络灯的问题。
有人能给我个建议吗?
感谢任何帮助
这是否意味着您的网络灯光已经运行了? 您是否看到您的Android上的灯泡? 您的Android是否连接到私人的本地网络? 您的WiFi 也许是。 UPnP 计划用于本地信任的网络( 没有包含每个设计的安全性 ) 。
如果是这样的话, 请访问与 Android 连接到与上述工具中的设备Spy 连接的同一网络, 并查找 DimmableLight 类型的“ 网络光” 设备。 有关可用它完成的完整描述可见于 < a href=" http:// upnp.org/resources/ upnpresources.zip" rel= “ nofollow” > http:// upnp. org/resources/ upnpresources.zip 和那里
标准 dcps/ Lighting controls_1/UPnP-ha-DimmmableLight-v1-Device*.pdf 标准dcps/ Lighting controls_1/UPnP-ha-dimmableLight-v1-Device*.pdf
设备Spy 暴露了所有界面和状态变量, 您可以检查、 调用和修改这些变量 。 在引擎盖下没有火箭科学, 普通的 SOAP 与 HTTP 相比, 带有一些扩展信头, 并加了多播的盐。 因此, 要驱动网络光, 您需要自己写入一个控制点 。 我猜有关的 Dev 工具也可以为您生成堆叠 。 或者使用一些我将在此重述的独立的 libs 。
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...