Skip to content

Commit 97c6080

Browse files
committed
Rename library from Arduino_PortentaBreakoutCarrier to Arduino_PortentaBreakout
1 parent 43d3d03 commit 97c6080

File tree

9 files changed

+30
-30
lines changed

9 files changed

+30
-30
lines changed

examples/BreakoutRTCGet/BreakoutRTCGet.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/*
2-
Breakout Carrier - BreakoutRTCGet
2+
Portenta Breakout - BreakoutRTCGet
33
4-
The sketch shows how to read the RTC of the PortentaH7 using the Breakout Carrier.
4+
The sketch shows how to read the RTC of the Portenta H7 using the Portenta Breakout.
55
66
The circuit:
77
- Portenta H7
8-
- BreakOut Carrier
8+
- Portenta Breakout
99
- CR2032 Battery
1010
1111
This example code is in the public domain.
1212
*/
13-
#include <Arduino_PortentaBreakoutCarrier.h>
13+
#include <Arduino_PortentaBreakout.h>
1414

1515
Timestamp utcTime;
1616

examples/BreakoutRTCSet/BreakoutRTCSet.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/*
2-
Breakout Carrier - BreakoutRTCSet
2+
Portenta Breakout - BreakoutRTCSet
33
4-
The sketch shows how to configure the RTC of the PortentaH7 using the Breakout Carrier.
4+
The sketch shows how to configure the RTC of the PortentaH7 using the Portenta Breakout.
55
66
The circuit:
77
- Portenta H7
8-
- BreakOut Carrier
8+
- Portenta Breakout
99
- CR2032 Battery
1010
1111
This example code is in the public domain.
1212
*/
13-
#include <Arduino_PortentaBreakoutCarrier.h>
13+
#include <Arduino_PortentaBreakout.h>
1414

1515
Timestamp utcTime;
1616

examples/BreakoutWebServer/BreakoutWebServer.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
Web Server
33
44
A simple web server that shows the value of the analog input pins.
5-
using PortentaBreakout.
5+
using the Portenta Breakout.
66
77
Circuit:
8-
* PortetaBreakout
8+
* Portenta Breakout
99
1010
created 18 Dec 2009
1111
by David A. Mellis
@@ -16,7 +16,7 @@
1616
1717
*/
1818

19-
#include <Arduino_PortentaBreakoutCarrier.h>
19+
#include <Arduino_PortentaBreakout.h>
2020

2121
// Enter a MAC address and IP address for your controller below.
2222
// The IP address will be dependent on your local network:

examples/GpioManagement/GpioManagement.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
2-
Breakout Carrier - GPIO Management
2+
Portenta Breakout - GPIO Management
33
4-
The sketch shows how to use the Breakout Carrier
4+
The sketch shows how to use the Portenta Breakout
55
and how to turn a PIN on for one second, then off for one
66
second, repeatedly.
77
88
The circuit:
99
- Portenta H7
10-
- Portenta Breakout Carrier
10+
- Portenta Breakout
1111
1212
This example code is in the public domain.
1313
*/
14-
#include <Arduino_PortentaBreakoutCarrier.h>
14+
#include <Arduino_PortentaBreakout.h>
1515

1616
// The macros to access each GPIO are made using the peripheral silk name
1717
// and the pin name (e.g. the GPIO 0 pin can be accessed using

examples/LM75BTemperature/LM75BTemperature.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/*
2-
Breakout Carrier - LM75BTemperature
2+
Portenta Breakout - LM75BTemperature
33
4-
The sketch shows how to read temperature from LM75B using I2C bus of the BreakoutCarrier.
4+
The sketch shows how to read temperature from LM75B using I2C bus of the Portenta Breakout.
55
66
The circuit:
77
- Portenta H7
8-
- Breakout Carrier
8+
- Portenta Breakout
99
1010
This example code is in the public domain.
1111
*/
1212

13-
#include <Arduino_PortentaBreakoutCarrier.h>
13+
#include <Arduino_PortentaBreakout.h>
1414

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

examples/PDMRootMeanSquare/PDMRootMeanSquare.ino

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

13-
#include <Arduino_PortentaBreakoutCarrier.h>
13+
#include <Arduino_PortentaBreakout.h>
1414

1515
// default number of output channels
1616
static const char channels = 1;

examples/analogRead/analogRead.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/*
2-
Breakout Carrier - analogRead
2+
Portenta Breakout - analogRead
33
4-
The sketch shows how to use analog inputs of the Breakout Carrier.
4+
The sketch shows how to use analog inputs of the Portenta Breakout.
55
66
The circuit:
77
- Portenta H7
8-
- BreakOut Carrier
8+
- Portenta Breakout
99
1010
This example code is in the public domain.
1111
*/
12-
#include <Arduino_PortentaBreakoutCarrier.h>
12+
#include <Arduino_PortentaBreakout.h>
1313

1414
const byte ANALOG_PIN_NUMBER = 8;
1515
const int ANALOG_RESOLUTION = 16;

library.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name=Arduino_PortentaBreakoutCarrier
1+
name=Arduino_PortentaBreakout
22
version=1.0.0
33
author=Arduino
44
maintainer=Arduino <info@arduino.cc>
55
sentence=Arduino Library for Arduino Portenta Breakout Carrier
66
paragraph=
77
category=Other
8-
url=https://github.com/arduino-libraries/Arduino_PortentaBreakoutLibrary
8+
url=https://github.com/arduino-libraries/Arduino_PortentaBreakout
99
architectures=mbed,mbed_portenta
10-
includes=Arduino_PortentaBreakoutCarrier.h
10+
includes=Arduino_PortentaBreakout.h

src/Arduino_PortentaBreakoutCarrier.h renamed to src/Arduino_PortentaBreakout.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ License along with this library; if not, write to the Free Software
2323
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
*/
2525

26-
#ifndef ARDUINO_PORTENTA_BREAKOUT_CARRIER_H
27-
#define ARDUINO_PORTENTA_BREAKOUT_CARRIER_H
26+
#ifndef ARDUINO_PORTENTA_BREAKOUT_H
27+
#define ARDUINO_PORTENTA_BREAKOUT_H
2828

2929
#include <Arduino.h>
3030
#include <pins_arduino.h>
@@ -271,4 +271,4 @@ class BreakoutCarrierClass {
271271

272272
BreakoutCarrierClass Breakout;
273273

274-
#endif // ARDUINO_PORTENTA_BREAKOUT_CARRIER_H
274+
#endif // ARDUINO_PORTENTA_BREAKOUT_H

0 commit comments

Comments
 (0)