We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f67f33 + d633f8c commit ab16699Copy full SHA for ab16699
1 file changed
meshtastic/supported_device.py
@@ -207,6 +207,18 @@ def __init__(
207
usb_product_id_in_hex="55d4",
208
)
209
210
+seeed_xiao_s3 = SupportedDevice(
211
+ name = "Seeed Xiao ESP32-S3",
212
+ version = "",
213
+ for_firmware="seeed-xiao-esp32s3",
214
+ baseport_on_linux="ttyACM",
215
+ baseport_on_mac="cu.usbmodem",
216
+ usb_vendor_id_in_hex="2886",
217
+ usb_product_id_in_hex="0059",
218
+)
219
+
220
221
222
supported_devices = [
223
tbeam_v0_7,
224
tbeam_v1_1,
@@ -226,4 +238,5 @@ def __init__(
226
238
rak4631_19003,
227
239
rak11200,
228
240
nano_g1,
241
+ seeed_xiao_s3,
229
242
]
0 commit comments