initial port of M5Stack Unit C6L, update pioarduino to newer bugfix release

This commit is contained in:
Rastislav Vysoky
2026-02-02 22:58:55 +01:00
parent 06a83c0453
commit 84e68cf4cb
5 changed files with 192 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
#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";
}
};