mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
979 B
44 lines
979 B
#pragma once
|
|
|
|
#include <Wire.h>
|
|
#include <Arduino.h>
|
|
#include "helpers/ESP32Board.h"
|
|
|
|
#define PIN_VBAT_READ 4
|
|
#define BATTERY_SAMPLES 8
|
|
#define ADC_MULTIPLIER (2.0f * 3.3f * 1000)
|
|
|
|
class TDeckBoard : public ESP32Board {
|
|
public:
|
|
void begin();
|
|
|
|
#ifdef P_LORA_TX_LED
|
|
void onBeforeTransmit() override{
|
|
digitalWrite(P_LORA_TX_LED, LOW); // turn TX LED on - invert pin for SX1276
|
|
}
|
|
|
|
void onAfterTransmit() override{
|
|
digitalWrite(P_LORA_TX_LED, HIGH); // turn TX LED off - invert pin for SX1276
|
|
}
|
|
#endif
|
|
|
|
uint16_t getBattMilliVolts() {
|
|
#if defined(PIN_VBAT_READ) && defined(ADC_MULTIPLIER)
|
|
analogReadResolution(12);
|
|
|
|
uint32_t raw = 0;
|
|
for (int i = 0; i < BATTERY_SAMPLES; i++) {
|
|
raw += analogRead(PIN_VBAT_READ);
|
|
}
|
|
|
|
raw = raw / BATTERY_SAMPLES;
|
|
return (ADC_MULTIPLIER * raw) / 4096;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
const char* getManufacturerName() const{
|
|
return "LilyGo T-Deck";
|
|
}
|
|
};
|