Bluetooth терминал для windows

  • By NMinion
  • Free
  • User Rating

Used Bluetooth Serial Terminal for Windows 10 for Windows? Share your experience and help other users.


Key Details of Bluetooth Serial Terminal for Windows 10

  • You can use this App to communicate with Serial Bluetooth devices like the RN-42 that are used for arduino projects and other custom projects.
  • Last updated on
  • There have been 6 updates
  • Virus scan status:

    Clean (it’s extremely likely that this software program is clean)

The Download Now link directs you to the Windows Store, where you can continue the download process. You must have an active Microsoft account to download the application. This download may not be available in some countries.


Bluetooth Serial Terminal for Windows 10 0/2

Developer’s Description

By NMinion

You can use this App to communicate with Serial Bluetooth devices like the RN-42 that are used for arduino projects and other custom projects.
You can use this App to communicate with Serial Bluetooth devices like the RN-42 that are used for arduino projects and other custom projects. Make sure to pair the device first in PC Settings. If you have any feedback or questions email navvsuppport@outlook.com.


Explore More

  • Minecraft Offline Files Installer

    Free

  • Football Manager 2006

    Free

  • Assetto Corsa Content Manager

    Free

  • Game Speed Changer

    Trial version

  • RoFPS — (FPS Unlocker)

    Trial version

  • Escape Simulator: Mayan DLC

    Paid

  • Avatar: Frontiers of Pandora – Secrets of The Spires

    Paid

  • Svarog’s Dream: Return of the Old Gods

    Paid


Web Bluetooth Terminal

https://loginov-rocks.github.io/Web-Bluetooth-Terminal — try
it out, see how it works on YouTube, read tutorial on
Medium
(English) or on Habr (Russian).

Web Bluetooth Terminal is a website that can connect with the remote devices which support Bluetooth Low Energy
(also called Bluetooth Smart) and exchange data bidirectionally. It can be installed on your homescreen as an
application and work offline.

Killer feature: the application establishes serial communication over BLE that is not provided by the
specification, but needed if you want to make your own BLE IoT devices using affordable bluetooth modules.

Teaser

The application utilises BLE service (0xFFE0) and characteristic (0xFFE1) available in low cost BLE modules based
for example on CC2541 chip, such as HM-10, JDY-08, AT-09, CC41-A and other. Also, it bypasses 20 bytes limit specific
for GATT characteristics by keeping incoming messages in a buffer and waiting for the end of line characters.

Check Bluetooth Low Energy (Smart) device and
How to use this app as a base for my own project?
sections for a quick start and to find out how to make your own project. Also, I’ve made
MeArm Controller as a showcase project.

Features

Accessible via browser — just go to the website and
you’ll get the full featured application, it is not needed to install anything.

Cross-platform — as long as the app is accessible via browser, you can use it with the desktop or with the smart
phone browser.

Installable — if you don’t want to remember the website address, you can add it to the homescreen.

Works offline after installation on your homescreen, since it is a Progressive Web Application.

And… it have auto scrolling! Enabled by default, but you can scroll the terminal to the top on more than a half of
the terminal window height to disable it. Scroll to the bottom to enable it again. Rocket science!

Requirements

Browser

One of browsers which supports Web Bluetooth API by default
(Chrome Platform Status,
Can I use):

  1. Chrome for desktop 56+
  2. Chrome for Android 56+
  3. Opera 43+
  4. Opera for Android 43+

All this browsers support other necessary features, such as ES6 classes and PWA
capabilities (Web App Manifest and
Service Workers), so I don’t pay attention to it here.

Bluetooth Low Energy (Smart) device

Different BLE devices implement their own services and characteristics to communicate with, but you can build your own
simple device: you just need a BLE module (e.g. HM-10, JDY-08, AT-09, CC41-A) and an Arduino Uno. Wire it and upload the
bridge sketch.

Pay attention to what voltage level your BLE module consumes, since it can vary from device to device! Read
specifications, you may need to connect your BLE module to the 3.3V pin and use voltage level shifter between TX and
RX pins.

Arduino Uno to BLE module wiring scheme

Open Serial Monitor in Arduino IDE, switch baudrate to 9600 and line endings to Both NL & CR. Next, launch the
Web Bluetooth Terminal and connect to your module. Now you’re
able to make a small talk between the Terminal and the Serial Monitor!

BLE module configuration

When a BLE module is waiting for connection it can be configured with AT commands. So if you have troubles trying to
make BLE module work as expected you can use following commands, but again, read specifications! Here are some commands
I use with CC41-A module:

  • AT+DEFAULT — resets the module to the defaults;
  • AT+RESET — resets the module softly;
  • AT+ROLE — gets the module working mode;
  • AT+ROLE0 — makes the module to work in slave mode, waiting for connection from other devices;
  • AT+NAME — gets the module name;
  • AT+NAMESimon — sets the module name to Simon;
  • AT+PIN — gets the module pin (password);
  • AT+PIN123456 — sets the module pin to 123456;
  • AT+UUID — gets the module service UUID;
  • AT+CHAR — gets the module characteristic UUID.

Commands can be case insensitive and may need to be terminated with CR (\r) and LF (\n).

How to use this app as a base for my own project?

You can fork this repository and implement features specific to your needs. Don’t forget that application should be
accessible via HTTPS protocol to enable Web Bluetooth API feature, so you can use
GitHub Pages switching the source to the master branch of your repository.

To use development capabilities, you’ll need Node.js, npm especially.
Install it, clone the repository and install npm dependencies:

git clone https://github.com/loginov-rocks/Web-Bluetooth-Terminal.git
cd Web-Bluetooth-Terminal
npm install

Global install

Alternatively, you can delegate repository cloning to the package itself. Just install it globally:

npm install -g web-bluetooth-terminal

Having this package installed globally, you can use the following command to clone the repository into your current
directory:

Or you can specify directory name to clone into as an argument:

web-bluetooth-terminal MyProject

This command checks out the same version as you have installed globally. So if a new version is released, you can update
package with the following command:

npm update -g web-bluetooth-terminal

Npm scripts

After installing npm dependencies, you can use some simple scripts that can be helpful:

  • npm run build copies used vendors files and generates css/style.css;
  • npm run js:vendor copies used vendors JavaScript files into the js directory;
  • npm run lint lints JavaScript files;
  • npm run styles generates css/style.css from SCSS sources placed in the scss directory;
  • npm run styles:vendor copies used vendors stylesheets into the css directory;
  • npm run watch:styles watches for changes made to the files placed in the scss directory and runs npm run styles
    command.

BluetoothTerminal.js API

Also, you can install bluetooth-terminal package or
directly download the file
containing BluetoothTerminal class written in ES6 and use it as you want. Here is a simple code snippet that can be
helpful for a quick start:

// Obtain configured instance.
let terminal = new BluetoothTerminal();

// Override `receive` method to handle incoming data as you want.
terminal.receive = function(data) {
  alert(data);
};

// Request the device for connection and get its name after successful connection.
terminal.connect().then(() => {
  alert(terminal.getDeviceName() + ' is connected!');
});

// Send something to the connected device.
terminal.send('Simon says: Hello, world!');

// Disconnect from the connected device.
terminal.disconnect();

Contribution

Please use the dev branch and feel free to contribute!

Reference

  1. Web Bluetooth Specification
  2. Web Bluetooth Samples
  3. Interact with Bluetooth devices on the Web
  4. Progressive Web Apps
  5. Service Worker Toolbox

Gists

  1. https://gist.github.com/loginov-rocks/8aeb19f207b1da53eaa553faa7aa8a51
  2. https://gist.github.com/loginov-rocks/c0709f22540c01cf532ec0d311f059e2
  3. https://gist.github.com/loginov-rocks/0e4ff696195863e99853b126aca8ecb1
  4. https://gist.github.com/loginov-rocks/ad98c6a48394d48c3252d7694ffb5e57
  5. https://gist.github.com/loginov-rocks/1156e4581ec9f68a20cc6acb1cd6e52a
  6. https://gist.github.com/loginov-rocks/26d9714acbfbcb723c79bb8e23128e3c
  7. https://gist.github.com/loginov-rocks/f918a2b11b98d20808a12a8c923e74bc
  8. https://gist.github.com/loginov-rocks/d23a840d2c38b88ed3f55f2be62bf7ba
  9. https://gist.github.com/loginov-rocks/4cf8d0d720dafcf52781748d5c975452
  10. https://gist.github.com/loginov-rocks/fa0478f085410d1f59ede2f653af0e5c
  11. https://gist.github.com/loginov-rocks/44c7a144a1548ab08426bc675854d183
  12. https://gist.github.com/loginov-rocks/e03b1dd9e038eaf4eb65413d97a34678
  13. https://gist.github.com/loginov-rocks/b39e4e5c6d0c95b404172ad04baf8b28
  14. https://gist.github.com/loginov-rocks/140ee65772f87ab775cb94cae850eb3a
  15. https://gist.github.com/loginov-rocks/b060cecbe50f09f40e2c29f6e3b7dc67
  16. https://gist.github.com/loginov-rocks/c88f7eed3bfaa8685b594a2e19813a43
  17. https://gist.github.com/loginov-rocks/58a1b7428f9a3bbc71a49ef36bea6e34
  18. https://gist.github.com/loginov-rocks/49e208008b95da9c8de985c15f383dd8
  19. https://gist.github.com/loginov-rocks/8451dcae975e746e3283c7190a75441e
  20. https://gist.github.com/loginov-rocks/f0bd2c16640c9493e19df8262afeb995

HC-05 Bluetooth Terminal app is a great application that is also installable on PC. The M.Enthoven has developed it and, the popularity of HC-05 Bluetooth Terminal software is increasing awesomely. Download HC-05 Bluetooth Terminal for PC to install on Windows 10, 8, 7 32bit/64bit, even Mac. The weight of the apps is 1.4 MB.

On the latest update of the HC-05 Bluetooth Terminal app on [lmt-post-modified-info], there are lots of changes that are properly enjoyable on the Computer, Desktop & Laptop.

Maybe you are seeking the way to free download HC-05 Bluetooth Terminal APK to install on a PC. To enjoy HC-05 Bluetooth Terminal on a big screen, you have to use an Emulator.

Here you will get three new technical tips to emulate HC-05 Bluetooth Terminal APK on your computer. Choose any one from the following three guides.

Also Read: How To Download, Install, Play Or Use Android Apps On PC, Mac

#1 Steps To Install HC-05 Bluetooth Terminal via BlueStacks On Windows & Mac

BlueStacks is a virtual Android engine to run the HC-05 Bluetooth Terminal application on a computer. It has both edition EXE for Windows and DMG for Mac.

  • Firstly, go for download to install BlueStacks on PC
  • Secondly, start the engine on the computer
  • Thirdly, register or log in on the Google Play server. Or, if you have the APK, just drag it on the BlueStacks.
  • Fourthly, start searching- “HC-05 Bluetooth Terminal”.
    Note: if not found on the play store, then download it from below.
  • Finally, click on the Install option under the official logo of the HC-05 Bluetooth Terminal app

DOWNLOAD

Bonus Tips: Most of the time, BlueStacks takes some more seconds on the first run. But don’t worry. The loading issue of HC-05 Bluetooth Terminal via BlueStacks is depending on your Internet speed and PC configuration. If you still have problems with the setup or loading process, then follow the Nox guide below.

#2 How To Use HC-05 Bluetooth Terminal APK on PC via Nox

Nox is a very lightweight app player to run HC-05 Bluetooth Terminal on Windows and Macintosh OS.

DOWNLOAD.exe/dmg

  • Get Nox EXE/DMG and install on your personal computer
  • Register or Log in with Gmail ID
  • Start play services by opening the play app from home page of Nox Emulator
  • Search for the “HC-05 Bluetooth Terminal App” and setup.

#3 Use HC-05 Bluetooth Terminal For PC Without BlueStacks & Nox

Maybe you are not interested in using the HC-05 Bluetooth Terminal on the computer with Emulators. So you should visit the official app landing page with the related apps. Then find the download option of the HC-05 Bluetooth Terminal software. If found the HC-05 Bluetooth Terminal.exe or HC-05 Bluetooth Terminal.dmg, then download the versions you want. But you have to prefer the 32bit or 64bit properly.

Most of the Android app has not the EXE (executable file of HC-05 Bluetooth Terminal) or DMG (Disk Image file of HC-05 Bluetooth Terminal). Then you have to go with Emulator mandatorily.

HC-05 Bluetooth Terminal Software File Details

Preferable Emulators Firstly, Nox then BlueStacks
Supported OS Windows (any edition) and Mac
APK Developer M.Enthoven
Current Version 1.0
Last Update [lmt-post-modified-info]
Category Tools APP
Minimum Supported Android Version Android 4.0.3+
APK File Size 1.4 MB
Setup File Name & Format setup.exe/setup.dmg
Android Package Kit (APK) File Name com.HC-05 Bluetooth Terminal.apk

Conclusion

It should be the installation of the HC-05 Bluetooth Terminal app for PC is going to finish. And, you are enjoying HC-05 Bluetooth Terminal APK on Windows and Mac platforms. Don’t forget to share your thought via comment.

  • Windows
  • Users’ choice
  • Bluetooth terminal

Most people looking for Bluetooth terminal downloaded:

Blue Terminal

Download

Blue Terminal is a serial emulator program for Windows only, and is customised to work with the Bluegiga range of bluetooth modules.

BluetoothView

Download

BluetoothView is a small utility that runs in the background, and monitor the activity of Bluetooth devices around you.

Programs for query  ″bluetooth terminal″

uSipPhone

Download

With uSipPhone you can place calls from your desktop PC. GOODCOM INDUSTRIAL LIMITED is a professional VoIP developer …

…online printer ,bluetooth printer,portable …fixed wireless terminal,bluetooth handset and…

StarTrinity SoftSwitch

Download

The software is a free Windows-based class 5 softswitch with billing and web interface.

…wholesale, origination, termination, also as …SIP-bluetooth-GSM termination with asterisk…

SmartWedge

Download

Intermec SmartWedge is a software wedge tool that directs scanned data to the application being used.

terminal. Intermec SmartWedge manages the Bluetooth …traditional Bluetooth devices require…

DENSO WAVE Active USB-COM Port

Download

This program installs the device drivers required by the DENSO WAVE barcode and QR-code scanners.

…Handy Terminal, Communication Unit, and Bluetooth

DeepSoftware nrComm Lib

Download

The nrComm Lib is a set of Delphi VCL components, classes and routines for serial communication tasks.

…Devices (HID), Bluetooth, USB, LPT …phone (GSM terminal) and much …USB, Bluetooth COM ports…

SMSCaster E-Marketer GSM Standard

Download

SMSCaster E-Marketer is easy-to-use yet powerful SMS message broadcasting software for e-marketing.

…or cellular terminal and connect …cable or Bluetooth COM port…

Net View

Download

NetView is a free application allowing the user to easily control JAVAD GNSS receivers, i.

…SSL/TSL), Bluetooth, CAN ( …Manual mode terminal allows sending …This terminal supports a…

MobileVT

Download

Terminal emulator for Windows Mobile Pocket PC. Compatible with Telnet, Vt102, Vt100 …

Terminal emulator for …port (also bluetooth and Ir …such login, terminal setup, sending…

v Business Promoter

Download

Reach your customers or contact them anywhere, anytime by sending SMS messages to their mobile phones using this easy to use, cost-effective system.

…or cellular terminal and connect …cable or Bluetooth COM port…

Developed By: Qwerty

License: Free

Rating: 4,2/5 — 807 votes

Last Updated: April 21, 2025

App Details

Version 6.1104
Size 42.3 KB
Release Date November 04, 14
Category Tools Apps

App Permissions:
Allows applications to discover and pair bluetooth devices. [see more (4)]

What’s New:
V6.bug fix.V5.add setup to option sent data append newline automatically.change layout for android 4.0 up.V4.add setup to option show and send hexadecimal… [see more]

Description from Developer:
The app is terminal application, it can transaction data between Bluetooth device.
it’s can save all send and receive data to file.
file save in /sdcard/********.log
********… [read more]

About this app

On this page you can download Bluetooth Terminal and install on Windows PC. Bluetooth Terminal is free Tools app, developed by Qwerty. Latest version of Bluetooth Terminal is 6.1104, was released on 2014-11-04 (updated on 2025-04-21). Estimated number of the downloads is more than 100,000. Overall rating of Bluetooth Terminal is 4,2. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 807 users, 516 users had rated it 5*, 88 users had rated it 1*.

How to install Bluetooth Terminal on Windows?

Instruction on how to install Bluetooth Terminal on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Bluetooth Terminal on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, …

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it — you see you’re playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn’t work on your PC, or you cannot install, comment here and we will help you!

  1. Install using BlueStacks
  2. Install using NoxPlayer

Step By Step Guide To Install Bluetooth Terminal using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn’t automatically open BlueStacks, right-click on it and select Open with… Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click «Bluetooth Terminal» icon on the home screen to start using, it’ll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install Bluetooth Terminal on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find «Bluetooth Terminal» on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Как определить какая у тебя windows
  • Как настроить remoteapp на windows server 2019
  • Windows 7 домашняя базовая как включить удаленный рабочий стол
  • Запуск empire earth 2 на windows 10
  • Слетели корневые сертификаты windows