mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-07-15 21:19:16 +00:00
14 lines
255 B
C++
14 lines
255 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include <helpers/ESP32Board.h>
|
|
|
|
class ThinkNodeM9Board : public ESP32Board {
|
|
|
|
public:
|
|
void begin();
|
|
void powerOff() override;
|
|
const char* getManufacturerName() const override;
|
|
uint32_t getIRQGpio() override;
|
|
};
|