From 0d5f79c3f93724c7bb9d2a7a091bd7aeddcc6d93 Mon Sep 17 00:00:00 2001 From: paulober <44974737+paulober@users.noreply.github.com> Date: Tue, 10 Sep 2024 16:27:01 +0100 Subject: [PATCH] v1.0.15 Signed-off-by: paulober <44974737+paulober@users.noreply.github.com> --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2e27649..265f58e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Pico MPY Com -This is a simple NPM package for communicating with a Raspberry Pi Pico (2) boards running MicroPython. +This is a simple NPM package for communicating with a Raspberry Pi Pico boards running MicroPython. It utilizes serial over USB to communicate with the board. > Note: It's possible to use this package with other boards running MicroPython, but it's not guaranteed to work. In order to do so, you need your own port detection as the built-in one is specific to Raspberry Pi Pico MicroPython firmware (CDC) | Vendor ID = `0x2E8A` and Product ID `0x0005`. @@ -60,7 +60,7 @@ if (result.type === OperationResultType.commandResponse) { await serialCom.closeSerialPort(); ``` -> Note: The port detcted are filter by the `vendorId` and `productId` of the Raspberry Pi Pico board with MicroPython (CDC) firmware. +> Note: The ports detected are filtered by `vendorId` and `productId` of the Raspberry Pi Pico board with MicroPython (CDC) firmware. ## Docs (TODO) diff --git a/package.json b/package.json index 118afcd..4010580 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@paulober/pico-mpy-com", - "version": "1.0.14", + "version": "1.0.15", "author": "paulober", "publisher": "raspberry-pi", "description": "A nodejs library for communicating with USB devices running the MicroPython firmware.",