From 19fd8d3c463b39726c376ea004cdf2cb2b6fbde9 Mon Sep 17 00:00:00 2001 From: Bryant Kelley Date: Tue, 9 Dec 2025 19:54:39 -0800 Subject: [PATCH] Update README to link to new meshcore-dev/MeshCore repo --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c3c51d6..a565676 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # MeshCore.js -A Javascript library for interacting with a [MeshCore](https://github.com/ripplebiz/MeshCore) device running the [Companion Radio Firmware](https://github.com/ripplebiz/MeshCore/blob/main/examples/companion_radio/main.cpp). +A Javascript library for interacting with a [MeshCore](https://github.com/meshcore-dev/MeshCore) device running the [Companion Radio Firmware](https://github.com/meshcore-dev/MeshCore/blob/main/examples/companion_radio/main.cpp). This library can be used in a Web Browser to connect to MeshCore Companion devices over BLE or USB Serial. @@ -9,11 +9,11 @@ It can also be used in NodeJS to connect to MeshCore Companion devices over TCP/ ## Supported Connection Methods - Web Browser - - BLE: [WebBleConnection()](./src/connection/web_ble_connection.js) - - USB/Serial: [WebSerialConnection()](./src/connection/web_serial_connection.js) + - BLE: [WebBleConnection()](./src/connection/web_ble_connection.js) + - USB/Serial: [WebSerialConnection()](./src/connection/web_serial_connection.js) - NodeJS - - TCP/WiFi: [TCPConnection("host", "port")](./src/connection/tcp_connection.js) - - USB/Serial: [NodeJSSerialConnection("/dev/ttyUSB0")](./src/connection/nodejs_serial_connection.js) + - TCP/WiFi: [TCPConnection("host", "port")](./src/connection/tcp_connection.js) + - USB/Serial: [NodeJSSerialConnection("/dev/ttyUSB0")](./src/connection/nodejs_serial_connection.js) ## Install