Skip to content

Commit ef32cc7

Browse files
Update source for Arduino library submission
1 parent 3bf5f2b commit ef32cc7

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

examples/default_to_serial/default_to_serial.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* ArduinoPrintf library will not do that for you.
88
*/
99

10-
#include <ArduinoPrintf.h>
10+
#include <LibPrintf.h>
1111

1212
void setup() {
1313
Serial.begin(115200);

examples/override_putchar/override_putchar.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* filter data, add extra characters, etc.
66
*/
77

8-
#include <ArduinoPrintf.h>
8+
#include <LibPrintf.h>
99

1010
void setup() {
1111
// But the important detail: you are responsible for initializing the interface!

examples/specify_print_class/specify_print_class.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* ArduinoPrintf library will not do that for you.
88
*/
99

10-
#include <ArduinoPrintf.h>
10+
#include <LibPrintf.h>
1111

1212
void setup() {
1313
// Specify the print class to use with printf().

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name=printf
1+
name=LibPrintf
22
version=1.0.0
33
author=Embedded Artistry
44
maintainer=Embedded Artistry <[email protected]>
@@ -7,4 +7,4 @@ paragraph=This library provides support for printf() and other printf-like funct
77
category=Communication
88
url=https://github.com/embeddedartistry/arduino-printf
99
architectures=*
10-
includes=Printf.h
10+
includes=LibPrintf.h

ArduinoPrintf.cpp renamed to src/LibPrintf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "ArduinoPrintf.h"
1+
#include "LibPrintf.h"
22
#include "Arduino.h"
33

44
static Print& print_instance = Serial;
File renamed without changes.

printf.c renamed to src/printf.c

File renamed without changes.

printf.h renamed to src/printf.h

File renamed without changes.

0 commit comments

Comments
 (0)