Search found 61 matches

by billyboy
01 May 2015 10:14
Forum: RaZberry
Topic: [Solved] Code_Device, BinarySwitch, state not updated
Replies: 9
Views: 11100

[Solved] Code_Device, BinarySwitch, state not updated

If i update the Code_Device from a webpage, like: http://127.0.0.1:8083/ZAutomation/api/v1/devices/Code_Device_switchBinary_29/command/on the state of device in the z-way-ha interface is not updated. The device is switched on but the UI shows off. Before with a previous version I didn't had this pro...
by billyboy
11 Dec 2014 16:00
Forum: RaZberry
Topic: 2.0.0 - a couple of issues
Replies: 6
Views: 5114

Re: 2.0.0 - a couple of issues

The calling url is changed in v2.0.0
for me:
was: http://127.0.0.1:8083/ZAutomation/api/v ... Dev_3:1:37
now: http://127.0.0.1:8083/ZAutomation/api/v ... way_3-1-37

Hope this helps you.
by billyboy
10 Dec 2014 09:58
Forum: RaZberry
Topic: [v2.0.0] How to clear warnings list?
Replies: 2
Views: 3166

[v2.0.0] How to clear warnings list?

How can I clear (all) warnings?
Also the pencil is gone at "Rearrange & Settings" and can't select this option anymore.
by billyboy
10 Dec 2014 09:53
Forum: RaZberry
Topic: [v2.0.0] Solved - error creating own deivces
Replies: 5
Views: 5169

Re: [v2.0.0] error creating own deivces

Yes it worked! Thank you.
by billyboy
09 Dec 2014 12:29
Forum: RaZberry
Topic: [v2.0.0] Solved - error creating own deivces
Replies: 5
Views: 5169

Re: [v2.0.0] error creating own deivces

One small question, where should I put my custum functions? in main.js?
by billyboy
09 Dec 2014 12:26
Forum: RaZberry
Topic: [v2.0.0] Solved - error creating own deivces
Replies: 5
Views: 5169

Re: [v2.0.0] error creating own deivces

Whow, yes I found it, that makes custimize things a lot easier!
Great release, Thanks a lot!
by billyboy
09 Dec 2014 11:39
Forum: RaZberry
Topic: [v2.0.0] Solved - error creating own deivces
Replies: 5
Views: 5169

[v2.0.0] Solved - error creating own deivces

When I add to create my own dummy devices to main.js I get the following error: Type: core Timestamp: 9/12/14-09:27 Message: Can not create vDev based on 6-0-37: TypeError: Cannot read property 'data' of undefined Code added: vDev = controller.devices.get("DummyDevice_5"); vDev.on("ch...
by billyboy
30 Jul 2014 15:10
Forum: RaZberry
Topic: Creating virtual devices in new automation
Replies: 19
Views: 22976

Re: Creating virtual devices in new automation

Here the complete code to execute a python script on switching a virtual device. I also tried to implement code to execute when the z-wave system needs to get the cuurent state, but I never se it be executed. Is it correct like this?? vDev = controller.devices.get("DummyDevice_bn_12"); vDe...
by billyboy
23 Jun 2014 10:09
Forum: RaZberry
Topic: Creating virtual devices in new automation
Replies: 19
Views: 22976

Re: Creating virtual devices in new automation

Found how to execute a python script when changing the state of a virtual device. vDev = controller.devices.get("DummyDevice_bn_12"); vDev.on("change:metrics:level", function (vDev) { var level = vDev.get('metrics:level'); var strCMD = "python /opt/z-way-server/automation/po...
by billyboy
23 Jun 2014 09:55
Forum: RaZberry
Topic: Getting new devicenames like z-way-ha UI
Replies: 1
Views: 3851

Getting new devicenames like z-way-ha UI

I have made my own UI based on the mobile UI. In the new z-way-ha UI we can create virtual devices. Now I am searching how these are displayed, so I can add them to my mobile UI. Who knows in which javascript file, they are fetched and generated for display?