Search found 7 matches

by toast
Monday 23 July 2018 21:48
Forum: Python
Topic: Pax Calima bluetooth controlled fan
Replies: 5
Views: 2367

Re: Pax Calima bluetooth controlled fan

Comparing with a DHT22 (AM2320) sensor and with the logarithmic scale on the Calima sensor the humidity they follow the same curve. Not exactly but quite close...
by toast
Thursday 05 July 2018 22:04
Forum: Python
Topic: Pax Calima bluetooth controlled fan
Replies: 5
Views: 2367

Re: Pax Calima bluetooth controlled fan

Maybe logarithmic scale for the humidity...

Code: Select all

Hum = math.log2(float(state[pos+9:pos2]))*10
by toast
Monday 02 July 2018 21:51
Forum: Python
Topic: Pax Calima bluetooth controlled fan
Replies: 5
Views: 2367

Re: Pax Calima bluetooth controlled fan

My attempt to use the fan lux sensor to switch on lights if it gets darker before sunset.. -- Check the wiki at -- http://www.domoticz.com/wiki/%27dzVents%27:_next_generation_LUA_scripting return { active = true, -- set to false to disable this script on = { timer = { 'every 10 minutes between 120 ...
by toast
Monday 02 July 2018 20:32
Forum: Python
Topic: Pax Calima bluetooth controlled fan
Replies: 5
Views: 2367

Re: Pax Calima bluetooth controlled fan

Hi, I just installed mine and have it setup working. I modified the run.py script that came with the code to include similar to your json command for updating the virtual sensors. E.g. I adjusted with my preferred speed settings and added json update commands to the end of the script. In run.py the ...
by toast
Thursday 22 February 2018 20:28
Forum: Others
Topic: wemo switch in wiki
Replies: 6
Views: 2186

Re: wemo switch in wiki

Works perfect for me. Just create a dummy switch and set the
On Action: script://wemo/wemo_control.sh 192.168.5.197 ON
Off Action: script://wemo/wemo_control.sh 192.168.5.197 OFF

So I don't know why you would want to create the additional scripts; wemo_on.sh wemo_off.sh...
by toast
Sunday 02 April 2017 22:55
Forum: 1-wire
Topic: 1Wire parasitic power StartSimultaneousTemperatureRead
Replies: 1
Views: 5500

Re: 1Wire parasitic power StartSimultaneousTemperatureRead

I like the last update to the code that will spread each sensor pull over the Sensor Poll Period. I don't have to add my sleep command any longer :-)
I guess the "Simultaneous" can/should be removed from the code aswell now when there is no burst read of the sensors.
by toast
Wednesday 16 November 2016 13:26
Forum: 1-wire
Topic: 1Wire parasitic power StartSimultaneousTemperatureRead
Replies: 1
Views: 5500

1Wire parasitic power StartSimultaneousTemperatureRead

Hi, I'm not a coder so I don't think I will be able to make this improvement to the code. But I think that others might benefit if something to solve these issues can be implemented. 1. Part of my network use parasitic power and can therefore not use the Simultaneous read option. Currently I'm doing ...