Bluetooth Serial Monitor 電腦版
CSA Apps
用GameLoop模拟器在電腦上玩Bluetooth Serial Monitor
Bluetooth Serial Monitor 電腦版
來自發行商 CSA Apps 的 Bluetooth Serial Monitor 能夠在安卓系統上運行。
現在,您可以在電腦上使用 GameLoop 模擬器流暢地玩 Bluetooth Serial Monitor。
在 GameLoop 遊戲庫或搜索結果中下載。 不需要再暢玩遊戲時盯著電池電量或被令人懊惱的來電打斷。
只需在電腦大屏幕上免費下載暢玩Bluetooth Serial Monitor 電腦版!
Bluetooth Serial Monitor 簡介
This is a Bluetooth serial monitor interface for experiments with Arduino & Bluetooth
Can use with Bluetooth modules like HC-05, HC-06
Special Features
★It turns on Bluetooth from app
★It can scan for available devices
★Can select relevant device when more than one device available
★Customizable interface & features
★Auto Connect feature
If this feature enabled app will save the last connected Bluetooth module mac-address and try to connect that module when app starting. You can toggle this feature enable or disable from settings
Sample Code
#include "SoftwareSerial.h"
SoftwareSerial bt(2, 3); // RX | TX (Wiring: RX->TX of BT Module, TX->RX of BT Module, Use level shifter or resistor voltage divider if your BT module use 3.3V Logic level)
void setup(){
Serial.begin(9600);
bt.begin(9600);
}
void loop(){
if (bt.available())
Serial.write(bt.read());
if (Serial.available())
bt.write(Serial.read());
}
/*
This will send your PC serial monitor Input to app and app input to PC
The app will recognize the end of the message from '\r' character.
So select "Carriage return" or "Both NL & CR" in the PC serial monitor.
And also u should use println() instead of print() when make your own code with some commands.
Ex:-
bt.print("Hello");
This doesn't show the msg in the app because doesn't contains '\r' int the end of message.
so u have to code like below
Ex:-
bt.println("Hello"); or bt.print("Hello\r");
Both show the output in the app because both containing '\r'
*/
標籤
工具訊息
開發商
CSA Apps
最新版本
6.2.5
更新時間
2021-10-01
類別
工具
同時可用
Google Play
更多
如何在電腦上用 GameLoop 玩 Bluetooth Serial Monitor
1. 從官網下載GameLoop,然後運行exe文件安裝GameLoop
2. 打開GameLoop,搜索“Bluetooth Serial Monitor”,在搜索結果中找到Bluetooth Serial Monitor,點擊“安裝”
3. 享受在 GameLoop 上玩 Bluetooth Serial Monitor 的樂趣
Minimum requirements
OS
Windows 8.1 64-bit or Windows 10 64-bit
GPU
GTX 1050
CPU
i3-8300
Memory
8GB RAM
Storage
1GB available space
Recommended requirements
OS
Windows 8.1 64-bit or Windows 10 64-bit
GPU
GTX 1050
CPU
i3-9320
Memory
16GB RAM
Storage
1GB available space