Skip to content

Commit 49c61f3

Browse files
committed
v1.0.8
* Updated documentation.
1 parent aa8f651 commit 49c61f3

6 files changed

Lines changed: 15 additions & 11 deletions

File tree

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:repository-owner: CIRCUITSTATE
22
:repository-name: CSE_ArduinoRS485
3-
:repository-version: 1.0.7
3+
:repository-version: 1.0.8
44

55
= {repository-name} Library for Arduino =
66

docs/readme.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# Arduino RS485 library
22

33

4-
The Arduino RS485 library enables you to send and receive data using the RS-485 standard with Arduino® RS485 Shields, like the MKR 485 Shield. Please refer to the [MKR RS485 Shield](https://www.arduino.cc/en/Guide/MKR485Shield) documentation for the specific settings about half, full duplex, and termination.
4+
This Arduino library allows you to send and receive data using the **RS-485** interface standard. Supported by all Arduino-compatible boards such as ESP32, STM32, RP2040, AVR, SAMD, ESP8266, etc. You can use both hardware and software serial ports. This library supports the Maxim Integrated MAX485 and equivalent chipsets.
55

6-
This library supports the MAX3157 and equivalent chipsets.
6+
Three examples are included with this library:
77

8-
To use this library:
8+
* **RS485_Sender** - Sends data to a receiver.
9+
* **RS485_Receiver** - Receives data from a sender.
10+
* **RS485_Passthrough** - Sends and receives data between the RS-485 port and the default serial port.
11+
12+
To use this library, include the following line at the top of your sketch:
913

1014
```
11-
#include <ArduinoRS485.h>
15+
#include <CSE_ArduinoRS485.h>
1216
```

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"url": "https://github.com/CIRCUITSTATE",
1414
"maintainer": true
1515
},
16-
"version": "1.0.7",
16+
"version": "1.0.8",
1717
"license": "LGPL-2.1",
1818
"frameworks": "arduino",
1919
"platforms": "*"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=CSE_ArduinoRS485
2-
version=1.0.7
2+
version=1.0.8
33
author=CIRCUITSTATE
44
maintainer=CIRCUITSTATE <@circuitstate>
55
sentence=Allows sending and receiving data through the RS-485 interface, using any Arduino-compatible boards.

src/CSE_RS485.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
*/
2121
//===================================================================================//
2222

23-
// Version: 1.0.7
24-
// Last modified: +05:30 20:29:06 PM 25-07-2023, Tuesday
23+
// Version: 1.0.8
24+
// Last modified: +05:30 20:34:29 PM 25-07-2023, Tuesday
2525
// Source: https://github.com/CIRCUITSTATE/CSE_ArduinoRS485
2626

2727
//===================================================================================//

src/CSE_RS485.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
*/
2121
//===================================================================================//
2222

23-
// Version: 1.0.7
24-
// Last modified: +05:30 20:29:01 PM 25-07-2023, Tuesday
23+
// Version: 1.0.8
24+
// Last modified: +05:30 20:34:26 PM 25-07-2023, Tuesday
2525
// Source: https://github.com/CIRCUITSTATE/CSE_ArduinoRS485
2626

2727
//===================================================================================//

0 commit comments

Comments
 (0)