From 08327aa889a32e8728212cc693d739c2c7ff2999 Mon Sep 17 00:00:00 2001 From: Hendrik Langer Date: Sun, 4 Feb 2018 13:54:06 +0100 Subject: [PATCH] swap rotary encoder pins --- src/hardware.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hardware.h b/src/hardware.h index 1ce4c5f..e2dfb1a 100644 --- a/src/hardware.h +++ b/src/hardware.h @@ -4,8 +4,8 @@ /* pin assignments */ static constexpr uint8_t buttonPin = 0; static constexpr uint8_t sensorPin = 0; -static constexpr uint8_t rotaryPinA = 38; -static constexpr uint8_t rotaryPinB = 39; +static constexpr uint8_t rotaryPinA = 39; +static constexpr uint8_t rotaryPinB = 38; static constexpr uint8_t rotaryPinButton = 22;