Try xHeader →
Overview
Features & Capabilities
User Growth & Download Statistics
App
- By:
- Lukas Pistrol
- Rating:
- 3.30 (18)
- Version:
- 3.4.1 Last updated: 2023-06-05
- Version code:
- 857573906
- Creation date:
- 2015-11-20
- Compatible devices:
- Size:
- 11.04MB
- URLs:
- Website ,Privacy policy
- Full description:
- See detailed description
- Source:
- Apple Apps Store
- Data ingested on:
- 2026-07-19
- Compare stats and ranking:
- Bluetooth Terminal vs BLE Terminal - bluetooth tools
- Bluetooth Terminal vs Blueterminal
- Bluetooth Terminal vs BLE Laboratory Pro
Ranking
For Developers
Contact the developer
Chrome-Stats does not own this Apple app. Please use these information below to contact the Apple app developer.
User Reviews
Pros
- Provides basic Bluetooth terminal functionality for sending/receiving data
- Works as advertised and meets user expectations in many cases
- Compatible with common Bluetooth modules (e.g., sh-hc-08, HM-10) for data exchange
- Developer is responsive and helpful when issues arise
Cons
- Frequent Bluetooth disconnections, especially when using controller features or add-ons
- Ad-heavy interface with frequent pop-ups and paid upgrades for features
- Some features are buggy or unreliable (buttons not working, controller mode disconnects, occasional crashes)
- Device/service discovery and peripheral compatibility can be inconsistent
Recent reviews
Good
by Ab*****, 2025-11-20
import torch
from transformers import AutoTokenizer, AutoModelForSequenceClassification
from hashlib import sha256
import os
class KingsGuard:
def __init__(self, password):
self.password_hash = sha256(password.encode()).hexdigest()
self.tokenizer = AutoTokenizer.from_pretrained("huggingface/llama")
self.model = AutoModelForSequenceClassification.from_pretrained("huggingface/llama")
def authenticate(self, attempt):
return sha256(attempt.encode()).hexdigest() == self.password_hash
def check_message(self, message):
inputs = self.tokenizer(message, return_tensors="pt")
outputs = self.model(**inputs)
prediction = torch.argmax(outputs.logits, dim=1).item()
return "Warning: Possible threat detected." if prediction == 1 else "Message is safe."
class SecureTerminal:
def __init__(self):
self.authenticated = False
self.guard = None
def set_guard(self, password):
self.guard = KingsGuard(password)
def authenticate_user(self, attempt):
if self.guard.authenticate(attempt):
self.authenticated = True
print("Authentication successful. Welcome!")
else:
print("Authentication failed. Access denied.")
def execute_command(self, command):
if self.authenticated:
os.system(command)
else:
print("Please authenticate first.")
def main():
terminal = SecureTerminal()
password = input("Set your King's Guard password: ")
terminal.set_guard(password)
while True:
attempt = input("Enter password to authenticate: ")
terminal.authenticate_user(attempt)
if terminal.authenticated:
break
while True:
command = input("SecureTerminal#> ")
if command.lower() == "exit":
print("Exiting the terminal. Goodbye!")
break
if command.startswith("check "):
message = command[6:]
result = terminal.guard.check_message(message)
print(result)
else:
terminal.execute_command(command)
if __name__ == '__main__':
main()
by An*****, 2024-11-02
Best Bluetooth Terminal Alternatives
Here are some Apple apps that are similar to Bluetooth Terminal:
BLE Terminal - bluetooth tools
LANARS LLC
Blueterminal
Maria Alejandra Wetsch
BLE Laboratory Pro
Michael Lauer
BLE Serial Pro
Ed Nieuwenhuys
BLE Debugger: Bluetooth Tool
英 陈
BLE Spy
Peter Gasche
BlackBLE
RoboCore Tecnologia LTDA
ESP32 BLE Terminal
Gopi Gadhiya
Bluefruit Connect
Adafruit Industries
Trace Your BLE
HAO-JEN HSU
Bluetooth Test Tool
RobotPatient Development BV
BLE Terminal V3
FUH CHERNG SHEU