From b0724237fd60fcbb37ce9917d75cde27476d0b4b Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Thu, 2 Jan 2025 04:49:07 -0500 Subject: [PATCH] ESP32-C3 RC --- ESP-IDF_Robot/main/motor_controls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ESP-IDF_Robot/main/motor_controls.h b/ESP-IDF_Robot/main/motor_controls.h index 334dc93f3..3114dbff2 100644 --- a/ESP-IDF_Robot/main/motor_controls.h +++ b/ESP-IDF_Robot/main/motor_controls.h @@ -20,7 +20,7 @@ static int interpolate_raw_val (int raw) { static int rescale_raw_val (int raw) { int s; - s = 2*raw - 7000; //8940; + s = 2*raw - 5000; //8940; return s; }