From 34a81536c252529bf7b59d725ff027acc05e8977 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Sat, 2 Mar 2024 15:37:38 +0300 Subject: [PATCH] Fix reverse motors pwm --- flix/motors.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flix/motors.ino b/flix/motors.ino index 1f21bfd..91fc367 100644 --- a/flix/motors.ino +++ b/flix/motors.ino @@ -14,8 +14,8 @@ #define PWM_NEUTRAL 1500 #define PWM_MIN 1600 #define PWM_MAX 2300 -#define PWM_REVERSE_MIN 1440 -#define PWM_REVERSE_MAX 1100 +#define PWM_REVERSE_MIN 1100 +#define PWM_REVERSE_MAX 1440 void setupMotors() { Serial.println("Setup Motors");