Battery (TechoBoard.h/cpp): Added PIN_VBAT_MEAS_EN (P0.31) — the T-Echo Lite has a gated voltage divider that must be enabled before reading. Also added pinMode(PIN_VBAT_READ, INPUT) before each ADC read to reclaim P0.02 from other peripherals. Pin definitions hardcoded from LilyGo's t_echo_lite_config.h. I2C (variant.h): Corrected SDA/SCL from P0.04/P0.02 to P1.04/P1.02 per LilyGo's IIC_1_SDA/IIC_1_SCL. The old P0.02 mapping conflicted with the battery ADC pin. GPS (variant.h): Corrected all five GPS pin assignments to match LilyGo's config — UART TX/RX, wake, PPS, and power enable were all scrambled. SPI (variant.h): Fixed SPI_INTERFACES_COUNT from _PINNUM(0, 2) to (2). Tested on T-Echo Lite Non-Shell (USB-C, no display). Battery readings match Heltec V4 reference within 10mV.
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <MeshCore.h>
|
|
#include <Arduino.h>
|
|
#include <helpers/NRF52Board.h>
|
|
|
|
// ============================================================
|
|
// T-Echo Lite battery pins — hardcoded from LilyGo t_echo_lite_config.h
|
|
// NOT using any defines from variant.h for battery measurement
|
|
// ============================================================
|
|
#define PIN_VBAT_READ _PINNUM(0, 2) // BATTERY_ADC_DATA
|
|
#define PIN_VBAT_MEAS_EN _PINNUM(0, 31) // BATTERY_MEASUREMENT_CONTROL
|
|
|
|
class TechoBoard : public NRF52BoardDCDC {
|
|
public:
|
|
TechoBoard() : NRF52Board("TECHO_OTA") {}
|
|
void begin();
|
|
uint16_t getBattMilliVolts() override;
|
|
|
|
const char* getManufacturerName() const override {
|
|
return "LilyGo T-Echo Lite";
|
|
}
|
|
|
|
void powerOff() override {
|
|
digitalWrite(PIN_VBAT_MEAS_EN, LOW);
|
|
#ifdef LED_RED
|
|
digitalWrite(LED_RED, LOW);
|
|
#endif
|
|
#ifdef LED_GREEN
|
|
digitalWrite(LED_GREEN, LOW);
|
|
#endif
|
|
#ifdef LED_BLUE
|
|
digitalWrite(LED_BLUE, LOW);
|
|
#endif
|
|
#ifdef DISP_BACKLIGHT
|
|
digitalWrite(DISP_BACKLIGHT, LOW);
|
|
#endif
|
|
#ifdef PIN_PWR_EN
|
|
digitalWrite(PIN_PWR_EN, LOW);
|
|
#endif
|
|
sd_power_system_off();
|
|
}
|
|
}; |