UnitC6LBoard.h 247 B

123456789101112131415
  1. #pragma once
  2. #include <Arduino.h>
  3. #include <helpers/ESP32Board.h>
  4. class UnitC6LBoard : public ESP32Board {
  5. public:
  6. void begin() {
  7. ESP32Board::begin();
  8. }
  9. const char* getManufacturerName() const override {
  10. return "Unit C6L";
  11. }
  12. };