ESP-IDF Robot Controls

This commit is contained in:
2024-12-29 01:58:44 -05:00
parent 4402ff61bd
commit 2e498f2af1

View File

@@ -21,6 +21,8 @@ static int rescale_raw_val (int raw) {
int s; int s;
s = 4*raw - 8940; s = 4*raw - 8940;
if (s < 0)
s = 0;
return s; return s;
} }