如何使用PhoneGap到OpenHAB从客户端应用程序访问?

时间:2014-08-25 20:22:17

标签: html5 cordova frameworks openhab

我正在为openHAB开发一个混合应用程序(使用PhoneGap)。目前,我正在努力构建从混合到OpenHAB运行时的连接。有什么建议?

2 个答案:

答案 0 :(得分:1)

连接到openHAB运行时的预期方法是REST API,在wiki中有详细描述(参见https://github.com/openhab/openhab/wiki/REST-API)。

您还可以查看原生Android客户端的实现(请参阅https://github.com/openhab/openhab.android)或基于Sencha Touch的greenT HTML5应用程序(请参阅https://github.com/openhab/openhab/tree/master/distribution/openhabhome/webapps/greent)。

希望这有帮助,

Thomas E.-E。

答案 1 :(得分:0)

openhab有一个REST API实现为捆绑。这可以通过网址“http://openhabip:8080/rest/”访问。

如果您想访问这些项目并实现自己的UI,可以使用“http://openhabip:8080/rest/items”和HTTP GET,POST,PUT。

否则您可以使用“http://:8080 / rest / sitemaps”并使用openhab提供的站点地图。

详细信息位于https://github.com/openhab/openhab/wiki/REST-API