mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-29 19:30:00 +00:00
18 lines
394 B
C++
18 lines
394 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include <helpers/RefCountedDigitalPin.h>
|
|
#include <helpers/ESP32Board.h>
|
|
#include <driver/rtc_io.h>
|
|
|
|
class ThinknodeM2Board : public ESP32Board {
|
|
|
|
public:
|
|
|
|
void begin();
|
|
void enterDeepSleep(uint32_t secs, int pin_wake_btn = -1);
|
|
void powerOff() override;
|
|
uint16_t getBattMilliVolts() override;
|
|
const char* getManufacturerName() const override ;
|
|
|
|
}; |