RFM69 bitrate settings
-
SPAM removed by mod
-
Hi @kullboys, welcome to the MySensors forum!
You can use MY_RFM69_MODEM_CONFIGURATION to set communication speed.
-
Just sharing my experience with
MY_RFM69_MODEM_CONFIGURATION
IMPORTANT: We should not use brockets
()
when definingMY_RFM69_MODEM_CONFIGURATION
,Wrong way:
#define MY_RFM69_MODEM_CONFIGURATION (RFM69_FSK_BR55_5_FD50)
Right way:
#define MY_RFM69_MODEM_CONFIGURATION RFM69_FSK_BR55_5_FD50
Why? Check this, actually configuration values are defined as an array.
-
And just to add a clarification, do not modify MyConfig.h. Put the define statement into the sketch for your node (somewhere before line: #include <MySensors.h>), and don't forget to modify your gateway code as well.
0