Nuaire Drimaster Eco-Heat-HC & RFlink?

433Mhz opensource Receiver & Transmitter.

Moderators: leecollings, Stuntteam

Post Reply
gwaelod
Posts: 6
Joined: Saturday 30 September 2017 13:26
Target OS: Linux
Domoticz version:
Contact:

Nuaire Drimaster Eco-Heat-HC & RFlink?

Post by gwaelod »

Anyone been able to get a Nuaire Drimaster passive ventilation unit linked to an RFlink?

I have a 433mhz link RFlink, but cant see any signals from the Drimaster remote switches to the unit, so I presume it works on 868mhz?

There's virtually no information about radio signals on manufacturers website
DanM
Posts: 79
Joined: Thursday 23 October 2014 22:41
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Nuaire Drimaster Eco-Heat-HC & RFlink?

Post by DanM »

Replying after a long time.. but did you ever make progress with this? Its definately 868 - I spoke to the company about it. I was thinking of buying one of the switches and just soldering to it to send the signals..
gwaelod
Posts: 6
Joined: Saturday 30 September 2017 13:26
Target OS: Linux
Domoticz version:
Contact:

Re: Nuaire Drimaster Eco-Heat-HC & RFlink?

Post by gwaelod »

No - not fiddled with it very much apart from pulling open the switch and noting that it looks virtually identical to the Orcon sensor in this thread

viewtopic.php?f=49&t=13713



Browsing some dutch forums the electronics superficially resemble some other dutch ventilation systems (Itho)
gwaelod
Posts: 6
Joined: Saturday 30 September 2017 13:26
Target OS: Linux
Domoticz version:
Contact:

Re: Nuaire Drimaster Eco-Heat-HC & RFlink?

Post by gwaelod »

When you say soldering to it send signals..do you mean soldering something like an ESP8266 to it and using the outputs to drive the switches?
zxdavb
Posts: 2
Joined: Tuesday 05 November 2019 18:08
Target OS: -
Domoticz version:
Contact:

Re: Nuaire Drimaster Eco-Heat-HC & RFlink?

Post by zxdavb »

This RF (868 Mhz) system uses the Residential Network Protocol. This includes the Nuaire 4-way switch, and other kit.

Raw packet from humidity sensor:

Code: Select all

045  I --- 32:168090 --:------ 32:168090 12A0 006 003C07A8049C
Decoded packet:

Code: Select all

|| 045 |  I |     | 32:168090 |            | >broadcast | sensor_humidity | 006 | 003D07B304B9 ||
Decoded payload (003C07A8049C):

Code: Select all

{'domain': '00', 'relative_humidity': 0.61, 'temperature': 19.71, 'dewpoint': 12.09}
You could calculate a higher-precision relative humidity from the other two values using any one of the known formula.

The python code to take the raw payload and create the JSON is:

Code: Select all

{
    "domain": payload[:2],
    "relative_humidity": int(payload[2:4], 16) / 100,
    "temperature": int(payload[4:8], 16) / 100,
    "dewpoint": int(payload[8:12], 16) / 100,
}
Last edited by zxdavb on Sunday 24 November 2019 18:28, edited 2 times in total.
zxdavb
Posts: 2
Joined: Tuesday 05 November 2019 18:08
Target OS: -
Domoticz version:
Contact:

Re: Nuaire Drimaster Eco-Heat-HC & RFlink?

Post by zxdavb »

If anyone has information on the residential network protocol, please PM me!
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests