關於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 類比腳位 = 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日


