Added Xiao S3 variant.

This is for Xiao S3 and a normal Wio SX1262 for Xiao shield.
This commit is contained in:
Kevin Le
2026-04-24 11:56:06 +07:00
parent 5372388e6e
commit 277331381e
4 changed files with 253 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include <Arduino.h>
#include <helpers/ESP32Board.h>
class XiaoS3Board : public ESP32Board {
public:
XiaoS3Board() { }
const char* getManufacturerName() const override {
return "Xiao S3";
}
};