MeshCore/variants/thinknode_m1/ThinkNodeM1Board.cpp

37 lines
843 B
C++
Raw Normal View History

2025-09-03 20:17:55 +02:00
#include <Arduino.h>
2025-04-29 17:32:08 +02:00
#include <Wire.h>
#include "ThinkNodeM1Board.h"
2025-04-29 17:32:08 +02:00
#ifdef THINKNODE_M1
2025-04-29 17:32:08 +02:00
void ThinkNodeM1Board::begin() {
NRF52Board::begin();
2025-04-29 17:32:08 +02:00
Wire.begin();
2025-09-03 20:17:55 +02:00
#ifdef P_LORA_TX_LED
pinMode(P_LORA_TX_LED, OUTPUT);
digitalWrite(P_LORA_TX_LED, LOW);
#endif
2025-06-09 17:35:00 -07:00
2025-04-29 17:32:08 +02:00
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
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