2025-11-29 10:55:01 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
2025-12-22 16:25:35 +01:00
|
|
|
#include <MeshCore.h>
|
|
|
|
|
#include <helpers/NRF52Board.h>
|
Add centralized LEDManager for configurable LED behavior
Adds a LEDManager class (src/helpers/ui/LEDManager.h) that centralizes
all LED control into one component with begin()/loop() lifecycle and
per-pin active-HIGH/LOW polarity support.
LED settings are exposed as custom vars (led.status, led.activity)
accessible via companion radio binary protocol, CLI set/get commands,
and the SensorManager settings interface.
Status LED modes: off, boot-30s, slow blink (200ms/4s), always on.
Activity LED modes: off, BLE only, LoRa TX only, BLE + LoRa TX.
Integrated into 23 board variants, replacing scattered hardcoded
digitalWrite calls in onBeforeTransmit/onAfterTransmit/powerOff.
2026-03-20 18:19:44 -07:00
|
|
|
#include <helpers/ui/LEDManager.h>
|
2025-11-29 10:55:01 +01:00
|
|
|
|
|
|
|
|
// built-ins
|
|
|
|
|
#define VBAT_MV_PER_LSB (0.73242188F) // 3.0V ADC range and 12-bit ADC resolution = 3000mV/4096
|
|
|
|
|
|
|
|
|
|
#define VBAT_DIVIDER_COMP ADC_MULTIPLIER // Compensation factor for the VBAT divider
|
|
|
|
|
|
|
|
|
|
#define PIN_VBAT_READ BATTERY_PIN
|
|
|
|
|
#define REAL_VBAT_MV_PER_LSB (VBAT_DIVIDER_COMP * VBAT_MV_PER_LSB)
|
|
|
|
|
|
2026-01-29 15:32:51 +01:00
|
|
|
class ThinkNodeM6Board : public NRF52BoardDCDC {
|
|
|
|
|
protected:
|
|
|
|
|
#if NRF52_POWER_MANAGEMENT
|
|
|
|
|
void initiateShutdown(uint8_t reason) override;
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-11-29 10:55:01 +01:00
|
|
|
public:
|
2026-01-29 15:32:51 +01:00
|
|
|
ThinkNodeM6Board() : NRF52Board("THINKNODE_M6_OTA") {}
|
2025-11-29 10:55:01 +01:00
|
|
|
void begin();
|
|
|
|
|
uint16_t getBattMilliVolts() override;
|
|
|
|
|
|
|
|
|
|
void onBeforeTransmit() override {
|
Add centralized LEDManager for configurable LED behavior
Adds a LEDManager class (src/helpers/ui/LEDManager.h) that centralizes
all LED control into one component with begin()/loop() lifecycle and
per-pin active-HIGH/LOW polarity support.
LED settings are exposed as custom vars (led.status, led.activity)
accessible via companion radio binary protocol, CLI set/get commands,
and the SensorManager settings interface.
Status LED modes: off, boot-30s, slow blink (200ms/4s), always on.
Activity LED modes: off, BLE only, LoRa TX only, BLE + LoRa TX.
Integrated into 23 board variants, replacing scattered hardcoded
digitalWrite calls in onBeforeTransmit/onAfterTransmit/powerOff.
2026-03-20 18:19:44 -07:00
|
|
|
if (ledManager) ledManager->onBeforeTransmit();
|
2025-11-29 10:55:01 +01:00
|
|
|
}
|
|
|
|
|
void onAfterTransmit() override {
|
Add centralized LEDManager for configurable LED behavior
Adds a LEDManager class (src/helpers/ui/LEDManager.h) that centralizes
all LED control into one component with begin()/loop() lifecycle and
per-pin active-HIGH/LOW polarity support.
LED settings are exposed as custom vars (led.status, led.activity)
accessible via companion radio binary protocol, CLI set/get commands,
and the SensorManager settings interface.
Status LED modes: off, boot-30s, slow blink (200ms/4s), always on.
Activity LED modes: off, BLE only, LoRa TX only, BLE + LoRa TX.
Integrated into 23 board variants, replacing scattered hardcoded
digitalWrite calls in onBeforeTransmit/onAfterTransmit/powerOff.
2026-03-20 18:19:44 -07:00
|
|
|
if (ledManager) ledManager->onAfterTransmit();
|
2025-11-29 10:55:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char* getManufacturerName() const override {
|
2026-01-29 15:32:51 +01:00
|
|
|
return "Elecrow ThinkNode M6";
|
2025-11-29 10:55:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void powerOff() override {
|
Add centralized LEDManager for configurable LED behavior
Adds a LEDManager class (src/helpers/ui/LEDManager.h) that centralizes
all LED control into one component with begin()/loop() lifecycle and
per-pin active-HIGH/LOW polarity support.
LED settings are exposed as custom vars (led.status, led.activity)
accessible via companion radio binary protocol, CLI set/get commands,
and the SensorManager settings interface.
Status LED modes: off, boot-30s, slow blink (200ms/4s), always on.
Activity LED modes: off, BLE only, LoRa TX only, BLE + LoRa TX.
Integrated into 23 board variants, replacing scattered hardcoded
digitalWrite calls in onBeforeTransmit/onAfterTransmit/powerOff.
2026-03-20 18:19:44 -07:00
|
|
|
if (ledManager) ledManager->powerOff();
|
2025-11-29 10:55:01 +01:00
|
|
|
|
|
|
|
|
// power off board
|
|
|
|
|
sd_power_system_off();
|
|
|
|
|
}
|
|
|
|
|
};
|