Search found 36 matches

by kambis
02 Aug 2014 16:19
Forum: RaZberry
Topic: Custom User Code
Replies: 5
Views: 9031

Re: Custom User Code

I saw your code in between, thank you for sharing.
by kambis
02 Aug 2014 16:15
Forum: Recipes
Topic: [userMODULE] SwitchPolling - (Updated Dec 17, 2014)
Replies: 5
Views: 13250

Re: New Module SwitchPolling

Thank you for sharing your work.
I will have a deeper look on it in the next days, just wanted to confirm, that I could successfully load your code into the server and see sensors in the list.
by kambis
19 Jul 2014 00:13
Forum: RaZberry
Topic: Debugger for Z-Way JavaScript
Replies: 51
Views: 115314

Re: Debugger for Z-Way JavaScript

It seems you are on the road. if you see sources of all modules in your browser, then you are done.
You may find some good hints for working if you go completely through this post:
viewtopic.php?f=3422&t=20387&start=10

Good luck. ;)
by kambis
18 Jul 2014 23:41
Forum: RaZberry
Topic: Razpberry & Fibaro FGS221
Replies: 9
Views: 14366

Re: Razpberry & Fibaro FGS221

Hm..., just came in my mind while reading your post:
Did you excluded all your devices before? The new controller has a new network HomeID and you need to reset all devices before you can include them into the new network. A new controller has by nature a different ID than your old one.
by kambis
18 Jul 2014 23:31
Forum: RaZberry
Topic: Debugger for Z-Way JavaScript
Replies: 51
Views: 115314

Re: Debugger for Z-Way JavaScript

Please check if your z-way-server file in /etc/init.d/ folder has the following entries:

Code: Select all

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/z-way-server/libs
export V8_DEBUG=yes
and don't forget to restart the z-way-server:

Code: Select all

/etc/init.d/z-way-server restart
by kambis
18 Jul 2014 18:53
Forum: Recipes
Topic: [HowTo] Example:Creating Virtual devices & Remote Logging
Replies: 13
Views: 53042

Re: Example Code: Creating Virtual devices & Remote Logging

Hi islipfd19, you have syntax error in your index.js file. The lines 13, 15, 21, 23, 68 and 70 must begin with: < // > Means, instead of this: // ---------------------------------------------------------------------------- // --- Class definition, inheritance and setup // ---------------------------...
by kambis
18 Jul 2014 08:21
Forum: Discussions in English
Topic: Newbie questions...
Replies: 6
Views: 47979

Re: Newbie questions...

For some of questions above you can find answers by looking here
by kambis
18 Jul 2014 07:48
Forum: Recipes
Topic: [HowTo] Example:Creating Virtual devices & Remote Logging
Replies: 13
Views: 53042

Re: Example Code: Creating Virtual devices & Remote Logging

Hi islipfd19, you have unexpected characters in your module.json line 9, 19, 22, 33 and 36 Delete the lines you don't need and learn more how to write json files by following the posts: http://forum.z-wave.me/viewtopic.php?f=3424&t=20496 http://forum.z-wave.me/viewtopic.php?f=3424&t=20492 I ...
by kambis
18 Jul 2014 07:35
Forum: RaZberry
Topic: Debugger for Z-Way JavaScript
Replies: 51
Views: 115314

Re: Debugger for Z-Way JavaScript

Hi dylancaponi, You don't need any tunnel! Even though the message on raspberry tells to visit http://127.0.0.1:8080/debug?port=8183 to start debugging, don't use the ip 127.0.0.1! Just open in your browser following link: [url]http://<IP_of_your_Raspberry>:8080/debug?port=8183[/url] by replacing th...
by kambis
17 Jul 2014 09:53
Forum: Recipes
Topic: [HowTo] Example:Creating Virtual devices & Remote Logging
Replies: 13
Views: 53042

Re: Example Code: Creating Virtual devices & Remote Logging

Here some points for you, which might be helpful to solve your problem: Have a deeper look in the automation rule BatteryPolling in the path /opt/z-way-server/automation/modules/BatteryPolling There you find how to setup a cron handler and add a cron schedule to periodically poll the status of your ...