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
Nuaire Drimaster Eco-Heat-HC & RFlink?
Moderators: leecollings, Stuntteam
-
- Posts: 79
- Joined: Thursday 23 October 2014 22:41
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Nuaire Drimaster Eco-Heat-HC & RFlink?
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..
-
- Posts: 6
- Joined: Saturday 30 September 2017 13:26
- Target OS: Linux
- Domoticz version:
- Contact:
Re: Nuaire Drimaster Eco-Heat-HC & RFlink?
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)
viewtopic.php?f=49&t=13713
Browsing some dutch forums the electronics superficially resemble some other dutch ventilation systems (Itho)
-
- Posts: 6
- Joined: Saturday 30 September 2017 13:26
- Target OS: Linux
- Domoticz version:
- Contact:
Re: Nuaire Drimaster Eco-Heat-HC & RFlink?
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?
Re: Nuaire Drimaster Eco-Heat-HC & RFlink?
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:
Decoded packet:
Decoded payload (003C07A8049C):
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:
Raw packet from humidity sensor:
Code: Select all
045 I --- 32:168090 --:------ 32:168090 12A0 006 003C07A8049C
Code: Select all
|| 045 | I | | 32:168090 | | >broadcast | sensor_humidity | 006 | 003D07B304B9 ||
Code: Select all
{'domain': '00', 'relative_humidity': 0.61, 'temperature': 19.71, 'dewpoint': 12.09}
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.
Re: Nuaire Drimaster Eco-Heat-HC & RFlink?
If anyone has information on the residential network protocol, please PM me!
Who is online
Users browsing this forum: No registered users and 0 guests