- Email[email protected]
- Phone+962 797 166 177
- Birthday1982-09-25
- LocationAmman, Jordan
Bridging the Gap: Integrating 433MHz RF Sensors into Home Assistant
G'day mates! When we talk about smart home protocols, Zigbee and Wi-Fi usually steal the spotlight. But if you want to blanket your house with cheap, reliable door sensors and remote controls, 433MHz RF technology is an absolute hidden gem.
The only problem? RF devices are "dumb." They broadcast their signal into the ether and hope something is listening.
-
Today, we are giving those RF devices a voice by setting up an RF Bridge (like the Sonoff RF BridgeR2) flashed with custom firmware.
-
We will intercept those 433MHz signals and instantly convert them into MQTT payloads that Home Assistant can understand.
Setting Up the Automations If you've got an 8-button or 4-button RF remote sitting on your living room table, you can map every single button to a complex Home Assistant scene.
Here is a brilliant little automation YAML snippet to capture a specific button press from your new RF bridge and toggle a light:
YAML
alias: "LR RF Remote - Button 1"
trigger:
- platform: mqtt
topic: tele/rf_bridge/RESULT
condition:
- condition: template
value_template: '{{ trigger.payload_json.RfReceived.Data == "YOUR_RF_CODE" }}'
action:
- service: light.toggle
target:
entity_id: light.living_room_main
mode: single
By grabbing cheap RF door sensors for every closet and drawer, you can get ultimate visibility across your home without breaking the bank or clogging up your Wi-Fi network!
"If you've got any questions or need a hand wrangling your own setup, don't hesitate to reach out at [email protected] or connect with me via www.yazan.me. I'm always keen to help out!"