English 中文(简体)
UPnP: 英特尔: 生成堆叠: java 和roid: 在网络光采样中援引动作
原标题:UPnP: intel: generate stack: java android: invoking actions on network light sample

我正在调查UPnP, 借助生成的 Java/和机器人堆叠, 由设备制造者创造, 与UPnP工具来自英特尔。 来制造一个机器人应用程序, 这是UPnP系统中的控制点。

工具源:http://opentools.homeip.net/dev-tools-for-upnp' rel=“no follows”>http://opentools.homeip.net/dev-tools-for-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 。

问题回答

暂无回答




相关问题
Spring Properties File

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 ...

Logging a global ID in multiple components

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 ...

Java Library Size

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 ...

How to get the Array Class for a given Class in Java?

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....

SQLite , Derby vs file system

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 ...

热门标签