2025-11-16 15:55:03 +11:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <MeshCore.h>
|
|
|
|
|
#include <Arduino.h>
|
2025-12-12 19:01:15 +07:00
|
|
|
#include <helpers/NRF52Board.h>
|
2025-11-16 15:55:03 +11:00
|
|
|
|
2025-12-20 10:44:13 +01:00
|
|
|
class KeepteenLT1Board : public NRF52Board {
|
2025-11-16 15:55:03 +11:00
|
|
|
protected:
|
|
|
|
|
uint8_t btn_prev_state;
|
|
|
|
|
|
|
|
|
|
public:
|
2025-12-20 10:44:13 +01:00
|
|
|
KeepteenLT1Board() : NRF52Board("KeepteenLT1_OTA") {}
|
2025-11-16 15:55:03 +11:00
|
|
|
void begin();
|
|
|
|
|
|
|
|
|
|
#define BATTERY_SAMPLES 8
|
|
|
|
|
|
|
|
|
|
uint16_t getBattMilliVolts() override {
|
|
|
|
|
analogReadResolution(12);
|
|
|
|
|
|
|
|
|
|
uint32_t raw = 0;
|
|
|
|
|
for (int i = 0; i < BATTERY_SAMPLES; i++) {
|
|
|
|
|
raw += analogRead(PIN_VBAT_READ);
|
|
|
|
|
}
|
|
|
|
|
raw = raw / BATTERY_SAMPLES;
|
|
|
|
|
return (ADC_MULTIPLIER * raw);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char* getManufacturerName() const override {
|
|
|
|
|
return "Keepteen LT1";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
|
|
void powerOff() override {
|
|
|
|
|
sd_power_system_off();
|
|
|
|
|
}
|
|
|
|
|
};
|