Search found 61 matches

by billyboy
15 May 2018 15:39
Forum: RaZberry
Topic: Fetching Data in Python through JSON
Replies: 0
Views: 2919

Fetching Data in Python through JSON

For my project I needed to fetch z-wave location and device info and fill structs with this data. I have writen python code to do this and want to share it with you. Use it if you like. fetchData.py import json import requests topLevelUrl = 'http://127.0.0.1:8083' DevicesUrl= topLevelUrl +'/ZAutomat...
by billyboy
06 Oct 2017 11:47
Forum: RaZberry
Topic: Create a sprinkler program
Replies: 6
Views: 7095

Re: Create a sprinkler program

Thank you for responding.

From my z-way webinterface and through Apple Homekit I already can control the sprinkler valves. I am looking for a way to schedulling a sprinkler program. There are a lot of plugings, there must be one that I can use to achief this.
But which one? and how?
by billyboy
26 Sep 2017 09:54
Forum: RaZberry
Topic: Create a sprinkler program
Replies: 6
Views: 7095

Create a sprinkler program

I have 3 sprinkler groups, which I want to scheduling after eachother for a different time for each zone. It must be possible to start irrigation by a press of a button and by using a time scheduling. I have looked very long to find a plugin for making this happen, but not succeeded. How can help me...
by billyboy
24 May 2016 15:49
Forum: RaZberry
Topic: need JSON commands
Replies: 9
Views: 11074

Re: need JSON commands

by billyboy
24 May 2016 15:41
Forum: RaZberry
Topic: Turn Razberry to a Z-wave device, not a controller
Replies: 6
Views: 7891

Re: Turn Razberry to a Z-wave device, not a controller

PoltoS wrote:May be you need Z-Uno? http://z-uno.z-wave.me
I want one, it's just what I need!
by billyboy
14 Mar 2016 10:10
Forum: RaZberry
Topic: Set state Code_Device at startup
Replies: 3
Views: 5600

Re: Set state Code_Device at startup

Can no one help me?
by billyboy
14 Mar 2016 10:09
Forum: RaZberry
Topic: [module] Foscam 8910W
Replies: 0
Views: 2968

[module] Foscam 8910W

Hi all, I made a module to support the Foscam 8910W/8918W camera including control. Create a user in camera ui, this user must be a Operator! Upzip the folder in z-way-server/automation/modules restart z-wave server add the camera to z-wave ui and fill in ip and user that you created above. save and...
by billyboy
07 Mar 2016 12:45
Forum: RaZberry
Topic: Set state Code_Device at startup
Replies: 3
Views: 5600

Re: Set state Code_Device at startup

Hi PoltoS,

Thanks for your reply. Can you give me a example how to do this?
by billyboy
29 Jul 2015 09:19
Forum: RaZberry
Topic: Set state Code_Device at startup
Replies: 3
Views: 5600

Set state Code_Device at startup

I have a custom JavaScript which I added to my to my Z-Wave.me server to "Load custom JavaScript file" The functions in this script work great. I want to set the state of my Code_Devices at startup. For that I added this code: var portDevices = [ "Code_Device_switchBinary_22", &q...
by billyboy
28 Jul 2015 10:13
Forum: RaZberry
Topic: [Solved] http request, json device list empty
Replies: 9
Views: 11147

Re: http request, json device list empty

Tanks to PoltoS, I made some changes to allow cookie validation and now and it works! I use the requests library in Python and added a session. To get JSon string with all devices I made following test script: import json import requests topLevelUrl = 'http://127.0.0.1:8083' DevicesUrl= topLevelUrl ...