From 23fe0ffc8de887d61106c085e8ecf535168563ae Mon Sep 17 00:00:00 2001 From: Gerald Venzl Date: Sat, 11 Jun 2022 09:33:58 -0700 Subject: [PATCH 1/2] Include library reference in library guide This PR includes a reference to the library specification at the end of the article. --- .../arduino-creating-library-guide.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md b/content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md index 35e2f97505..7b48b4781f 100644 --- a/content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md +++ b/content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md @@ -253,6 +253,8 @@ It's also nice to provide people with an example sketch that uses your library. If you'd like to check out the complete library (with keywords and example), you can download it: [Morse.zip](https://www.arduino.cc/en/uploads/Hacking/Morse.zip). +If you'd like to make your library available to others in Arduino's **Library Manager** you will also have to inlcude a **library.properties** file. Check out the [Library specification](https://arduino.github.io/arduino-cli/0.23/library-specification/) for more info on that. + If you have any problems or suggestions, please post them to the [Software Development forum](https://forum.arduino.cc/c/development/libraries/39). For more information, see the [API Style Guide](/learn/contributions/arduino-library-style-guide) for information on making a good Arduino-style API for your library. From 04621dd60340cd8213e1ca4fff286630eb574913 Mon Sep 17 00:00:00 2001 From: Gerald Venzl Date: Sat, 11 Jun 2022 09:45:07 -0700 Subject: [PATCH 2/2] Add Library Manager FAQ Add link to the Library Manager FAQ Fix typo --- .../arduino-creating-library-guide.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md b/content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md index 7b48b4781f..2741548701 100644 --- a/content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md +++ b/content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md @@ -253,7 +253,8 @@ It's also nice to provide people with an example sketch that uses your library. If you'd like to check out the complete library (with keywords and example), you can download it: [Morse.zip](https://www.arduino.cc/en/uploads/Hacking/Morse.zip). -If you'd like to make your library available to others in Arduino's **Library Manager** you will also have to inlcude a **library.properties** file. Check out the [Library specification](https://arduino.github.io/arduino-cli/0.23/library-specification/) for more info on that. +If you'd like to make your library available to others in Arduino's **Library Manager** you will also have to include a **library.properties** file. Check out the [library specification](https://arduino.github.io/arduino-cli/latest/library-specification/) for more info on that. +For general questions on the Arduino Library Manager, see the [FAQ](https://github.com/arduino/library-registry/blob/main/FAQ.md#readme). If you have any problems or suggestions, please post them to the [Software Development forum](https://forum.arduino.cc/c/development/libraries/39).