[RTTY] Added note about nRF24 usage
This commit is contained in:
parent
1ebf818d88
commit
528b20fdf3
1 changed files with 2 additions and 1 deletions
|
@ -50,13 +50,14 @@ void setup() {
|
||||||
// RF69 - 61 Hz
|
// RF69 - 61 Hz
|
||||||
// CC1101 - 397 Hz
|
// CC1101 - 397 Hz
|
||||||
// SX126x - 1 Hz
|
// SX126x - 1 Hz
|
||||||
|
// nRF24 - 1000000 Hz
|
||||||
Serial.print(F("[RTTY] Initializing ... "));
|
Serial.print(F("[RTTY] Initializing ... "));
|
||||||
// low ("space") frequency: 434.0 MHz
|
// low ("space") frequency: 434.0 MHz
|
||||||
// frequency shift: 183 Hz
|
// frequency shift: 183 Hz
|
||||||
// baud rate: 45 baud
|
// baud rate: 45 baud
|
||||||
// encoding: ASCII (7-bit)
|
// encoding: ASCII (7-bit)
|
||||||
// stop bits: 1
|
// stop bits: 1
|
||||||
state = rtty.begin(434, 183, 45);
|
state = rtty.begin(434.0, 183, 45);
|
||||||
if(state == ERR_NONE) {
|
if(state == ERR_NONE) {
|
||||||
Serial.println(F("success!"));
|
Serial.println(F("success!"));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue