From ce7f2c19500af002103cdf6f9f60881458566287 Mon Sep 17 00:00:00 2001 From: Jan Grewe <jan@faked.org> Date: Sun, 9 Feb 2020 10:07:35 +0100 Subject: [PATCH] Fix left rotations --- OpenWatchWinder.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenWatchWinder.ino b/OpenWatchWinder.ino index 722a35b..8835048 100644 --- a/OpenWatchWinder.ino +++ b/OpenWatchWinder.ino @@ -124,7 +124,7 @@ void loop() else { WState = W_LEFT; - TargetPos += (ROT_R * ROT_STEPS); + TargetPos += (ROT_L * ROT_STEPS); winder.moveTo(TargetPos); } break; // case W_RIGHT -- GitLab