diff --git a/examples/command_bot.js b/examples/command_bot.js index e2790d0..a6fdecc 100644 --- a/examples/command_bot.js +++ b/examples/command_bot.js @@ -2,7 +2,7 @@ import Constants from "../src/constants.js"; import TCPConnection from "../src/connection/tcp_connection.js"; import NodeJSSerialConnection from "../src/connection/nodejs_serial_connection.js"; -// create tcp connection +// create connection // const connection = new TCPConnection("10.1.0.226", 5000); const connection = new NodeJSSerialConnection("/dev/cu.usbmodem14401"); diff --git a/examples/get_contacts.js b/examples/get_contacts.js index 64975ae..6342c76 100644 --- a/examples/get_contacts.js +++ b/examples/get_contacts.js @@ -1,7 +1,7 @@ import TCPConnection from "../src/connection/tcp_connection.js"; import NodeJSSerialConnection from "../src/connection/nodejs_serial_connection.js"; -// create serial connection +// create connection // const connection = new TCPConnection("10.1.0.226", 5000); const connection = new NodeJSSerialConnection("/dev/cu.usbmodem14401"); diff --git a/examples/get_repeater_status.js b/examples/get_repeater_status.js index 5ba0c1d..bd15243 100644 --- a/examples/get_repeater_status.js +++ b/examples/get_repeater_status.js @@ -1,7 +1,7 @@ import TCPConnection from "../src/connection/tcp_connection.js"; import NodeJSSerialConnection from "../src/connection/nodejs_serial_connection.js"; -// create serial connection +// create connection // const connection = new TCPConnection("10.1.0.226", 5000); const connection = new NodeJSSerialConnection("/dev/cu.usbmodem14401"); diff --git a/examples/send_contact_message.js b/examples/send_contact_message.js index a8bce16..9306b4d 100644 --- a/examples/send_contact_message.js +++ b/examples/send_contact_message.js @@ -1,7 +1,7 @@ import TCPConnection from "../src/connection/tcp_connection.js"; import NodeJSSerialConnection from "../src/connection/nodejs_serial_connection.js"; -// create serial connection +// create connection // const connection = new TCPConnection("10.1.0.226", 5000); const connection = new NodeJSSerialConnection("/dev/cu.usbmodem14401");