Fix manufacturer name on Seeed Xiao S3 WIO

This commit is contained in:
David Hall
2025-11-03 21:00:43 +00:00
parent 5b4544b9fe
commit 5c80334dbd
3 changed files with 17 additions and 2 deletions

View File

@@ -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";
}
};