Skip to content

Commit ed88443

Browse files
committed
Correct typos in comments and documentation
1 parent 064e4e3 commit ed88443

File tree

5 files changed

+22
-24
lines changed

5 files changed

+22
-24
lines changed

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/compile-examples.yml/badge.svg["Compile Examples status", link="https://github.com/{repository-owner}/{repository-name}/actions/workflows/compile-examples.yml"]
77
image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/spell-check.yml/badge.svg["Spell Check status", link="https://github.com/{repository-owner}/{repository-name}/actions/workflows/spell-check.yml"]
88

9-
Enables sending and receiving data using the RS485 standard with RS485 shields, like the MKR 485 Shield.
9+
Enables sending and receiving data using the RS-485 standard with RS-485 shields, like the MKR 485 Shield.
1010

1111
This library supports the Maxim Integrated MAX3157 and equivalent chipsets.
1212

examples/RS485Passthrough/RS485Passthrough.ino

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
/*
2-
RS485 Passthrough
2+
RS-485 Passthrough
33
4-
This sketch relays data sent and received between the Serial port and the RS485 interface
4+
This sketch relays data sent and received between the Serial port and the RS-485 interface
55
66
Circuit:
77
- MKR board
8-
- MKR 485 shield
9-
- ISO GND connected to GND of the 485 device
10-
- Y connected to A of the 485 device
11-
- Z connected to B of the 485 device
12-
- A connected to Y of the 485 device
13-
- B connected to Z of the 485 device
8+
- MKR 485 Shield
9+
- ISO GND connected to GND of the RS-485 device
10+
- Y connected to A of the RS-485 device
11+
- Z connected to B of the RS-485 device
12+
- A connected to Y of the RS-485 device
13+
- B connected to Z of the RS-485 device
1414
- Jumper positions
1515
- FULL set to ON
16-
- Z \/\/ Y set to ON, if the 485 device doesn't provide termination
17-
- B \/\/ A set to ON, if the 485 device doesn't provide termination
16+
- Z \/\/ Y set to ON, if the RS-485 device doesn't provide termination
17+
- B \/\/ A set to ON, if the RS-485 device doesn't provide termination
1818
1919
created 4 July 2018
2020
by Sandeep Mistry
@@ -42,4 +42,3 @@ void loop() {
4242
Serial.write(RS485.read());
4343
}
4444
}
45-

examples/RS485Receiver/RS485Receiver.ino

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
2-
RS485 Receiver
2+
RS-485 Receiver
33
4-
This sketch receives data over RS485 interface and outputs the data to the Serial interface
4+
This sketch receives data over RS-485 interface and outputs the data to the Serial interface
55
66
Circuit:
77
- MKR board
88
- MKR 485 shield
9-
- ISO GND connected to GND of the 485 device
10-
- A connected to A/Y of the 485 device
11-
- B connected to B/Z of the 485 device
9+
- ISO GND connected to GND of the RS-485 device
10+
- A connected to A/Y of the RS-485 device
11+
- B connected to B/Z of the RS-485 device
1212
- Jumper positions
1313
- FULL set to ON
1414
- A \/\/ B set to OFF

examples/RS485Sender/RS485Sender.ino

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
2-
RS485 Sender
2+
RS-485 Sender
33
4-
This sketch periodically sends a string over the RS485 interface
4+
This sketch periodically sends a string over the RS-485 interface
55
66
Circuit:
77
- MKR board
88
- MKR 485 shield
9-
- ISO GND connected to GND of the 485 device
10-
- Y connected to A of the 485 device
11-
- Z connected to B of the 485 device
9+
- ISO GND connected to GND of the RS-485 device
10+
- Y connected to A of the RS-485 device
11+
- Z connected to B of the RS-485 device
1212
- Jumper positions
1313
- FULL set to ON
1414
- Z \/\/ Y set to ON
@@ -35,4 +35,3 @@ void loop() {
3535

3636
delay(1000);
3737
}
38-

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name=ArduinoRS485
22
version=1.0.0
33
author=Arduino
44
maintainer=Arduino <[email protected]>
5-
sentence=Enables sending and receiving data using the RS485 standard with RS485 shields, like the MKR 485 Shield.
5+
sentence=Enables sending and receiving data using the RS-485 standard with RS-485 shields, like the MKR 485 Shield.
66
paragraph=This library supports the Maxim Integrated MAX3157 and equivalent chipsets.
77
category=Communication
88
url=http://www.arduino.cc/en/Reference/ArduinoRS485

0 commit comments

Comments
 (0)