Search found 112 matches

by Provo
23 Jan 2017 15:21
Forum: Recipes
Topic: [userModule] Configurator
Replies: 3
Views: 8287

[userModule] Configurator

I've created a userModule for writing device configuration parameters. Because sometimes you might want to change the maximum light intensity of a dimmer based on the time of day or year, or you might want to change the operation of your door lock or thermostat, or automate the setting of any other ...
by Provo
23 Jan 2017 13:40
Forum: Device specific
Topic: Fibaro Dimmer 2 (FDG)-212 Fully supported
Replies: 68
Views: 107180

Re: Fibaro Dimmer 2 (FDG)-212 Fully supported

This is good news. :) Also, I've never understood why the Fibaro dimmer appears as a three channel device. It instantiates three dimmer vDevs, three heat alarm vDevs and three of everything. Even though it's only able to dim a single light circuit. Why does this happen? Is this a Fibaro issue or a Z...
by Provo
04 Jan 2017 10:45
Forum: RaZberry
Topic: How to execute API commands via HTTP API?
Replies: 5
Views: 11388

Re: How to execute API commands via HTTP API?

This doesn't answer your question completely, but if you go to find.z-wave.me in your web browser, enter your Razberry ID and password, and then log in to your z-way system, the API is available like normal, simply by using the address bar and URLs like https://find.z-wave.me/ZAutomation/api/v1/devi...
by Provo
02 Jan 2017 14:50
Forum: RaZberry
Topic: HTTP request with basic auth or SSL?
Replies: 2
Views: 4562

Re: HTTP request with basic auth or SSL?

A base64 encoded http-header with "user:password" is basic auth. ;) But you can also include your credentials in the URL like this, if your client supports it:

Code: Select all

http://username:password@192.168.1.116:8083/ZAutomation/api/v1/devices/ZWayVDev_zway_5-0-37/command/on
by Provo
20 Dec 2016 16:34
Forum: Discussions in English
Topic: GE Z-Wave Dimmer Switch Memory
Replies: 3
Views: 4465

Re: GE Z-Wave Dimmer Switch Memory

What they mean is the configuration parameters, which are stored in the device itself. Different devices have different configuration parameters, which dictate how the device will behaven and operate. I'm not familiar with the Smartthings hub, but there you have a basis for googling how to find and ...
by Provo
19 Dec 2016 14:46
Forum: Discussions in English
Topic: Yale YRD210 - which hub?
Replies: 5
Views: 5287

Re: Yale YRD210 - which hub?

Oh, sorry, I didn't notice you mentioning it in the title. But as I said, if you have the Z-Wave module, any hub should in principle work.
by Provo
19 Dec 2016 12:16
Forum: Discussions in English
Topic: Yale YRD210 - which hub?
Replies: 5
Views: 5287

Re: Yale YRD210 - which hub?

You are asking which hub is compatible with your lock without saying which lock it is, which makes it difficult to help you. But in principle, as long as you keep to the right frequency for your area, any Z-Wave hub should work with any Z-Wave device (although occasionally there are some hiccups, as...
by Provo
07 Dec 2016 08:20
Forum: RaZberry
Topic: Can't login using https://find.z-wave.me
Replies: 28
Views: 38498

Re: Can't login using https://find.z-wave.me

Click the cog in the upper right corner. Then click "Managament" and "Firmware update", and "Update to latest". In the dialog that opens, click "Advanced". Make sure "Activate Remote Access" is ticked. Here you will also see your Razberry ID, and you...
by Provo
05 Dec 2016 12:44
Forum: Recipes
Topic: Javascript sample for a newbie
Replies: 21
Views: 41024

Re: Javascript sample for a newbie

You log into your Z-Way web interface. Then you click the cog in the upper right corner, and go to "Apps". Then click the "Online Apps" button. There you have a button which probably says "Featured apps". Click it and change to "Developers Stuff". There you ha...
by Provo
05 Dec 2016 12:13
Forum: Recipes
Topic: Javascript sample for a newbie
Replies: 21
Views: 41024

Re: Javascript sample for a newbie

You can't run your script from the terminal. You have to use the Z-Way module/app for executing JS scripts inside the Z-Way environment. If you want something that can be run from the terminal, you need to change your strategy. Like making http requests to your Z-Way server and using one of the APIs...