Search found 119 matches

by dolpheen
19 Apr 2015 20:27
Forum: Recipes
Topic: [userMODULE] Lircd - Razberry IR control
Replies: 4
Views: 20353

[userMODULE] Lircd - Razberry IR control

Here is a razberry module for popular Lirc library that will allow you to control your Razberry Smart Home with any ordinary remote control or replace your any IR remote control with razberry. In this topic I'll describe how to control your razberry devices with simple IR control priced 5$ or you ca...
by dolpheen
19 Apr 2015 18:19
Forum: RaZberry
Topic: Websocket Support in 2.0
Replies: 37
Views: 38275

Re: Websocket Support in 2.0

pofs , could you help with TCP issue? I tested sending and recieving with TCP seems OK. But onconnect(), onclose() are called only for listening sockets. For client connection there are no events fired on connection or on close, and when then I try to send on closed connection the z-way-server proc...
by dolpheen
19 Apr 2015 15:43
Forum: Recipes
Topic: [userMODULE] eaZy Logic for starters
Replies: 20
Views: 30094

Re: [userMODULE] eaZy Logic for starters

Strange, there should be no problem copying files under pi account.
May be try with sudo?
by dolpheen
16 Apr 2015 19:42
Forum: Recipes
Topic: [HowTo] Authentication for your Razberry (using nginx)
Replies: 3
Views: 21068

[HowTo] Authentication for your Razberry (using nginx)

The topic decribe how to set-up autentication for your Razberry. For example if you have several razberries in your local network and want to restrict access to them or if you want to securely access your razberry outside from your local network if you have static ip or dynamic DNS (as alternative f...
by dolpheen
15 Apr 2015 23:53
Forum: RaZberry
Topic: Problem With Delayed Scene
Replies: 22
Views: 22985

Re: Problem With Delayed Scene

SolarFlor wrote:do you mind to tell me in which post you provided the link?
Here it is viewtopic.php?f=3424&t=21448
by dolpheen
15 Apr 2015 23:43
Forum: RaZberry
Topic: Problem With Delayed Scene
Replies: 22
Views: 22985

Re: Problem With Delayed Scene

It's not preinstalled, you should install it by yourself. You can find it in Recipes section of this forum, or follow the link I provided in previous post.
by dolpheen
15 Apr 2015 23:39
Forum: Discussions in English
Topic: Execute external shell script
Replies: 22
Views: 27480

Re: Execute external shell script

kimeh, wrap the command name in quotes
by dolpheen
15 Apr 2015 23:26
Forum: RaZberry
Topic: Problem With Delayed Scene
Replies: 22
Views: 22985

Re: Problem With Delayed Scene

SolarFlor you can use the next eazyLogic code for your logic. // Turn off dimmer after 10 sec after motion sensor is off. _z('motion sensor').onOff( function() { if(_z('Motion Sensor Luminiscence').getLevel() < 50) _z('dimmer on desk').delay(10).on() }) How it works. We watch when 'motion sensor' i...
by dolpheen
15 Apr 2015 13:29
Forum: RaZberry
Topic: Secure remote requests to Razberry
Replies: 16
Views: 19457

Re: Secure remote requests to Razberry

Yes, I checked it and it doesn't work from browser javascript.
I forget about cross-domain issues while using cookies.
I think the logic can be done in PHP (with direct setting cookies) but I'm not a php master :)
by dolpheen
15 Apr 2015 10:58
Forum: RaZberry
Topic: Secure remote requests to Razberry
Replies: 16
Views: 19457

Re: Secure remote requests to Razberry

I didn't check it, but if you want to use JQuery, the post should be in the next format $.post( https://find.z-wave.me/zboxweb", { act: "login", login: 'xxxxxx', pass:'xxxxxx' }) .done(function( data ) { alert( "Data returned: " + data ); }); For installing and configuring n...