2025-09-03 20:17:55 +02:00
|
|
|
#include <Arduino.h>
|
2025-04-29 17:32:08 +02:00
|
|
|
#include <Wire.h>
|
|
|
|
|
|
2025-12-09 19:56:00 +01:00
|
|
|
#include "ThinkNodeM1Board.h"
|
2025-04-29 17:32:08 +02:00
|
|
|
|
2025-12-09 19:56:00 +01:00
|
|
|
#ifdef THINKNODE_M1
|
2025-04-29 17:32:08 +02:00
|
|
|
|
|
|
|
|
void ThinkNodeM1Board::begin() {
|
2025-12-09 15:00:08 +01:00
|
|
|
NRF52Board::begin();
|
2025-04-29 17:32:08 +02:00
|
|
|
|
|
|
|
|
Wire.begin();
|
|
|
|
|
|
|
|
|
|
pinMode(SX126X_POWER_EN, OUTPUT);
|
|
|
|
|
digitalWrite(SX126X_POWER_EN, HIGH);
|
2025-09-03 20:17:55 +02:00
|
|
|
delay(10); // give sx1262 some time to power up
|
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
|
|
|
|
|
|
|
|
// Start LEDs with defaults; prefs are applied after loadPrefs()
|
2026-04-10 18:44:48 +00:00
|
|
|
// LED_GREEN is active-LOW (LED_STATE_ON=LOW), P_LORA_TX_LED is active-HIGH
|
|
|
|
|
static LEDManager _ledManager(LED_GREEN, P_LORA_TX_LED, false, true);
|
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
|
|
|
ledManager = &_ledManager;
|
|
|
|
|
ledManager->begin(LED_STATUS_BOOT_30S, LED_ACTIVITY_BOTH);
|
2025-04-29 17:32:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint16_t ThinkNodeM1Board::getBattMilliVolts() {
|
|
|
|
|
int adcvalue = 0;
|
|
|
|
|
|
|
|
|
|
analogReference(AR_INTERNAL_3_0);
|
|
|
|
|
analogReadResolution(12);
|
|
|
|
|
delay(10);
|
|
|
|
|
|
|
|
|
|
// ADC range is 0..3000mV and resolution is 12-bit (0..4095)
|
|
|
|
|
adcvalue = analogRead(PIN_VBAT_READ);
|
|
|
|
|
// Convert the raw value to compensated mv, taking the resistor-
|
|
|
|
|
// divider into account (providing the actual LIPO voltage)
|
|
|
|
|
return (uint16_t)((float)adcvalue * REAL_VBAT_MV_PER_LSB);
|
|
|
|
|
}
|
|
|
|
|
#endif
|