Skip to content

Commit 6f23793

Browse files
committed
Rename library to Arduino_MKRGPS
1 parent ce47912 commit 6f23793

File tree

7 files changed

+20
-18
lines changed

7 files changed

+20
-18
lines changed

examples/GPSLocation/GPSLocation.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 <MKRGPS.h>
14+
#include <Arduino_MKRGPS.h>
1515

1616
void setup() {
1717
// initialize serial communications and wait for port to open:

examples/GPSLocationStandy/GPSLocationStandy.ino

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

16-
#include <MKRGPS.h>
16+
#include <Arduino_MKRGPS.h>
1717

1818
void setup() {
1919
// initialize serial communications and wait for port to open:

keywords.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
#######################################
2-
# Syntax Coloring Map For MKRGPS
3-
#######################################
1+
########################################
2+
# Syntax Coloring Map For Arduino_MKRGPS
3+
########################################
44
# Class
5-
#######################################
5+
########################################
66

7+
Arduino_MKRGPS KEYWORD1
78
MKRGPS KEYWORD1
89
GPS KEYWORD1
910

10-
#######################################
11+
########################################
1112
# Methods and Functions
12-
#######################################
13+
########################################
1314

1415
begin KEYWORD2
1516
end KEYWORD2
@@ -27,6 +28,6 @@ getTime KEYWORD2
2728
standby KEYWORD2
2829
wakeup KEYWORD2
2930

30-
#######################################
31+
########################################
3132
# Constants
32-
#######################################
33+
########################################

library.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name=MKRGPS
1+
name=Arduino_MKRGPS
22
version=1.0.0
33
author=Arduino
44
maintainer=Arduino <[email protected]>
55
sentence=Allows you to read the location from the GPS on your MKR GPS shield.
66
paragraph=
77
category=Sensors
8-
url=http://github.com/arduino-libraries/MKRGPS
8+
url=http://github.com/arduino-libraries/Arduino_MKRGPS
99
architectures=samd
10-
includes=MKRGPS.h
10+
includes=Arduino_MKRGPS.h

src/MKRGPS.h renamed to src/Arduino_MKRGPS.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of the MKRGPS library.
2+
This file is part of the Arduino_MKRGPS library.
33
Copyright (c) 2019 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
@@ -17,9 +17,10 @@
1717
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1818
*/
1919

20-
#ifndef _MKRGPS_H_
21-
#define _MKRGPS_H_
20+
#ifndef _ARDUINO_MKRGPS_H_
21+
#define _ARDUINO_MKRGPS_H_
2222

2323
#include "GPS.h"
2424

2525
#endif
26+

src/GPS.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of the MKRGPS library.
2+
This file is part of the Arduino_MKRGPS library.
33
Copyright (c) 2019 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or

src/GPS.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of the MKRGPS library.
2+
This file is part of the Arduino_MKRGPS library.
33
Copyright (c) 2019 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or

0 commit comments

Comments
 (0)