Skip to content

Commit

Permalink
Added "A" to each example
Browse files Browse the repository at this point in the history
The "A" was missing from both Analog definitions on each example.
  • Loading branch information
BuilderSky committed Jul 17, 2022
1 parent 240f8c5 commit bd1d4c2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/AcceleratedRotator/AcceleratedRotator.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions examples/InterruptRotator/InterruptRotator.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions examples/LimitedRotator/LimitedRotator.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions examples/SimplePollRotator/SimplePollRotator.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions examples/SimplePollRotatorLCD/SimplePollRotatorLCD.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bd1d4c2

Please sign in to comment.