Chris--A / Keypad

A version of the keypad library found in Wiring. This is just a copy made compatible with the Arduino IDE library manager.
GNU General Public License v3.0
248 stars 150 forks source link

Update include statements for local-first search #36

Open cerob opened 3 years ago

cerob commented 3 years ago

As this answer states, #include <Keypad.h> statements are global-first whereas #include "Keypad.h" prioritizes current directory.

While packaging an Arduino app, I discovered that compiling was failed due to multiple definitions caused by global-style include statements. This PR aims to correct this.

Thanks.