diff --git a/examples/Example-01_Analog/Example-01_Analog.ino b/examples/Example-01_Analog/Example-01_Analog.ino index f2f91e1..ea92132 100644 --- a/examples/Example-01_Analog/Example-01_Analog.ino +++ b/examples/Example-01_Analog/Example-01_Analog.ino @@ -12,7 +12,7 @@ This example code is in the public domain. */ -#include "KeyDetector.h" +#include // Define signal identifiers; in this example, number in KEY_XX may be thought of as a percentage of pot rotation range, // e.g. KEY_25 means 25% of the total pot rotation range. The actual value of defined identifier isn't that important most of the time, diff --git a/examples/Example-02_Digital/Example-02_Digital.ino b/examples/Example-02_Digital/Example-02_Digital.ino index 716b96d..fb92165 100644 --- a/examples/Example-02_Digital/Example-02_Digital.ino +++ b/examples/Example-02_Digital/Example-02_Digital.ino @@ -10,7 +10,7 @@ This example code is in the public domain. */ -#include "KeyDetector.h" +#include // Define signal identifiers for three buttons. The actual value of defined identifier isn't important for this example #define KEY_A 1 diff --git a/examples/Example-03_Multiplexed/Example-03-2_Demux/Example-03-2_Demux.ino b/examples/Example-03_Multiplexed/Example-03-2_Demux/Example-03-2_Demux.ino index a4d8d83..7906628 100644 --- a/examples/Example-03_Multiplexed/Example-03-2_Demux/Example-03-2_Demux.ino +++ b/examples/Example-03_Multiplexed/Example-03-2_Demux/Example-03-2_Demux.ino @@ -17,7 +17,7 @@ This example code is in the public domain. */ -#include "KeyDetector.h" +#include // Define signal identifiers for the buttons #define KEY_UP 1