mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-30 21:25:46 +00:00
16 lines
247 B
C++
16 lines
247 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include <helpers/ESP32Board.h>
|
|
|
|
class UnitC6LBoard : public ESP32Board {
|
|
public:
|
|
void begin() {
|
|
ESP32Board::begin();
|
|
}
|
|
|
|
const char* getManufacturerName() const override {
|
|
return "Unit C6L";
|
|
}
|
|
};
|