From 26efe2fb1921b3ba3598102cd3cbe02c08d25fb4 Mon Sep 17 00:00:00 2001 From: AeroXuk Date: Mon, 21 Apr 2025 23:01:44 +0100 Subject: [PATCH] Hopefully the correct ADC_MULTIPLIER value. --- src/helpers/rp2040/PicoWBoard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/rp2040/PicoWBoard.h b/src/helpers/rp2040/PicoWBoard.h index b39778d0..cdc9c9f7 100644 --- a/src/helpers/rp2040/PicoWBoard.h +++ b/src/helpers/rp2040/PicoWBoard.h @@ -18,7 +18,7 @@ // built-ins #define PIN_VBAT_READ 26 -#define ADC_MULTIPLIER (3 * 1.73 * 1.187 * 1000) // MT Uses 3.1 +#define ADC_MULTIPLIER (3.1 * 3.3 * 1000) // MT Uses 3.1 #define PIN_LED_BUILTIN LED_BUILTIN class PicoWBoard : public mesh::MainBoard {