Search found 17 matches

by Marq
Friday 12 October 2018 20:21
Forum: Other questions and discussions
Topic: Meaning of 'Sensor Binary'- and 'Auto' Report
Replies: 1
Views: 314

Re: Meaning of 'Sensor Binary'- and 'Auto' Report

I asked the helpdesk of Philio:
the Binary report is sent when a trigger occurs
the Auto report is sent on intervals, even if nothing has changed
by Marq
Tuesday 02 October 2018 16:29
Forum: Other questions and discussions
Topic: Meaning of 'Sensor Binary'- and 'Auto' Report
Replies: 1
Views: 314

Meaning of 'Sensor Binary'- and 'Auto' Report

Hi, I have some Philio Tech sensors (PAT02, PST02, ..), and in the manuals of these, there two types of reports mentioned: - Sensor Binary Report - Auto Report Can someone explain the difference ? Also: the Tick interval can be set O (zero), which will disable the Auto report. Why would someone like ...
by Marq
Monday 29 February 2016 21:00
Forum: Show your projects
Topic: Get weather info from internet to Domoticz !
Replies: 10
Views: 3933

Re: Get weather info from internet to Domoticz !

@Pino77

to install php5: 'sudo apt-get install php5'
by Marq
Sunday 28 February 2016 9:14
Forum: Show your projects
Topic: Get weather info from internet to Domoticz !
Replies: 10
Views: 3933

Re: Get weather info from internet to Domoticz !

Thanks Marq for sharing. I have tried it. But whe i tired to run the php script I get this: pi@zwave ~/domoticz/scripts $ chmod +x getweatherinfo.php pi@zwave ~/domoticz/scripts $ ./getweatherinfo.php ./getweatherinfo.php: line 1: 1.: command not found ./getweatherinfo.php: line 2: ?php: No such ...
by Marq
Saturday 20 February 2016 10:43
Forum: Other questions and discussions
Topic: Manually set the alarm of a Fibaro Smoke Detector
Replies: 27
Views: 11178

Re: Manually set the alarm of a Fibaro Smoke Detector

If you need to drive a nail, try using a Hammer instead of your face.. You'll find life is easy when you use the right tool for the job... There are people who drive nails into their head, and become creative of it... perhaps something for you to try ? Why buy a new alarm if you have several ...
by Marq
Friday 19 February 2016 17:47
Forum: Show your projects
Topic: Get weather info from internet to Domoticz !
Replies: 10
Views: 3933

Get weather info from internet to Domoticz !

' Just wanted to share with you a way to retrieve current weather data from buienradar.nl and make it available in Domiticz please note: - this is for the raspberry pi - buienradar.nl (yes, you guessed it) is a Dutch site On a high level the steps are: 1. create a user variable in Domoticz 2. write ...
by Marq
Saturday 06 February 2016 11:13
Forum: PHP and all others
Topic: How to use CGI
Replies: 2
Views: 1242

How to use CGI

' Hi, I have a device (camera Foscam FI9821w v2 to be exact), from which the status can be queried by executing a CGI command: http://192.168.1.2/cgi-bin/CGIProxy.fcgi&usr=admin&pwd=123&cmd=ABC a webpage is opened which shows the status, eg.: <CGI_Result> <result>0</result> <isDHCP>1</isDHCP> <ip ...
by Marq
Saturday 06 February 2016 10:38
Forum: Other questions and discussions
Topic: Manually set the alarm of a Fibaro Smoke Detector
Replies: 27
Views: 11178

Re: Manually set the alarm of a Fibaro Smoke Detector

My question was triggered by this remark in the manual: Sending the notification ALARM SENSOR REPORT (TYPE = SMOKE ALARM) to associated devices once smoke is detected. Up to five devices supporting fire alarm command may be included in this group I interpret this, that through association, one smoke ...
by Marq
Tuesday 26 January 2016 21:11
Forum: PHP and all others
Topic: Webpage with PHP not working
Replies: 5
Views: 3122

Re: Webpage with PHP not working

chimit wrote:If you have installed php, then probably you also have apache installed.
Put your php scripts in /var/www.
Indeed, this is true. It works. Thanks !
by Marq
Saturday 23 January 2016 20:37
Forum: PHP and all others
Topic: Webpage with PHP not working
Replies: 5
Views: 3122

Re: Webpage with PHP not working

Thanks for the reply.

Any suggestion how to build a webserver which runs php ?

Thanks, Mark
by Marq
Saturday 23 January 2016 14:31
Forum: PHP and all others
Topic: Webpage with PHP not working
Replies: 5
Views: 3122

Webpage with PHP not working

' Hi there, I am trying to setup PHP on a Raspberry Pi. What does work: PHP is installed (' sudo apt-get install php5 '). This code is entered in ' ~/domoticz/scripts/firstexample.php ' #!/usr/bin/php <?php phpinfo(); ?> then saved, made executable (' chmod +x firstexample.php ') executing the ...
by Marq
Friday 22 January 2016 12:24
Forum: Suggestions
Topic: FOR, AFTER and RANDOM in seconds
Replies: 1
Views: 881

FOR, AFTER and RANDOM in seconds

'
It would be nice that triggers like
'ON FOR 5'
'OFF AFTER 8'
'ON RANDOM 4'
be all specified in seconds

(at this moment, FOR and RANDOM are in minutes, AFTER in seconds. This is confusing. Besides, seconds give more flexibility than minutes)
by Marq
Wednesday 20 January 2016 7:07
Forum: Others
Topic: Aeon Labs DSD31 siren
Replies: 14
Views: 4993

Re: Aeon Labs DSD31 siren

I was able to include this device in the network, and set the parameters (incl. volume and tone) in the hardware setup. However I am not able to choose volume/tone by blocky or lua events. In the overview of devices, it shows as an On/Off device. And not a multilevel device as would be expected ...
by Marq
Sunday 10 January 2016 18:08
Forum: Other questions and discussions
Topic: Manually set the alarm of a Fibaro Smoke Detector
Replies: 27
Views: 11178

Manually set the alarm of a Fibaro Smoke Detector

Hi,
I have a Fibaro FGSD-002 Smoke Detector.
Is it possible to let it act as an alarm ?
(in other words, let the alarm go off manually / by scripting ?)
Thanks,
Mark
by Marq
Thursday 26 November 2015 9:59
Forum: PHP and all others
Topic: Who operated the switch: Domoticz or manually ?
Replies: 3
Views: 1149

Re: Who operated the switch: Domoticz or manually ?

Solved it. a. make a new uservariable b. for each line of code where an On/Off command is sent to the switch, also write the new On/Off status to the uservariable c. in the file 'script_device_***.lua' file, check if the switch was changed ('if devicechanged['yourswitch'] then ...'), and if so: c1 ...
by Marq
Friday 30 October 2015 9:25
Forum: PHP and all others
Topic: Who operated the switch: Domoticz or manually ?
Replies: 3
Views: 1149

Who operated the switch: Domoticz or manually ?

Hi, I have a switch, operated by Domoticz, and this switch also has a manual knob. (so the switch can be turned on/off automatically and by hand) My question: if the switch is turned on or off, is there a way to find out who operated the switch , Domoticz or someone manually ? (would like to use it ...