Update: WebSocket下MicroPython板卡支持管理板卡文件

This commit is contained in:
王立帮
2024-12-03 19:00:17 +08:00
parent 6dff4d2a98
commit c3212fecb1
6 changed files with 392 additions and 5 deletions

View File

@@ -6,6 +6,7 @@ goog.require('Mixly.WebSocket');
goog.require('Mixly.WebSocket.Serial');
goog.require('Mixly.WebSocket.ArduShell');
goog.require('Mixly.WebSocket.BU');
goog.require('Mixly.WebSocket.Ampy');
goog.provide('Mixly.WebSocket.Socket');
const {
@@ -18,7 +19,8 @@ const {
Socket,
Serial,
ArduShell,
BU
BU,
Ampy
} = WebSocket;
@@ -76,6 +78,7 @@ Socket.init = function () {
Serial.init(mixlySocket);
ArduShell.init(mixlySocket);
BU.init(mixlySocket);
Ampy.init(mixlySocket);
}
});