Skip to content

Commit 13e82ea

Browse files
committed
New Version 🆕 1.0.14
- Bumped up the version in Arduino library specification files. - Updated project information and attribution in the source files.
1 parent f99c9f6 commit 13e82ea

File tree

7 files changed

+50
-16
lines changed

7 files changed

+50
-16
lines changed

Changes.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
Changelog for the `CSE_ArduinoRS485` library. Latest entries are at the top.
55

66

7+
#
8+
### **+05:30 11:25:41 PM 20-03-2025, Thursday**
9+
10+
- Bumped up the version in Arduino library specification files.
11+
- Updated project information and attribution in the source files.
12+
- New Version 🆕 `1.0.14`.
13+
714
#
815
### **+05:30 10:41:11 PM 20-03-2025, Thursday**
916

docs/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CSE_ArduinoRS485 library
22

3-
Version 1.0.12, +05:30 03:16:49 PM 28-01-2024, Sunday, Monday
3+
Version 1.0.14, +05:30 11:23:57 PM 20-03-2025, Thursday
44

55
### Index
66

@@ -30,7 +30,7 @@ Version 1.0.12, +05:30 03:16:49 PM 28-01-2024, Sunday, Monday
3030

3131
### `RS485Class()`
3232

33-
Creates a new `RS485Class` object. If you are using a hardware serial port, you can simply send its name as a parameter. If you are using software serial, you must include the SoftwareSerial library first and create a new object of that type. Then send the name of the object as a parameter.
33+
Creates a new `RS485Class` object. If you are using a hardware serial port, you can simply send its name as a parameter. If you are using software serial, you must include the `SoftwareSerial` library first and create a new object of that type. Then send the name of the object as a parameter.
3434

3535
Currently, software serial is supported only on AVR (Arduino Uno, Nano, etc.) and ESP8266 boards. The macro `SOFTWARE_SERIAL_REQUIRED` is used to check if a software serial port to be used. You can update the board support by adding the board name to the macro in the `CSE_RS485.h` file.
3636
#### Syntax

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.13",
16+
"version": "1.0.14",
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.13
2+
version=1.0.14
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_ArduinoRS485.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
2+
//===================================================================================//
3+
/*
4+
Filename: CSE_ArduinoRS485.h
5+
Description: Header file for the CSE_ArduinoRS485 Arduino library.
6+
Framework: Arduino, PlatformIO
7+
Author: Vishnu Mohanan (@vishnumaiea, @vizmohanan)
8+
Maintainer: CIRCUITSTATE Electronics (@circuitstate)
9+
Version: 1.0.14
10+
License: LGPL 2.1
11+
Source: https://github.com/CIRCUITSTATE/CSE_ArduinoRS485
12+
Last Modified: +05:30 23:28:30 PM 20-03-2025, Thursday
13+
*/
14+
//===================================================================================//
115
/*
216
This file is part of the ArduinoRS485 library.
317
Copyright (c) 2018 Arduino SA. All rights reserved.
@@ -16,6 +30,7 @@
1630
License along with this library; if not, write to the Free Software
1731
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1832
*/
33+
//===================================================================================//
1934

2035
#ifndef _CSE_ARDUINO_RS485_H_INCLUDED
2136
#define _CSE_ARDUINO_RS485_H_INCLUDED

src/CSE_RS485.cpp

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11

2+
//===================================================================================//
3+
/*
4+
Filename: CSE_RS485.h
5+
Description: Main source file for the CSE_ArduinoRS485 Arduino library.
6+
Framework: Arduino, PlatformIO
7+
Author: Vishnu Mohanan (@vishnumaiea, @vizmohanan)
8+
Maintainer: CIRCUITSTATE Electronics (@circuitstate)
9+
Version: 1.0.14
10+
License: LGPL 2.1
11+
Source: https://github.com/CIRCUITSTATE/CSE_ArduinoRS485
12+
Last Modified: +05:30 23:29:05 PM 20-03-2025, Thursday
13+
*/
214
//===================================================================================//
315
/*
416
This file is part of the ArduinoRS485 library.
@@ -20,12 +32,6 @@
2032
*/
2133
//===================================================================================//
2234

23-
// Version: 1.0.13
24-
// Last modified: +05:30 21:06:17 PM 27-10-2024, Sunday
25-
// Source: https://github.com/CIRCUITSTATE/CSE_ArduinoRS485
26-
27-
//===================================================================================//
28-
2935
#include "CSE_RS485.h"
3036

3137
//===================================================================================//

src/CSE_RS485.h

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11

2+
//===================================================================================//
3+
/*
4+
Filename: CSE_RS485.h
5+
Description: Main header file for the CSE_ArduinoRS485 Arduino library.
6+
Framework: Arduino, PlatformIO
7+
Author: Vishnu Mohanan (@vishnumaiea, @vizmohanan)
8+
Maintainer: CIRCUITSTATE Electronics (@circuitstate)
9+
Version: 1.0.14
10+
License: LGPL 2.1
11+
Source: https://github.com/CIRCUITSTATE/CSE_ArduinoRS485
12+
Last Modified: +05:30 23:28:19 PM 20-03-2025, Thursday
13+
*/
214
//===================================================================================//
315
/*
416
This file is part of the ArduinoRS485 library.
@@ -20,12 +32,6 @@
2032
*/
2133
//===================================================================================//
2234

23-
// Version: 1.0.13
24-
// Last modified: +05:30 22:35:33 PM 20-03-2025, Thursday
25-
// Source: https://github.com/CIRCUITSTATE/CSE_ArduinoRS485
26-
27-
//===================================================================================//
28-
2935
#ifndef _CSE_RS485_H_INCLUDED
3036
#define _CSE_RS485_H_INCLUDED
3137

0 commit comments

Comments
 (0)