From 12b8295a82db28d91050c8f13776cde235416872 Mon Sep 17 00:00:00 2001 From: Josefine Hansson <66409231+jhansson-ard@users.noreply.github.com> Date: Mon, 24 Apr 2023 09:56:28 +0200 Subject: [PATCH] Updated link to morse zip file Updated the link to the morse zip file in the Library tutorial. See more [here](https://github.com/arduino/docs-content/pull/849) --- .../arduino-creating-library-guide.md | 2 +- 1 file changed, 1 insertion(+), 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 2697c1e08e..411b0fead2 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 @@ -268,7 +268,7 @@ Each line has the name of the keyword, followed by a tab (not spaces), followed It's also nice to provide people with an example sketch that uses your library. To do this, create an **examples** directory inside the **Morse** directory. Then, move or copy the directory containing the sketch (let's call it **SOS**) we wrote above into the examples directory. (You can find the sketch using the **Sketch > Show Sketch Folder** command.) If you restart the Arduino environment (this is the last time, I promise) - you'll see a **Library-Morse** item inside the **File > Sketchbook > Examples** menu containing your example. You might want to add some comments that better explain how to use 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 check out the complete library (with keywords and example), you can download it: [Morse.zip](https://github.com/arduino/docs-content/files/11130152/Morse.zip). 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).