How to use RF Unit RF433T and RF433R
-
I have the following two units:
https://shop.m5stack.com/collections/m5-sensor/products/rf-unit-433mhz-receiver-syn513r
https://shop.m5stack.com/collections/m5-sensor/products/rf-unit-433mhz-transmitter-syn115In UIFlow under units they are not listed. Does anyone have example code how to use them in python?
Thanks -
@tspycher Did you ever find a way to make those modules work in Python?
-
@tspycher said in How to use RF Unit RF433T and RF433R:
I have the following two units:
https://shop.m5stack.com/collections/m5-sensor/products/rf-unit-433mhz-receiver-syn513r
https://shop.m5stack.com/collections/m5-sensor/products/rf-unit-433mhz-transmitter-syn115In UIFlow under units they are not listed. Does anyone have example code how to use them in python?
Thanksany update on this?
-
I did not find any, however there is some example arduino code here:
https://github.com/m5stack/M5Stack/blob/master/examples/Unit/RF433/RF433.ino
Not very amateur friendly if you want to use that though.
-
I'm also looking at what to do with these two RF433 units. I want to send a RF signal to the TV to change the channel. I assume this is what can be achieved (after I know the correct codes).
The following example looks like going down the right direction (albeit with a different RF device).
If anyone has other examples for the M5Stack and RF433 units specifically that would be great.
-
I've also been experimenting with the RF433R and RF433T units since today.
RX433T is transmitting. I can "see" that with a Portapack H4.
RX433R doesn't seem to be receiving anything though.
I'm using a Core2 and UIFlow1.0. The Arduino example doesn't work either.
-
@tspycher
AFAIK: this are very simple transmitter/receiver modules. No protocol, no encryption, no guarantee for transmit/receive the correct data. You have to make your own protocol and data integrity functions.Try to send something out from UART (not faster than 10kbps) and receive it on the other side. Be aware that disturbance could be possible as 433.92MHz is used in a wide range of applications like wireless thermometers, garage door opener, car keys, wireless doorbells, wireless power switches...
As you get the raw pulses out of the receiver it should be possible to receive and decode data from e.g. the thermometer oder switches. There are several protocol descriptions in the web.
If you want to send simple data from one to the other device, ESPnow could be the better option.