ESP32-C3 RC

This commit is contained in:
2025-01-02 04:50:35 -05:00
parent 9040d794a9
commit 83bef1f697

View File

@@ -20,7 +20,7 @@ static int interpolate_raw_val (int raw) {
static int rescale_raw_val (int raw) { static int rescale_raw_val (int raw) {
int s; int s;
s = 2*raw - 5000; //8940; s = raw*raw - 5000; //8940;
return s; return s;
} }