Skip to content

Commit 147c265

Browse files
committed
Rename lib to Arduino_MKRENV
1 parent af95cbd commit 147c265

File tree

7 files changed

+36
-10
lines changed

7 files changed

+36
-10
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Allows you to read the temperature, humidity, pressure, light and UV sensors of
44

55
== License ==
66

7-
Copyright (c) 2018 Arduino SA. All rights reserved.
7+
Copyright (c) 2019 Arduino SA. All rights reserved.
88

99
This library is free software; you can redistribute it and/or
1010
modify it under the terms of the GNU Lesser General Public

examples/ReadSensors/ReadSensors.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
This example code is in the public domain.
1212
*/
1313

14-
#include <MKRENV.h>
14+
#include <Arduino_MKRENV.h>
1515

1616
void setup() {
1717
Serial.begin(9600);

keywords.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#######################################
2-
# Syntax Coloring Map For MKRENV
2+
# Syntax Coloring Map For Arduino_MKRENV
33
#######################################
44
# Class
55
#######################################
66

7+
Arduino_MKRENV KEYWORD1
78
MKRENV KEYWORD1
89
ENV KEYWORD1
910

library.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name=MKRENV
1+
name=Arduino_MKRENV
22
version=1.0.0
33
author=Arduino
44
maintainer=Arduino <[email protected]>
55
sentence=Allows you to read the temperature, humidity, pressure, light and UV sensors of your MKR ENV shield.
66
paragraph=
77
category=Sensors
8-
url=http://github.com/arduino-libraries/MKRENV
8+
url=http://github.com/arduino-libraries/Arduino_MKRENV
99
architectures=samd
10-
includes=MKRENV.h
10+
includes=Arduino_MKRENV.h

src/Arduino_MKRENV.h

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
This file is part of the Arduino_MKRENV library.
3+
Copyright (c) 2019 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 _ARUDINO_MKRENV_H_
21+
#define _ARUDINO_MKRENV_H_
22+
23+
#include "MKRENV.h"
24+
25+
#endif

src/MKRENV.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
This file is part of the MKRENV library.
3-
Copyright (c) 2018 Arduino SA. All rights reserved.
2+
This file is part of the Arduino_MKRENV library.
3+
Copyright (c) 2019 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
66
modify it under the terms of the GNU Lesser General Public

src/MKRENV.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
This file is part of the MKRENV library.
3-
Copyright (c) 2018 Arduino SA. All rights reserved.
2+
This file is part of the Arduino_MKRENV library.
3+
Copyright (c) 2019 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
66
modify it under the terms of the GNU Lesser General Public

0 commit comments

Comments
 (0)