关于BTscope - Arduino oscilloscope
适用于 Arduino 的蓝牙示波器应用程序
用于使用 Arduino 和 HC-05 制作简单蓝牙示波器的免费应用程序。例如,这款简单的示波器可用于汽车电子设备中测试传感器和其他不需要高速的地方。
示波器应用程序、Android 示波器、Arduino 模拟器、Arduino 蓝牙
````cpp
// 带有 HC-05 的 Arduino Nano 示例:
// 引脚排列:
// VCC --> Vin
// TXD --> 引脚 10
// RXD --> 引脚 11
// 接地 --> 接地
#include“SoftwareSerial.h”
软件序列 BTSerial(10, 11); // 接收 | TX
整数值=0; // 存储读取值的变量
int AnalogPin = A7; // 电位器抽头(中间端子)连接到模拟引脚 3
无效设置(){
BTSerial.begin(9600); // AT指令模式下HC-05默认速度
}
无效循环(){
静态无符号长 previousMillis = 0;
常量无符号长间隔 = 30; // 设置你想要的时间间隔(以毫秒为单位)
无符号长 currentMillis = millis();
if (currentMillis - previousMillis >= 间隔) {
先前的Millis = 当前的Millis;
// 通过蓝牙读取和发送数据的代码
val = AnalogRead(analogPin);
BTSerial.println(val);
}
// 你的其他非阻塞任务可以放在这里
// ...
// 避免使用delay()来保持循环响应
}
最新版本1.0的更新日志
Last updated on 2024年05月20日
Minor bug fixes and improvements. Install or update to the newest version to check it out!
BTscope - Arduino oscilloscope APK信息
在APKPure安全快速地下载APK
APKPure 使用签名验证功能,确保为您提供无病毒的 BTscope - Arduino oscilloscope APK 下载。
BTscope - Arduino oscilloscope历史版本
BTscope - Arduino oscilloscope 1.0
20.7 MB2024年05月20日


