Fred Freund <
freddd...@gmail.com> writes:
> I am using the rtl_433 for weatherstations , temp senors data to mqtt
> already.
> Since this is working well I thought I could use the same setup to send my
> own data to it.
>
> Is it possible to send data like 12 x ds18b20 temp sensors to rtl_433 and
> decode it with already existing decoders or do I need to define a decoder
> on my own . this would be still over my knowledge.
You should be able to get some kind of 433 MHz radio breakout board,
maybe RFM69, or CC1101. Then, you can write code to make your sensor
seem like an existing sensor, picking one that has a reliable checksum
method, like CRC.
Or you could design a protocol and also write a decoder.
> I thought of using an esp32 to 433 and ask from rediohead, but not shure
> how this can be done.
What I do is to use ESP8266 with "nodemcu" software, and write a small
bit of code that gets data from sensors and sends it over MQTT. That
does require running the wifi, which uses power, so if it's plugged in
that's fine, on battery not so much.
If you do want to run on batteries, you probably want a lower-power
microcontroller and to use the radio path above.