Replies: 1 comment 1 reply
-
First of all, you need to understand the signal sent by the RF433 module - either with SDR, or maybe Google will help. SX1278 can transmit and receive LoRa, FSK and OOK, so if it is anything else, you are most likely out of luck. Regarding ASK vs OOK, if the module really does expect different amplitudes for different symbols, you probably won't be able to do it with OOK, since you can only do a single amplitude level, or complete 0. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I recently bought a LoRa RA-01, reason was mainly to replace my Generic (the cheap one) RF433 Tx Module (to open my garage door) since its range is very limited (up to 20meters), to my surprise I noticed that the Generic RF433 Tx Module uses ASK modulation that SX1278 does not directly support, but after some research, I found out that OOK modulation could work.
The data I send is as such:
Byte data[] = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07} (this is just an example)
I already tried Enable with FSK and enabling OOK modulation in the constructor, but using the Generic RF433 Receiver, I see nothing, just the random bits 0s and 1s caused by noise.
How do I manage to make my SX1278 "compatible" with the generic receiver? Is it impossible to do so? Has anyone here configured the SX1278 in a way a generic 433RF receiver could understand?
One last thing, how do I setup these informations using RadioLib for Tx? (imported from rf433_send library):
Thanks! I did see #337 but I wanted to get more insight
Beta Was this translation helpful? Give feedback.
All reactions