14 lines
229 B
C
14 lines
229 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Arduino.h>
|
||
|
|
#include <helpers/ESP32Board.h>
|
||
|
|
|
||
|
|
class XiaoS3WIOBoard : public ESP32Board {
|
||
|
|
public:
|
||
|
|
XiaoS3WIOBoard() { }
|
||
|
|
|
||
|
|
const char* getManufacturerName() const override {
|
||
|
|
return "Xiao S3 WIO";
|
||
|
|
}
|
||
|
|
};
|