Files
mixly3/common/modules/mixly-modules/common/arduino-shell.js
2024-07-19 10:16:00 +08:00

20 lines
325 B
JavaScript

goog.loadJs('common', () => {
goog.provide('Mixly.ArduShell');
class ArduShell {
#arduinoCLI_ = null;
constructor(arduinoCLI) {
this.#arduinoCLI_ = arduinoCLI;
}
async upload(name, params) {}
async compile(name, params) {}
async checkBoardVersion() {}
}
Mixly.ArduShell = ArduShell;
});