2025-03-06 21:39:17 +01:00
|
|
|
#include <Arduino.h>
|
|
|
|
|
#include <Wire.h>
|
|
|
|
|
|
2025-12-09 19:56:00 +01:00
|
|
|
#include "TechoBoard.h"
|
2025-03-06 21:39:17 +01:00
|
|
|
|
2025-12-09 19:56:00 +01:00
|
|
|
#ifdef LILYGO_TECHO
|
2025-03-06 21:39:17 +01:00
|
|
|
|
|
|
|
|
void TechoBoard::begin() {
|
2025-12-09 15:00:08 +01:00
|
|
|
NRF52Board::begin();
|
2025-03-06 21:39:17 +01:00
|
|
|
|
|
|
|
|
Wire.begin();
|
|
|
|
|
|
|
|
|
|
pinMode(SX126X_POWER_EN, OUTPUT);
|
|
|
|
|
digitalWrite(SX126X_POWER_EN, HIGH);
|
|
|
|
|
delay(10); // give sx1262 some time to power up
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-23 15:57:33 +01:00
|
|
|
uint16_t TechoBoard::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);
|
|
|
|
|
}
|
2025-03-24 13:11:08 +11:00
|
|
|
#endif
|