[Morse] Added note about non-LoRa module usage

This commit is contained in:
jgromes 2019-07-29 13:06:08 +02:00
parent 9a300da963
commit 3f0dc11008

View file

@ -42,6 +42,11 @@ void setup() {
// current limit: 100 mA // current limit: 100 mA
// sync word: 0x2D 0x01 // sync word: 0x2D 0x01
int state = fsk.beginFSK(); int state = fsk.beginFSK();
// when using one of the non-LoRa modules for Morse code
// (RF69, CC1101, etc.), use the basic begin() method
// int state = fsk.begin();
if(state == ERR_NONE) { if(state == ERR_NONE) {
Serial.println(F("success!")); Serial.println(F("success!"));
} else { } else {