[RTTY] Fixed typos in examples

This commit is contained in:
jgromes 2019-05-24 14:15:58 +02:00
parent 6e31c7b9be
commit 88d58e52d7

View file

@ -72,14 +72,14 @@ void setup() {
// All transmissions in loop() (strings and numbers) // All transmissions in loop() (strings and numbers)
// will now be encoded using ITA2 code // will now be encoded using ITA2 code
// ASCII characters that do not have ITA2 euqivalent // ASCII characters that do not have ITA2 equivalent
// will be sent as NUL (including lower case letters!) // will be sent as NUL (including lower case letters!)
*/ */
} }
void loop() { void loop() {
Serial.print(F("[RTTY] Sending RTTY data ... ")); Serial.print(F("[RTTY] Sending RTTY data ... "));
// send out idle condition for 500 ms // send out idle condition for 500 ms
rtty.idle(); rtty.idle();
delay(500); delay(500);
@ -95,7 +95,7 @@ void loop() {
// character // character
rtty.println('c'); rtty.println('c');
// byte // byte
// formatting DEC/HEX/OCT/BIN is supported for // formatting DEC/HEX/OCT/BIN is supported for
// any integer type (byte/int/long) // any integer type (byte/int/long)
@ -108,7 +108,7 @@ void loop() {
// floating point number // floating point number
float f = -3.1415; float f = -3.1415;
rtty.println(f, 3); rtty.println(f, 3);
// turn transmitter off // turn transmitter off
fsk.standby(); fsk.standby();