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.
15 lines
247 B
15 lines
247 B
#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";
|
|
}
|
|
};
|
|
|