Files

42 lines
1.1 KiB
C++
Raw Permalink Normal View History

2025-07-11 01:08:38 +10:00
#pragma once
#include <MeshCore.h>
#include <Arduino.h>
#include <helpers/NRF52Board.h>
2025-07-11 01:08:38 +10:00
class WioTrackerL1Board : public NRF52BoardDCDC {
2025-07-11 01:08:38 +10:00
protected:
uint8_t btn_prev_state;
public:
WioTrackerL1Board() : NRF52Board("WioTrackerL1 OTA") {}
2025-07-11 01:08:38 +10:00
void begin();
#if defined(P_LORA_TX_LED)
void onBeforeTransmit() override {
digitalWrite(P_LORA_TX_LED, HIGH); // turn TX LED on
}
void onAfterTransmit() override {
digitalWrite(P_LORA_TX_LED, LOW); // turn TX LED off
}
#endif
uint16_t getBattMilliVolts() override {
// VBAT_ENABLE is held HIGH continuously (see begin()/initVariant()) so the
// divider node is already settled — don't gate it per-read, that reads high
// and jittery because 10ms wasn't enough for the divider to stabilize.
2025-07-11 01:08:38 +10:00
analogReadResolution(12);
analogReference(AR_INTERNAL);
2026-05-10 18:01:59 +02:00
int adcvalue = analogRead(PIN_VBAT_READ);
2025-07-11 01:08:38 +10:00
return (adcvalue * ADC_MULTIPLIER * AREF_VOLTAGE) / 4.096;
}
const char* getManufacturerName() const override {
return "Seeed Wio Tracker L1";
}
2025-08-17 18:10:58 +10:00
void powerOff() override {
sd_power_system_off();
}
2025-07-11 01:08:38 +10:00
};