From 503aac73de73715be22776cf8bac91cbea630ea2 Mon Sep 17 00:00:00 2001 From: Alexander Spiridonov Date: Sun, 16 Oct 2016 14:34:11 +0400 Subject: [PATCH] Examples include statement update --- examples/Example-01_Analog/Example-01_Analog.ino | 2 +- examples/Example-02_Digital/Example-02_Digital.ino | 2 +- .../Example-03-2_Demux/Example-03-2_Demux.ino | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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