Skip to content

Commit

Permalink
Merge pull request #37 from BuilderSky/master
Browse files Browse the repository at this point in the history
Added "A" to each example
  • Loading branch information
mathertel authored Jul 18, 2022
2 parents 240f8c5 + bd1d4c2 commit d1c98a6
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 d1c98a6

Please sign in to comment.