Search found 25 matches

by pah111kg
04 Jan 2017 15:10
Forum: Discussions in English
Topic: How connect Z-Way via remote service find.z-wave.me
Replies: 2
Views: 4253

Re: How connect Z-Way via remote service find.z-wave.me

Hi, Look at the issue: https://github.com/Z-Wave-Me/home-automation/issues/411. For my client it works as described below: POST: https://find.z-wave.me/zboxweb with - Content type: application/x-www-form-urlencoded - POST data: act=login&login=***/admin&pass=*** Store cookies contained in th...
by pah111kg
22 Dec 2016 13:17
Forum: Discussions in English
Topic: How connect Z-Way via remote service find.z-wave.me
Replies: 2
Views: 4253

How connect Z-Way via remote service find.z-wave.me

Hi, I'm working on a Java client and try to connect Z-Way via the remote service. POST: https://find.z-wave.me:443/zboxweb?act=login&login=***/admin&pass=*** But the ZBW-SESSID header is empty (HTTP response status is 200 and the content is the find.z-wave.me/zboxweb HTML-Code). My logging d...
by pah111kg
16 Dec 2016 08:50
Forum: Discussions in English
Topic: Module that send events over TCP/UDP or websocket
Replies: 17
Views: 16163

Re: Module that send events over TCP/UDP or websocket

Hello, I've tried your code and it has worked. I ran your JavaScript in the browser on my laptop and connected to my RaspberryPi. I use the latest Z-Way version 2.2.5 on RaspberryPi. Did you run the refresh command? The WebSocket Configurator subscribes to the events of all devices otherwise only wi...
by pah111kg
13 Dec 2016 11:20
Forum: Discussions in English
Topic: Module that send events over TCP/UDP or websocket
Replies: 17
Views: 16163

Re: Module that send events over TCP/UDP or websocket

I've implemented a mini App, which publishes all device status changes via WebSockets. 1.) add token: sse_zwickau_ws_beta 2.) download WebSocket Configurator 3.) instantiate the app 4.) one-time initialization or, for new devices, the following command: [url]http://YOUR_IP:8083/ZAutomation/api/v1/de...
by pah111kg
11 Dec 2016 18:26
Forum: Discussions in English
Topic: Module that send events over TCP/UDP or websocket
Replies: 17
Views: 16163

Re: Module that send events over TCP/UDP or websocket

Look at the instructions: https://github.com/pathec/openhab2-addons/blob/zway-binding/addons/binding/org.openhab.binding.zway/doc/GETTING_STARTED.md . You can find a general description here: https://github.com/pathec/openhab2-addons/blob/zway-binding/addons/binding/org.openhab.binding.zway/README.md
by pah111kg
11 Dec 2016 15:45
Forum: Discussions in English
Topic: Module that send events over TCP/UDP or websocket
Replies: 17
Views: 16163

Re: Module that send events over TCP/UDP or websocket

Hi,

I have implemented a module that sends all device state changes to openHAB, either via HTTP or WebSockets. What do you mean with all events, only with regard to the device status or also something like, new devices, new rooms, notifications, ...? What is the API of the other system?

Patrick
by pah111kg
05 Dec 2016 20:16
Forum: Discussions in English
Topic: Thermostat Modes standardized by Z-Wave?
Replies: 0
Views: 2360

Thermostat Modes standardized by Z-Wave?

Does anyone know whether the modes are the same for all thermostats? I know these are valid for the StellaZ thermostat: Frost Protection: BASIC SET 0x01, THERMOSTAT MODE SET 0x00 Energy Saving: BASIC SET 0x00, THERMOSTAT MODE SET 0x0b Comfort: BASIC SET 0xff, THERMOSTAT MODE SET 0x01 Direct Control:...
by pah111kg
03 Dec 2016 18:07
Forum: Discussions in English
Topic: Module that sets config params
Replies: 14
Views: 39085

Re: Module that sets config params

But to the question of changing the setting out of a module, that would be the solution (from CodeDevice: index.js Ln141):

Code: Select all

eval("zway.devices[42].ThermostatMode.Set(0)")
Am I right?

I need that as well for the adjustment of the color of the Fibaro WallPlug.
by pah111kg
03 Dec 2016 17:50
Forum: Discussions in English
Topic: Module that sets config params
Replies: 14
Views: 39085

Re: Module that sets config params

Thanks for your reply pz1!

I'll join the discussion on Github.
by pah111kg
02 Dec 2016 21:54
Forum: Discussions in English
Topic: Module that sets config params
Replies: 14
Views: 39085

Re: Module that sets config params

Is there news for this?

I need this function to set the thermostat mode. The virtual devices for the thermostat mode is a binary switch but some thermostats have several modes, e.g. Frost Protection, Energy Saving, Comfort and Direct Control for StellaZ. How could this be enabled via virtual devices?