@juan11perez Thanks for you’re advice. I’ve gone down your suggested route. I’ve a couple of the Sonoff RF Bridges, flashed with Tasmota and the Digoo PIR sensors. Dirt cheap!
So far I’ve only been able to discover the 433mhz/MQTT data code for when the PIR is activated. Are there any other codes, ie for Low Power / Battery Changes? Or an OFF code?
Looking at the manual in the Digoo PIR sensors, it looks like it does send a low battery message. If only there’s a way to work out and capture what the signal is?
I’ve just bought three of these. I’m planning on getting some old batteries so it complains and hopefully emits the low voltage message. If I find out I’ll post it here, going to do it tomorrow.
Can I ask whilst I’m here do you know what the low and high segments are? I presume you are using them with MQTT?
Let me also link this thread. I had the same MQTT setup as described by @juan11perez however in the end I found this to be more elegant with less config
Thanks for the link. Looks like a simple method of implementation.
The low / high segments appear in the MQTT console when a message is transmitted from the PIR to the sonoff-rf-bridge. But as far as I can tell, they have no relevance.
I’d be interested if you’re able to find out what the low-battery message is.
As a temporary method of checking the battery status, I’m using this code until I find the 433 low battery sensor message.
It checks to see if there’s been a message from a given sensor in X number of days. If it hasn’t then it presumes the battery may have run out and then sends a notification to me.
I bought a couple of gateways initially. But so far one seems to be covering my home fairly well. I’ll look to implement another in the future if needed.
Hi guys,
I saw a youtube clip that explained rules in the rf bridge console…
I have done it and it works…
This is my,
Rule1 on rfreceived#Data=48E00A do Publish2 RFBridge/sensor1/Open Open endon on rfreceived#DATA=48E00E do Publish2 RFBridge/sensor1/Closed Closed endon
the 48E00A and 48E00E are the open and closed for my window sensor. I also have
rule2 on RFReceived@data=7EA826 do backlog publish2 RFBridge/Motion1 ON; ruletimer1 10 endon rules#timer=1 do publish2 RFBridge/Motion1 OFF endon
this is for my PIR which I use a timer to turn the PiR to off as it only has 1 code.