From b0d51d0c9a82c69ef63ddf9d0cb1182c2d8891a0 Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 23 Sep 2022 11:47:09 -0700 Subject: [PATCH] Remove unavailable item from `depends` field of library.properties The depends field of the library.properties metadata file specifies the dependencies that should be installed along with the library by the Arduino Library Manager. This field must contain only the names of libraries that are available for installation via Library Manager. The presence of any items which are not in Library Manager causes installation of the library to fail: - Arduino IDE 1.x: "no protocol:" error - Arduino IDE 2.x: fails silently - Arduino CLI: "No valid dependencies solution found" error --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index 97d3bb0..e231b27 100644 --- a/library.properties +++ b/library.properties @@ -7,4 +7,4 @@ paragraph=Includes easy to follow examples for implementing velocity sensitive F category=Sensors url=https://github.com/joshnishikawa/MIDIcontroller architectures=avr -depends=MIDI Library, Flicker, Bounce, Encoder +depends=MIDI Library, Flicker, Encoder