Search found 119 matches
- 19 Apr 2015 20:27
- Forum: Recipes
- Topic: [userMODULE] Lircd - Razberry IR control
- Replies: 4
- Views: 21063
[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...
- 19 Apr 2015 18:19
- Forum: RaZberry
- Topic: Websocket Support in 2.0
- Replies: 37
- Views: 41925
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...
- 19 Apr 2015 15:43
- Forum: Recipes
- Topic: [userMODULE] eaZy Logic for starters
- Replies: 20
- Views: 32887
Re: [userMODULE] eaZy Logic for starters
Strange, there should be no problem copying files under pi account.
May be try with sudo?
May be try with sudo?
- 16 Apr 2015 19:42
- Forum: Recipes
- Topic: [HowTo] Authentication for your Razberry (using nginx)
- Replies: 3
- Views: 21644
[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...
- 15 Apr 2015 23:53
- Forum: RaZberry
- Topic: Problem With Delayed Scene
- Replies: 22
- Views: 25077
Re: Problem With Delayed Scene
Here it is viewtopic.php?f=3424&t=21448SolarFlor wrote:do you mind to tell me in which post you provided the link?
- 15 Apr 2015 23:43
- Forum: RaZberry
- Topic: Problem With Delayed Scene
- Replies: 22
- Views: 25077
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.
- 15 Apr 2015 23:39
- Forum: Discussions in English
- Topic: Execute external shell script
- Replies: 22
- Views: 29517
Re: Execute external shell script
kimeh, wrap the command name in quotes
- 15 Apr 2015 23:26
- Forum: RaZberry
- Topic: Problem With Delayed Scene
- Replies: 22
- Views: 25077
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...
- 15 Apr 2015 13:29
- Forum: RaZberry
- Topic: Secure remote requests to Razberry
- Replies: 16
- Views: 20936
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
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
- 15 Apr 2015 10:58
- Forum: RaZberry
- Topic: Secure remote requests to Razberry
- Replies: 16
- Views: 20936
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...