In the demo projects I see the following:
However, I'm not exactly sure what the difference is? I have the high-power LoRa boards, but they seem to work fine with the software using RF69. At least, they work fine on my bench!
Can you clarify when one should use RF69 and LORA?
Many thanks
Mark
Code: Select all
/* You need to configure the Whisper Node Version */
#define T2_WPN_BOARD T2_WPN_VER_RF69
//#define T2_WPN_BOARD T2_WPN_VER_LORA
#if T2_WPN_BOARD == T2_WPN_VER_RF69
#include <RH_RF69.h>
RH_RF69 myRadio;
#elif T2_WPN_BOARD == T2_WPN_VER_LORA
#include <RH_RF95.h>
RH_RF95 myRadio;
#endif
Can you clarify when one should use RF69 and LORA?
Many thanks
Mark
