Skip to content

Commit

Permalink
Add Animatedly.h to library.properties includes field (#9)
Browse files Browse the repository at this point in the history
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 <Core/Timeline.h>

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
  • Loading branch information
per1234 authored and nickkoza committed Apr 19, 2018
1 parent 50f27f1 commit 0f78b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
includes=Animatedly.h,Core/Timeline.h

0 comments on commit 0f78b68

Please sign in to comment.