Search found 16 matches

by poostrom
Sunday 24 November 2019 19:14
Forum: Heating/cooling
Topic: Luxtronic Heatpump controller
Replies: 52
Views: 19737

Re: Luxtronic Heatpump controller

Hi, there's no action.... Since the function is read from the heatpump to Domoticz, not the other way around. I'ts just an indicator showing what the heatpump is doing at this moment.
2019-11-24 19_11_09-Start.jpg
2019-11-24 19_11_09-Start.jpg (78.21 KiB) Viewed 2048 times
by poostrom
Saturday 05 October 2019 16:21
Forum: Heating/cooling
Topic: Luxtronic Heatpump controller
Replies: 52
Views: 19737

Re: Luxtronic Heatpump controller

Hoi Willem, Somewhere at the end of the script you see: # Lees huidige functie warmtepomp if array_calculated[119] == 1: array_calculated[119] = '0' if array_calculated[119] == 0: array_calculated[119] = '10' if array_calculated[119] == 5: array_calculated[119] = '20' if array_calculated[119] == 10 ...
by poostrom
Wednesday 01 May 2019 19:19
Forum: RFLink Transceiver
Topic: Error on BrelMotor
Replies: 10
Views: 4369

Re: Error on BrelMotor

Hi guys, Anyone with a reply? I found that my Brel motors do not respond when I send a command once a second. They need be sent at about .5 seconds. Domoticz will not do that. I've tried with LUA, DZvents, bash script. Everything seems to be queued and Domoticz sends out the command just every ...
by poostrom
Monday 04 March 2019 15:26
Forum: RFLink Transceiver
Topic: Error on BrelMotor
Replies: 10
Views: 4369

Re: Error on BrelMotor

Hi Stanley, How did you get that working? I used your script and I do see: Status: RFLink Sending: 10;BrelMotor;fd3222;a1;STOP; (repeated 5 times). But my curtain just holds :( no movement at all. Works fine with the remote. I've been playing around with the times, annd also send the stop command 8 ...
by poostrom
Saturday 29 December 2018 14:19
Forum: Others
Topic: How to use Data from a Dust Sensor
Replies: 20
Views: 9991

Re: How to use Data from a Dust Sensor

This is working when you have a BME280 attached as well: #!/bin/bash # Settings DOMO_IP="192.168.200.15" # Domoticz IP adres DOMO_PORT="8080" # Domoticz port FIJNSTOFSENSOR="192.168.200.135" # Fijnstofsensor IP adres SDS10IDX="5487" # IDX in domoticz voor PM10 SDS25IDX="5488" # IDX in domoticz voor ...
by poostrom
Saturday 29 December 2018 14:16
Forum: Bash / PowerShell / Batch etc.
Topic: SDS011 and DHT22
Replies: 2
Views: 1861

Re: SDS011 and DHT22

Hoi René, Het lijkt wel of ik geen berichten mag sturen... Ik had je onderstaande al gestuurd, maar nooit aangekomen denk ik. Als je mij de output stuurt van http://192.168.200.135/data.json dan moet dat wel lukken. Wel even het IP adres aanpassen naar het adres van jouw fijnstofsensor. Ik ga er wel ...
by poostrom
Tuesday 27 November 2018 11:50
Forum: Others
Topic: How to use Data from a Dust Sensor
Replies: 20
Views: 9991

Re: How to use Data from a Dust Sensor

Hi guys, Another way of doing this, via bash script on raspberry. You need a recent OS and install jq ( sudo apt install jq ). If you create custom sensors for the different value's (10PPM, 2.5PPM etc) and fill the right IDX's from Domoticz in the script... All value's that are being exported in the ...
by poostrom
Tuesday 10 July 2018 15:29
Forum: iOS
Topic: Pilot: Home Automation Control (iOS app)
Replies: 1000
Views: 240787

Re: Pilot: Home Automation Control (iOS app)

Hey Patrick,

That is looking very nice!
Keep up the good work!

Regards,
Patrick
by poostrom
Tuesday 26 June 2018 9:56
Forum: iOS
Topic: Pilot: Home Automation Control (iOS app)
Replies: 1000
Views: 240787

Re: Pilot: Home Automation Control (iOS app)

Something funny in the latest beta still - or should I somehow clear some app cache? Some selector tell the level (e.g. "Set Level: 20) but some show just the base64 encoded string. After clicking the switch to open up the selectable levels, the levels show empty for those that show e.g. "Set Level ...
by poostrom
Tuesday 17 April 2018 11:20
Forum: Heating/cooling
Topic: Luxtronic Heatpump controller
Replies: 52
Views: 19737

Re: Luxtronic Heatpump controller

Hi Wiljums, It's working. You need to install nodered for it (and the other stuff for the luxtronik as well). (I only looked at setting values, not reading, though that works as well). The only thing I made working is the + and - temperature setting. I made a virtual selector switch and every step ...
by poostrom
Thursday 29 March 2018 11:11
Forum: Heating/cooling
Topic: Luxtronic Heatpump controller
Replies: 52
Views: 19737

Re: Luxtronic Heatpump controller

Hi, Interesting ;) My script (carefully stolen) only reads stuff. It actually reads everything from the Luxtronik, but I use just the things I want to... The interesting about this script is that it can actually send commands to the Luxtronik. So in theory you should be able to change values through ...
by poostrom
Thursday 29 March 2018 11:07
Forum: Heating/cooling
Topic: Luxtronic Heatpump controller
Replies: 52
Views: 19737

Re: Luxtronic Heatpump controller

Sure ;) #!/usr/bin/python import socket import struct import datetime import httplib ##################### # Luxtronik 2.0 IP hostHeatpump = '192.168.200.107' # Luxtronik 2.0 port (standard 8888) portHeatpump = 8888 ##################### s = socket.socket( socket.AF_INET, socket.SOCK_STREAM) s ...
by poostrom
Wednesday 28 March 2018 13:50
Forum: Zigbee
Topic: Xiaomi Aqara Temperature Humidity Sensor
Replies: 11
Views: 5577

Re: Xiaomi Aqara Temperature Humidity Sensor

Same here, but I'm more confused that it show's 1003 Bar instead of 1003 mBar.
by poostrom
Monday 12 June 2017 16:09
Forum: Heating/cooling
Topic: Luxtronic Heatpump controller
Replies: 52
Views: 19737

Re: Luxtronic Heatpump controller

Sure ;) #!/usr/bin/python import socket import struct import datetime import httplib ##################### # Luxtronik 2.0 IP hostHeatpump = '192.168.200.107' # Luxtronik 2.0 port (standard 8888) portHeatpump = 8888 ##################### s = socket.socket( socket.AF_INET, socket.SOCK_STREAM) s ...
by poostrom
Monday 12 June 2017 15:57
Forum: Heating/cooling
Topic: Luxtronic Heatpump controller
Replies: 52
Views: 19737

Re: Luxtronic Heatpump controller

I didn't see any replies since the last couple of months ;) Anyway, I've got it working all the way. I didn't use the kWh anymore, since the values are not not electrical kWh's but heating, so there is a huge difference between these values and the actual electrical power consuming.... See the ...
by poostrom
Wednesday 09 March 2016 16:49
Forum: Heating/cooling
Topic: Luxtronic Heatpump controller
Replies: 52
Views: 19737

Re: Luxtronic Heatpump controller

Hi Bobby, Did some stealing of code and managed to read values from a Luxtronik 2.0 in python. It's very beta, but works for me though. Able to create a dummy sensor for kWh's and put the values with json to domoticz.... I only did the kWh, working on other things, just testing this now.... For the ...