ESP32-C3 RC

This commit is contained in:
2025-01-02 04:49:07 -05:00
parent 9e3baab380
commit b0724237fd

View File

@@ -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;
}