From 88d58e52d7c46a720334c6446baa6c6c096aed02 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 24 May 2019 14:15:58 +0200 Subject: [PATCH] [RTTY] Fixed typos in examples --- examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino b/examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino index 9199858b..8714012c 100644 --- a/examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino +++ b/examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino @@ -72,14 +72,14 @@ void setup() { // All transmissions in loop() (strings and numbers) // 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!) */ } void loop() { Serial.print(F("[RTTY] Sending RTTY data ... ")); - + // send out idle condition for 500 ms rtty.idle(); delay(500); @@ -95,7 +95,7 @@ void loop() { // character rtty.println('c'); - + // byte // formatting DEC/HEX/OCT/BIN is supported for // any integer type (byte/int/long) @@ -108,7 +108,7 @@ void loop() { // floating point number float f = -3.1415; rtty.println(f, 3); - + // turn transmitter off fsk.standby();