From 0f78b681a30d09a682d3c842848b6bca9231cc01 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 19 Apr 2018 10:46:52 -0700 Subject: [PATCH] Add Animatedly.h to library.properties includes field (#9) The includes field in library.properties is used to specify the #include directives which should be automatically added to the sketch after the user selects Sketch > Include Library > Animatedly. Previously this action would only add the line: #include to the sketch. Thus, Animatedly.h must be one of the values specified in this field. Reference: https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification#libraryproperties-file-format --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index 0fec201..8d52faa 100644 --- a/library.properties +++ b/library.properties @@ -6,4 +6,4 @@ sentence=Precise animation of props or robots without the need for thread-blocki paragraph=Animately allows for precise animation of props or robots, down to the millisecond, without the need for thread-blocking (delay()) or complex state machines. This frees you to focus on the creative aspects of animating rather than the implementation details. category=Device Control url=https://github.com/nickkoza/animately -includes=Core/Timeline.h \ No newline at end of file +includes=Animatedly.h,Core/Timeline.h \ No newline at end of file