I am looking for a small stylish RF button (press it and it sends an RF code). About the size of bottle cap / $1 coin / 50p coin / dash button without the sticker part
I want to stick them on a lamp and a desk, but when i search for RF button my Google-fu fails i only get remotes and light switches.
āRF Buttonā or ā433 Buttonā Personally, I use these Kerui F52 Buttons which talks to a sonoff RF flashed with tasmota. Theyāre about 5cm x 5cm and illuminate when activated, and have a capacitive button.
Currently attached to the kettle which activates a 2 minute timer though Alexa to remind me to take my tea bag outā¦
Perhaps you can help me. Can the Sonoff RF bridge, flashed with Tasmota software, receive data from Acurite and Oregon Scientific temperature sensors? These are common 433 MHz sensors (often included with inexpensive āhome weather stationā kits).
Iāve been considering using rtl_433 software with a Software-Defined Radio (SDR) dongle. One advantage of using an SDR is that it can handle multiple frequencies (for example, rtl_433 with an SDR supports devices operating on 433 MHz and 915 MHz frequencies). I canāt decide whether to choose this solution or the Sonoff RF Bridge.
I have a SRD using rtl_433.
I went this route to prevent extra WiFi congestion (although it probably doensāt matter).
You do have to remember that you cannot listen to multiple frequencies simultaneously.
It does have the ability to hop back and fourth, but that means you could miss a signal.
Yes, the SRD should be able to receive any 433 signal that is listed in the github list.
Specifically:
Rotating signals (whatever they are called) from garage doors are one that I know cannot be received, but weather stations are fine.
Another thing to consider is location.
The Sonoff can be put anywhere it can receive both 433 and Wifi signal.
The SDR is a USB to a Pi or PC (mine is connected directly to my server).
So that is another thing to consider - if your server is not near sensors, the Sonoff might be a better choice.
Last āconsiderationā if WiFi goes down, Sonoff will stop communicating with Home Assistant while the SDR if plugged in to the server will still update sensors.
So a mix of 433 and 900 MHz devices means it could receive on both frequencies but not concurrently. It flips between the two and while listening on one frequency will be deaf to transmissions on the other frequency. OK, good to know.
Itās been my experience that 433Mhz signals have great range (30 meters in real-world conditions) so I donāt anticipate an attenuation problem but Iāll keep it in mind.
Yes, this is one of the reasons I lean towards using an SDR, less links in the chain connecting the receiver to the host. Plus, it requires no construction/modification or flashing of new firmware. The PR to add native support for MQTT is the icing on the cake.
I am actually using this right now from zuckschwerdtās repo.
The guy is very responsive to questions and is going a ton of work.
I have rtl_433 running in a docker container and publishing to a MQTT container on the same server.
Seems to be working well, but only been up for a few days.
I have rogue sensors from neighbors in my logs, but those are easily filtered out.
Thatās encouraging because Iāve vowed that the next iteration of my Home Assistant production server will be docker-based (itās current installed as a virtual environment). My Home Assistant test server is using docker-compose and maintenance is so much easier.
Very true - but for a while the neighbors sensor was broadcasting every second (malfunctioning I think). It appeared my sensors signal was being missed due to the noise.
Docker is awesome!
This is my first time using it, but it has been very easy, and seems to simplify things greatly! I would highly suggest Portainer! It is a Docker Management container that gives a GUI so you donāt have to do everything in command line. I love it!
You can add/remove/update images, containers, networks, everything! When a new HA version is released, I just go to Portainer, clicker āRecreateā and flip the toggle to pull the newest image. A few minutes later the new image is downloaded, and the container is recreated based on the new image (using the old container properties) - cannot be easier!
On a fresh Ubuntu Server install, I followed the Docker installation instructions to install Docker CE. After that I have installed almost NOTHING on the server directly (except updates). Everything is in docker.
My current list of containers:
Portainer
Home Assistant
PostgresSQL
Mosquitto MQTT broker
rtl_433
Tensorflow
I think I have derailed this topic a bitā¦ so Iāll stop there