2025-04-29 17:32:08 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <MeshCore.h>
|
|
|
|
|
#include <Arduino.h>
|
2025-12-12 19:01:15 +07:00
|
|
|
#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-04-29 17:32:08 +02:00
|
|
|
|
|
|
|
|
// built-ins
|
|
|
|
|
#define VBAT_MV_PER_LSB (0.73242188F) // 3.0V ADC range and 12-bit ADC resolution = 3000mV/4096
|
|
|
|
|
|
|
|
|
|
#define VBAT_DIVIDER (0.5F) // 150K + 150K voltage divider on VBAT
|
|
|
|
|
#define VBAT_DIVIDER_COMP (2.0F) // Compensation factor for the VBAT divider
|
|
|
|
|
|
|
|
|
|
#define PIN_VBAT_READ (4)
|
|
|
|
|
#define REAL_VBAT_MV_PER_LSB (VBAT_DIVIDER_COMP * VBAT_MV_PER_LSB)
|
|
|
|
|
|
2025-12-20 10:44:13 +01:00
|
|
|
class ThinkNodeM1Board : public NRF52Board {
|
2025-04-29 17:32:08 +02:00
|
|
|
public:
|
2025-12-20 10:44:13 +01:00
|
|
|
ThinkNodeM1Board() : NRF52Board("THINKNODE_M1_OTA") {}
|
2025-04-29 17:32:08 +02:00
|
|
|
void begin();
|
|
|
|
|
uint16_t getBattMilliVolts() override;
|
|
|
|
|
|
2025-06-09 17:35:00 -07:00
|
|
|
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-06-09 17:35:00 -07: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-06-09 17:35:00 -07:00
|
|
|
}
|
|
|
|
|
|
2025-04-29 17:32:08 +02:00
|
|
|
const char* getManufacturerName() const override {
|
|
|
|
|
return "Elecrow ThinkNode-M1";
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-08 20:01:31 +10: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-08-30 21:54:46 +12:00
|
|
|
|
|
|
|
|
// power off board
|
2025-08-08 20:01:31 +10:00
|
|
|
sd_power_system_off();
|
|
|
|
|
}
|
2025-04-29 17:32:08 +02:00
|
|
|
};
|