From bd1d4c22d2e38690ef6474531b155b228631b4a1 Mon Sep 17 00:00:00 2001 From: BuilderSky <67489968+BuilderSky@users.noreply.github.com> Date: Sun, 17 Jul 2022 14:55:32 -0500 Subject: [PATCH] Added "A" to each example The "A" was missing from both Analog definitions on each example. --- examples/AcceleratedRotator/AcceleratedRotator.ino | 4 ++-- examples/InterruptRotator/InterruptRotator.ino | 4 ++-- examples/LimitedRotator/LimitedRotator.ino | 4 ++-- examples/SimplePollRotator/SimplePollRotator.ino | 4 ++-- examples/SimplePollRotatorLCD/SimplePollRotatorLCD.ino | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/AcceleratedRotator/AcceleratedRotator.ino b/examples/AcceleratedRotator/AcceleratedRotator.ino index 1efed75..a241f0c 100644 --- a/examples/AcceleratedRotator/AcceleratedRotator.ino +++ b/examples/AcceleratedRotator/AcceleratedRotator.ino @@ -28,8 +28,8 @@ #if defined(ARDUINO_AVR_UNO) || defined(ARDUINO_AVR_NANO_EVERY) // Example for Arduino UNO with input signals on pin 2 and 3 -#define PIN_IN1 2 -#define PIN_IN2 3 +#define PIN_IN1 A2 +#define PIN_IN2 A3 #elif defined(ESP8266) // Example for ESP8266 NodeMCU with input signals on pin D5 and D6 diff --git a/examples/InterruptRotator/InterruptRotator.ino b/examples/InterruptRotator/InterruptRotator.ino index cce0571..846ffbc 100644 --- a/examples/InterruptRotator/InterruptRotator.ino +++ b/examples/InterruptRotator/InterruptRotator.ino @@ -30,8 +30,8 @@ #if defined(ARDUINO_AVR_UNO) || defined(ARDUINO_AVR_NANO_EVERY) // Example for Arduino UNO with input signals on pin 2 and 3 -#define PIN_IN1 2 -#define PIN_IN2 3 +#define PIN_IN1 A2 +#define PIN_IN2 A3 #elif defined(ESP8266) // Example for ESP8266 NodeMCU with input signals on pin D5 and D6 diff --git a/examples/LimitedRotator/LimitedRotator.ino b/examples/LimitedRotator/LimitedRotator.ino index 18146b4..23bfff1 100644 --- a/examples/LimitedRotator/LimitedRotator.ino +++ b/examples/LimitedRotator/LimitedRotator.ino @@ -26,8 +26,8 @@ #if defined(ARDUINO_AVR_UNO) || defined(ARDUINO_AVR_NANO_EVERY) // Example for Arduino UNO with input signals on pin 2 and 3 -#define PIN_IN1 2 -#define PIN_IN2 3 +#define PIN_IN1 A2 +#define PIN_IN2 A3 #elif defined(ESP8266) // Example for ESP8266 NodeMCU with input signals on pin D5 and D6 diff --git a/examples/SimplePollRotator/SimplePollRotator.ino b/examples/SimplePollRotator/SimplePollRotator.ino index 9fca8f7..2a41b08 100644 --- a/examples/SimplePollRotator/SimplePollRotator.ino +++ b/examples/SimplePollRotator/SimplePollRotator.ino @@ -25,8 +25,8 @@ #if defined(ARDUINO_AVR_UNO) || defined(ARDUINO_AVR_NANO_EVERY) // Example for Arduino UNO with input signals on pin 2 and 3 -#define PIN_IN1 2 -#define PIN_IN2 3 +#define PIN_IN1 A2 +#define PIN_IN2 A3 #elif defined(ESP8266) // Example for ESP8266 NodeMCU with input signals on pin D5 and D6 diff --git a/examples/SimplePollRotatorLCD/SimplePollRotatorLCD.ino b/examples/SimplePollRotatorLCD/SimplePollRotatorLCD.ino index 6b39679..51b0ddc 100644 --- a/examples/SimplePollRotatorLCD/SimplePollRotatorLCD.ino +++ b/examples/SimplePollRotatorLCD/SimplePollRotatorLCD.ino @@ -22,8 +22,8 @@ #if defined(ARDUINO_AVR_UNO) || defined(ARDUINO_AVR_NANO_EVERY) // Example for Arduino UNO with input signals on pin 2 and 3 -#define PIN_IN1 2 -#define PIN_IN2 3 +#define PIN_IN1 A2 +#define PIN_IN2 A3 #elif defined(ESP8266) // Example for ESP8266 NodeMCU with input signals on pin D5 and D6