Fix manufacturer name on Seeed Xiao S3 WIO

Цей коміт міститься в:
David Hall
2025-11-03 21:00:43 +00:00
джерело 5b4544b9fe
коміт 5c80334dbd
3 змінених файлів з 17 додано та 2 видалено
+13
Переглянути файл
@@ -0,0 +1,13 @@
#pragma once
#include <Arduino.h>
#include <helpers/ESP32Board.h>
class XiaoS3WIOBoard : public ESP32Board {
public:
XiaoS3WIOBoard() { }
const char* getManufacturerName() const override {
return "Xiao S3 WIO";
}
};