From b6f5618882a1e0712a11131c7405d1fcdf105790 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Tue, 8 Apr 2025 13:49:42 +1200 Subject: [PATCH] add supported connection methods to readme --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index c681ac5..4bb7923 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,15 @@ This library can be used in a Web Browser to connect to MeshCore Companion devic It can also be used in NodeJS to connect to MeshCore Companion devices over TCP/WiFi or USB Serial. +## Supported Connection Methods + +- Web Browser + - BLE: [BleConnection](./src/connection/ble_connection.js) + - USB/Serial: [WebSerialConnection](./src/connection/web_serial_connection.js) +- NodeJS + - TCP/WiFi: [TCPConnection](./src/connection/tcp_connection.js) + - USB/Serial: [NodeJSSerialConnection](./src/connection/nodejs_serial_connection.js) + ## Install ```