No Towers? No Problem: Join Our Satellite IoT Webinar on September 29th

Blues Developers
What’s New
Resources
Blog
Technical articles for developers
Connected Product Guidebook
In-depth guides for connected product development
Developer Certification
Get certified on wireless connectivity with Blues
Newsletter
The monthly Blues developer newsletter
Terminal
Connect to a Notecard in your browser
Webinars
Listing of Blues technical webinars
Blues.comNotehub.io
Shop
Docs
Button IconHelp
Support DocsNotehub StatusSecurity AdvisoriesVisit our Forum
Button IconSign In
Docs Home
What’s New
Resources
Blog
Technical articles for developers
Connected Product Guidebook
In-depth guides for connected product development
Developer Certification
Get certified on wireless connectivity with Blues
Newsletter
The monthly Blues developer newsletter
Terminal
Connect to a Notecard in your browser
Webinars
Listing of Blues technical webinars
Blues.comNotehub.io
Shop
Docs
Guides & Tutorials
Host Wiring Guide
Writing Host Firmware
Routing Data to Cloud
Best Practices for Production-Ready Projects
Fleet Admin Guide
Using the Notehub API
Notecard Guides
Asset Tracking with GPS
Attention Pin Guide
Connecting to a WiFi Access Point
Debugging with the FTDI Debug Cable
Encrypting and Decrypting Data with the Notecard
Feather MCU Low Power Management
Minimizing Latency
Notecard Communication Without a Library
Remote Command and Control
Scaling Your Notecard Firmware Design
Sending and Receiving Large Binary Objects
Serial-Over-I2C Protocol
Storing Device State with DB Notefiles
Understanding Environment Variables
Using a Serial Terminal with Notecard
Choosing a Terminal AppBaseline Serial Port SettingsSetting Up CoolTermSetting Up Tera TermUsing Other Terminal AppsCapturing a Log
Using External SIM Cards
Using JSONata to Transform JSON in Notehub
homechevron_rightDocschevron_rightGuides & Tutorialschevron_rightNotecard Guideschevron_rightUsing a Serial Terminal with Notecard

Using a Serial Terminal with Notecard

Every Notecard interface speaks the same protocol: newline-delimited JSON requests in, newline-delimited JSON responses out. That means any serial terminal application can act as a development and debugging tool for Notecard with no firmware, host MCU, or library required. You type a Notecard API request, press Enter, and read the response.

There are three ways to talk to a Notecard from your computer:

  • The In-Browser Terminal, which needs no installation but requires a browser that supports the Web Serial API.
  • The Notecard CLI, a command-line utility.
  • A serial terminal application, which is what this guide covers.
tip

If you're just getting started, try the In-Browser Terminal first as it requires no setup at all. Try a serial terminal app when you need to capture a long-running log to a file, when your Notecard is connected over AUX RX/TX rather than USB, or when you're using a browser without Web Serial support (e.g. Safari).

Table of Contents

  1. Choosing a Terminal App
  2. Baseline Serial Port Settings
  3. Setting Up CoolTerm
  4. Setting Up Tera Term
  5. Using Other Terminal Apps
  6. Capturing a Log

Choosing a Terminal App

Any serial terminal application that can send a line of text and display the response will work with Notecard. The table below lists the applications most commonly used by Blues customers, and the platforms each one supports.

ApplicationmacOSWindowsLinux
CoolTerm✅✅✅
Tera Term—✅—
PuTTY—✅✅
screen✅—✅
minicom——✅
GTKTerm——✅
Arduino Serial Monitor✅✅✅

This guide walks through CoolTerm and Tera Term in detail, and provides the essential settings for the rest. If you have no existing preference, CoolTerm is a good default: it runs on all three platforms, so the same instructions apply to your whole team.

note

No driver installation is required to communicate with a Notecard over USB. The USB interface appears to your computer as a standard USB 2.0 Full Speed CDC device, which Linux, Windows, and macOS all support natively.

Baseline Serial Port Settings

Before configuring your terminal application, you need to know two things: which serial port your Notecard is attached to, and which settings that port expects.

Identifying the Serial Port

Connect your Notecard to your computer, then locate the port it enumerated as.

  • macOS — run ls /dev/tty.usbmodem* in a terminal. Notecard typically enumerates as something like /dev/tty.usbmodem14201.
  • Linux — run ls /dev/ttyACM*. Notecard typically enumerates as /dev/ttyACM0. If you get a permissions error when connecting, add your user to the dialout group with sudo usermod -a -G dialout $USER, then log out and back in.
  • Windows — open Device Manager and expand Ports (COM & LPT). Look for a USB Serial Device entry and note its COM number, for example COM3.
tip

If more than one port appears and it isn't obvious which is the Notecard, list the ports with the Notecard unplugged, plug it in, and list them again. The port that appears the second time is the one you want.

Port Configuration

The settings depend on which Notecard interface you've connected to.

ConnectionBaud RateData BitsParityStop BitsFlow Control
USBAny (9600 is a safe default)8None1None
N_RX/N_TX96008None1None
AUX RX/AUX TX115200 (default)8None1None
note

Because the USB interface is a CDC device, the baud rate you select is ignored — any value will connect successfully. The N_RX/N_TX interface is fixed at 9600 and will produce garbled output at any other rate.

115200 is the AUX default, not a fixed rate. A card.aux.serial request can change it with the rate argument, and AUX GPS mode ("mode":"gps") defaults to 9600 instead. If AUX output is garbled, confirm the rate the Notecard is actually using before assuming 115200.

Also, the AUX RX/AUX TX interface is only enabled when AUX_EN_P (pin 56) is pulled up to VIO. On a Notecarrier, bridge the AUXEN header to <BAT. If you connect to the AUX port without doing this, you'll see no output at all. See Working with the Notecard AUX Pins for details.

Line Endings

Notecard expects each request to be terminated with a newline, and emits responses the same way. Most terminal applications do not send a line ending by default, so you will need to enable one — the exact option name varies, but you're looking for a setting that transmits CR+LF (hex 0D 0A) when you press Enter.

Enabling local echo is also recommended, so you can see the request you typed alongside the response Notecard returns.

Setting Up CoolTerm

CoolTerm is a free serial terminal available for macOS, Windows, and Linux. Download and install it, then complete the following steps.

Configure the Serial Port

  1. Click Options to open the connection settings, and select Serial Port in the left-hand list.

  2. Set Port to the port your Notecard is attached to, as identified in Baseline Serial Port Settings.

  3. Set Baudrate to the value for your connection: 9600 for USB or N_RX/N_TX, or 115200 for AUX RX/AUX TX — unless the AUX rate has been changed, as described in Baseline Serial Port Settings.

  4. Set Data Bits to 8, Parity to none, and Stop Bits to 1.

  5. Leave every Flow Control checkbox unchecked.

CoolTerm Serial Port options showing the port, baudrate, data bits, parity, and stop bits configured for a Notecard

Configure the Terminal

  1. Still in Options, select Terminal in the left-hand list.

  2. Set Terminal Mode to Line Mode. This gives you an edit box at the bottom of the window where you can compose a full request before sending it, rather than transmitting each keystroke as you type.

  3. Set Enter Key Emulation to CR+LF, so that pressing Enter terminates your request the way Notecard expects.

  4. Check Local Echo so your requests appear in the terminal window alongside Notecard's responses.

  5. Click OK to save the settings.

CoolTerm Terminal options showing Line Mode, CR+LF enter key emulation, and Local Echo enabled

Send a Request

Click Connect in the toolbar. Once connected, type a request into the edit box at the bottom of the terminal window and press Enter.

>
{"req":"card.version"}
{
 "version": "notecard-11.3.1.17696",
 "device": "dev:351077454518609",
 "name": "Blues Wireless Notecard",
 "sku": "NOTE-WBGLW",
 "ordering_code": "HB0YT1N0AEAU",
 "board": "5.13",
 "wifi": true,
 "cell": true,
 "gps": true,
 "body": {
  "org": "Blues Wireless",
  "product": "Notecard",
  "target": "u5",
  "version": "notecard-u5-11.3.1",
  "ver_major": 11,
  "ver_minor": 3,
  "ver_patch": 1,
  "ver_build": 17696,
  "built": "Jun 11 2026 16:25:45"
 }
}

CoolTerm connected to a Notecard, showing a card.version request and its JSON response

A response means you're connected and can issue any Notecard API request you like.

Setting Up Tera Term

Tera Term is a free terminal emulator for Windows. Download and install it, then complete the following steps.

Open the Connection

  1. Select File > New connection.

  2. Choose the Serial radio button, and select the COM port your Notecard is attached to from the Port dropdown.

  3. Click OK.

Tera Term New connection dialog with the Serial option selected and a COM port chosen

Configure the Serial Port

  1. Select Setup > Serial port.

  2. Apply the following settings:

    SettingValue
    Speed9600 for USB or N_RX/N_TX, 115200 for AUX RX/AUX TX (see Baseline Serial Port Settings if the AUX rate has been changed)
    Data8 bit
    Paritynone
    Stop bits1 bit
    Flow controlnone
  3. Click Ok to apply.

Tera Term Serial port setup dialog showing the speed, data, parity, stop bits, and flow control settings

Configure the Terminal

  1. Select Setup > Terminal.

  2. Set New-line Receive to CR+LF and New-line Transmit to CR+LF.

  3. Check Local echo.

  4. Click OK.

Tera Term Terminal setup dialog showing CR+LF new-line receive and transmit with Local echo checked

Send a Request

Type a Notecard API request directly into the terminal window and press Enter.

>
{"req":"card.version"}
{
 "version": "notecard-11.3.1.17696",
 "device": "dev:351077454518609",
 "name": "Blues Wireless Notecard",
 "sku": "NOTE-WBGLW",
 "ordering_code": "HB0YT1N0AEAU",
 "board": "5.13",
 "wifi": true,
 "cell": true,
 "gps": true,
 "body": {
  "org": "Blues Wireless",
  "product": "Notecard",
  "target": "u5",
  "version": "notecard-u5-11.3.1",
  "ver_major": 11,
  "ver_minor": 3,
  "ver_patch": 1,
  "ver_build": 17696,
  "built": "Jun 11 2026 16:25:45"
 }
}

Tera Term connected to a Notecard, showing a card.version request and its JSON response

tip

Tera Term transmits each keystroke as you type it, so you cannot edit a request once you've started typing. If you prefer to compose requests before sending them, paste them in from a text editor, or use CoolTerm in Line Mode instead.

Using Other Terminal Apps

CoolTerm and Tera Term are the applications Blues documents most thoroughly, but any serial terminal will work. Apply the settings from Baseline Serial Port Settings to the application of your choice.

PuTTY (Windows, Linux)

In the PuTTY configuration window, select the Serial connection type, enter your port in Serial line (for example COM3 or /dev/ttyACM0), and enter your baud rate in Speed. Then open the Connection > Serial category and confirm 8 data bits, 1 stop bit, None parity, and None flow control.

Under Terminal, enable Implicit CR in every LF and Local echo so that responses render on separate lines and your typed requests are visible.

screen (macOS, Linux)

screen is preinstalled on macOS and most Linux distributions, and connects with a single command:

screen /dev/tty.usbmodem14201 9600

Substitute your own port and baud rate. To exit, press Ctrl-A followed by K, then confirm with y.

note

screen does not echo what you type and offers no line editing, so a typo means retyping the request from the beginning. It's convenient for a quick card.version check, but CoolTerm or minicom is a better choice for extended debugging sessions.

minicom (Linux)

Install minicom from your distribution's package manager, then launch it with the port and baud rate:

minicom --device /dev/ttyACM0 --baudrate 9600

Press Ctrl-A then Z for the help menu, and Ctrl-A then E to turn on local echo. To exit, press Ctrl-A then X.

Arduino Serial Monitor (macOS, Windows, Linux)

If you already have the Arduino IDE installed, its Serial Monitor works well with Notecard. Select your port from Tools > Port, open Tools > Serial Monitor, then set the line ending dropdown to Both NL & CR and the baud rate dropdown to match your connection.

Capturing a Log

When you're debugging a connectivity problem — or working with Blues support or the community forum — it's helpful to capture the terminal session to a file rather than copying text out of the scrollback. This is especially true when using trace mode, which emits a continuous stream of messages that can quickly exceed your terminal's buffer.

Capturing in CoolTerm

  1. Select Connection > File Capture > Start.

  2. Give the file a name and click Save.

  3. Reproduce the behavior you want to capture.

  4. Select Connection > File Capture > Stop when you're finished.

Capturing in Tera Term

  1. Select File > Log.

  2. Check Append and Plain text.

  3. Give the file a name and click Save.

  4. Reproduce the behavior you want to capture. Tera Term writes to the log file continuously until you select File > Stop logging.

Capturing Trace Output

To capture the most useful debugging information, start your log file first, then enable trace mode:

{"req":"card.trace","mode":"on"}

Perform the actions you want to debug — for example a hub.sync request — then disable trace mode and stop the capture:

{"req":"card.trace","mode":"off"}
warning

Trace output is emitted only over the USB serial port or Notecard's AUX RX/AUX TX serial port. It is not sent over I2C, and it is not sent over the primary N_RX/N_TX serial pins that a host normally uses. See Using Notecard Trace Mode for more.

Additional Resources

  • Notecard API
  • Notecard Interfaces
  • Using Notecard Trace Mode
  • Debugging a Notecard with the FTDI Debug Cable
  • Notecard Error and Status Codes
Can we improve this page? Send us feedback
© 2026 Blues Inc.
© 2026 Blues Inc.
AboutDocsAPI ReferenceTermsPrivacy