mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-30 21:25:46 +00:00
68 lines
1.6 KiB
C++
68 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <MeshCore.h>
|
|
#include <Arduino.h>
|
|
|
|
#define ADC_FACTOR ((1000.0*ADC_MULTIPLIER*AREF_VOLTAGE)/ADC_MAX)
|
|
|
|
class ThinknodeM3Board : public mesh::MainBoard {
|
|
protected:
|
|
uint8_t startup_reason;
|
|
uint8_t btn_prev_state;
|
|
|
|
public:
|
|
void begin();
|
|
|
|
uint16_t getBattMilliVolts() override {
|
|
int adcvalue = 0;
|
|
|
|
analogReference(AR_INTERNAL_2_4);
|
|
analogReadResolution(ADC_RESOLUTION);
|
|
delay(10);
|
|
|
|
// ADC range is 0..2400mV 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 * ADC_FACTOR);
|
|
}
|
|
|
|
uint8_t getStartupReason() const override { return startup_reason; }
|
|
|
|
#if defined(P_LORA_TX_LED)
|
|
#if !defined(P_LORA_TX_LED_ON)
|
|
#define P_LORA_TX_LED_ON HIGH
|
|
#endif
|
|
void onBeforeTransmit() override {
|
|
digitalWrite(P_LORA_TX_LED, P_LORA_TX_LED_ON); // turn TX LED on
|
|
}
|
|
void onAfterTransmit() override {
|
|
digitalWrite(P_LORA_TX_LED, !P_LORA_TX_LED_ON); // turn TX LED off
|
|
}
|
|
#endif
|
|
|
|
const char* getManufacturerName() const override {
|
|
return "Elecrow ThinkNode M3";
|
|
}
|
|
|
|
int buttonStateChanged() {
|
|
#ifdef BUTTON_PIN
|
|
uint8_t v = digitalRead(BUTTON_PIN);
|
|
if (v != btn_prev_state) {
|
|
btn_prev_state = v;
|
|
return (v == LOW) ? 1 : -1;
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
void powerOff() override {
|
|
sd_power_system_off();
|
|
}
|
|
|
|
void reboot() override {
|
|
NVIC_SystemReset();
|
|
}
|
|
|
|
// bool startOTAUpdate(const char* id, char reply[]) override;
|
|
}; |