Skip to content

Commit ac34ebb

Browse files
committed
Rename lib to ArduinoRS485
1 parent 2e51c13 commit ac34ebb

File tree

9 files changed

+36
-10
lines changed

9 files changed

+36
-10
lines changed

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Enables sending and receiving data using the RS485 standard with RS485 shields,
55
This library supports the Maxim Integrated MAX3157 and equivalent chipsets.
66

77
For more information about this library please visit us at
8-
http://www.arduino.cc/en/Reference/RS485
8+
http://www.arduino.cc/en/Reference/ArduinoRS485
99

1010
== License ==
1111

examples/RS485Passthrough/RS485Passthrough.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
by Sandeep Mistry
2121
*/
2222

23-
#include <RS485.h>
23+
#include <ArduinoRS485.h>
2424

2525
void setup() {
2626
Serial.begin(9600);

examples/RS485Receiver/RS485Receiver.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
by Sandeep Mistry
1818
*/
1919

20-
#include <RS485.h>
20+
#include <ArduinoRS485.h>
2121

2222
void setup() {
2323
Serial.begin(9600);

examples/RS485Sender/RS485Sender.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
by Sandeep Mistry
1818
*/
1919

20-
#include <RS485.h>
20+
#include <ArduinoRS485.h>
2121

2222
int counter = 0;
2323

keywords.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#######################################
2-
# Syntax Coloring Map For RS485
2+
# Syntax Coloring Map For ArduinoRS485
33
#######################################
44

55
#######################################
66
# Datatypes (KEYWORD1)
77
#######################################
88

9+
ArduinoRS485 KEYWORD1
910
RS485 KEYWORD1
1011

1112
#######################################

library.properties

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

src/ArduinoRS485.h

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
This file is part of the ArduinoRS485 library.
3+
Copyright (c) 2018 Arduino SA. All rights reserved.
4+
5+
This library is free software; you can redistribute it and/or
6+
modify it under the terms of the GNU Lesser General Public
7+
License as published by the Free Software Foundation; either
8+
version 2.1 of the License, or (at your option) any later version.
9+
10+
This library is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
Lesser General Public License for more details.
14+
15+
You should have received a copy of the GNU Lesser General Public
16+
License along with this library; if not, write to the Free Software
17+
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18+
*/
19+
20+
#ifndef _ARDUINO_RS485_H_INCLUDED
21+
#define _ARDUINO_RS485_H_INCLUDED
22+
23+
#include "RS485.h"
24+
25+
#endif

src/RS485.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of the RS485 library.
2+
This file is part of the ArduinoRS485 library.
33
Copyright (c) 2018 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or

src/RS485.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of the RS485 library.
2+
This file is part of the ArduinoRS485 library.
33
Copyright (c) 2018 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or

0 commit comments

Comments
 (0)