nathanRamaNoodles / Noodle-Synth

A User-friendly Arduino/Teensy Library to play RTTL/MIDI with infinite polyphonic notes; it has full control over volume, pitch, and music. No shields needed(Just a speaker).
https://create.arduino.cc/projecthub/nathan_ramanathan/play-music-without-delay-40e51b
MIT License
138 stars 14 forks source link

Add MusicWithoutDelay.h to library.properties includes field #1

Closed per1234 closed 6 years ago

per1234 commented 6 years ago

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 > MusicWithoutDelay. Previously this action would only add the line:

#include <Tone.h>

to the sketch. Thus, MusicWithoutDelay.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

nathanRamaNoodles commented 6 years ago

Oh, thanks Pert. I never thought of that bug.