micropython-ctl icon indicating copy to clipboard operation
micropython-ctl copied to clipboard

TypeScript library for talking to MicroPython devices from websites/webapps, Node.js and Electron apps

Results 8 micropython-ctl issues
Sort by recently updated
recently updated
newest added

Using `mctl run` or `MicroPythonDevice.runScript` I cannot seem to send a script larger than 12 lines or so. Any idea what might be wrong?

The serialport baudRate is '115200' in main.ts. But my board firmware use '1000000'. Can micropython-ctl support custom baudRate? ```ts // main.ts public async connectSerial(path: string) { // ... this.state.port =...

Fixes binding issues in Electron (VSCode & Atom). https://github.com/serialport/node-serialport/releases/tag/%40serialport%2Fbindings%4010.0.0

Would it be possible to add telnet support? Currently I can run`telnet 192.168.0.212` to access my device, but it would be amazing if it also worked with mctl.

Is it possible to have multiple connections open? I'm working on a VSCode extension where I start the terminal like this ```javascript this.term = vscode.window.createTerminal(device.id, "npm", ["run", "mctl", "--", "repl",...

Hi @metachris I'm loving this project 😍. Is it still in active development?

I'm trying to use this library in a electron app, but when I try to connect over the serial port, I get the following error: `Uncaught (in promise) Error: Illegal...

First of all, this tool is exactly what I need to do some long-term work with a pycom setup on a Raspberry Pi (where the IDEs are frankly useless due...