ESP32にはBluetooth機能がついている。ArduinoIDEでプログラムすることで簡単に使えるので使ってみた。マイコンはここで買える。
まずはヘッダーを読み込み、Bluetooth用の変数を用意
#include "BluetoothSerial.h"
BluetoothSerial SerialBT;
あとはsetupにBluetoothを使うことを宣言して
void setup() {
SerialBT.begin("DeviceName");
}
これで通信ができる。
void loop() {
SerialBT.println("Hello World!");
}
全文
#include "BluetoothSerial.h"
BluetoothSerial SerialBT;
void setup() {
SerialBT.begin("DeviceName");
}
void loop() {
SerialBT.println("Hello World!");
}
コメント