mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-07-26 14:58:12 +00:00
11 lines
191 B
C++
11 lines
191 B
C++
#pragma once
|
|
|
|
#include <helpers/ESP32Board.h>
|
|
|
|
class TETHEliteBoard : public ESP32Board {
|
|
public:
|
|
const char* getManufacturerName() const override {
|
|
return "LilyGO T-ETH Elite";
|
|
}
|
|
};
|