This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BLESample.js
165 lines (155 loc) · 7.62 KB
/
BLESample.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/**
* サービスのUUID
* @type {string}
*/
const SERVICE_UUID = "442f1570-8a00-9a28-cbe1-e1d4212d53eb";
/**
* 読み取りのキャラクタリスティックのUUID
* @type {string}
*/
const READ_CHARACTERISTIC_UUID = "442f1571-8a00-9a28-cbe1-e1d4212d53eb";
/**
* 書き込みのキャラクタリスティックのUUID
* @type {string}
*/
const WRITE_CHARACTERISTIC_UUID = "442f1572-8a00-9a28-cbe1-e1d4212d53eb";
/**
* 書き込みのキャラクタリスティック
* @type {BluetoothRemoteGATTCharacteristic|undefined}
*/
let WriteCharacteristic;
/**
* 接続しているBluetoothデバイスのオブジェクト
* @type {BluetoothDevice|undefined}
*/
let Device;
/**
* 「Bluetooth接続」ボタンをクリックした時の関数
*/
function onBluetoothConnectButtonClick() {
navigator.bluetooth.requestDevice({
filters: [{
name: ["Leafony_AC02"]
}]
}).then((device) => {
document.getElementById("bluetooth_connect_button").disabled = true;
document.getElementById("bluetooth_disconnect_button").disabled = false;
Device = device;
document.getElementById("leafony_area").classList.remove("hidden");
document.getElementById("device_name").innerText = device.name;
console.group("Bluetoothデバイスに接続しました。");
console.debug(`ユニーク名: ${device.name}`);
console.debug(`ID: ${device.id}`);
console.groupEnd();
device.addEventListener("gattserverdisconnected", () => {
document.getElementById("leafony_area").classList.add("hidden");
["device_name", "temperature", "humidity", "brightness", "tilt", "battery_voltage", "dice_face"].forEach((elementId) => document.getElementById(elementId).innerText = "");
Array.prototype.forEach.call(document.getElementsByClassName("led_control_buttons"), (element) => element.disabled = true);
}, {once: true});
//GATTサーバに接続する。
device.gatt.connect().then((server) => {
console.info("GATTサーバに接続しました。");
//サービスに接続する。
server.getPrimaryService(SERVICE_UUID).then((service) => {
console.info("プライマリサービスに接続しました。");
//読み取りのキャラクタリスティック
service.getCharacteristic(READ_CHARACTERISTIC_UUID).then((characteristic) => {
characteristic.addEventListener("characteristicvaluechanged", (event) => {
const data = new TextDecoder("utf-8").decode(event.target.value).replace(/\r?\n|\s/g, "").split(",");
["temperature", "humidity", "brightness", "tilt", "battery_voltage", "dice_face"].forEach((elementId, index) => document.getElementById(elementId).innerText = data[index]);
console.group("キャラクタリスティックが変化しました。");
console.debug(data);
console.groupEnd();
});
characteristic.startNotifications();
});
//書き込みのキャラクタリスティック
service.getCharacteristic(WRITE_CHARACTERISTIC_UUID).then((characteristic) => {
WriteCharacteristic = characteristic;
sendCommand("SND");
Array.prototype.forEach.call(document.getElementsByClassName("led_control_buttons"), (element) => element.disabled = false);
});
});
});
}).catch((error) => {
switch(error.name) {
case "NotFoundError":
console.info("ユーザがBluetoothデバイスの選択をキャンセルしました。");
break;
default:
console.error(`Bluetoothデバイスの選択準備時にエラーが発生しました。${error.message}`);
}
});
}
/**
* 「Bluetooth切断」ボタンをクリックした時の処理
*/
function onBluetoothDisconnectButtonClick() {
if(Device) {
Device.gatt.disconnect();
console.info("Bluetoothデバイスとの通信を切断しました。");
Device = undefined;
WriteCharacteristic = undefined;
}
document.getElementById("bluetooth_connect_button").disabled = false;
document.getElementById("bluetooth_disconnect_button").disabled = true;
}
/**
* Leafonyにコマンドを送信する。
* @param {string} command 送信する文字列
*/
function sendCommand(command) {
if(WriteCharacteristic) WriteCharacteristic.writeValue(new TextEncoder().encode(command)).then(() => console.info("Bluetoothデバイスにメッセージを送信しました。"));
else console.warn("Bluetoothデバイスに接続されていないため、メッセージを送信できませんでした。");
}
//WebがBluetooth APIに対応しているかどうか確認する。
if(navigator.bluetooth) console.info("お使いのブラウザはBluetooth APIに対応しています。");
else {
console.warn("お使いのブラウザはBluetooth APIに対応していません。Google Chromeの場合は \"chrome://flags/#enable-experimental-web-platform-features\" を検索バーに入力するとBluetooth APIを有効化出来る場合があります。");
document.getElementById("bluetooth_area").classList.add("hidden");
document.getElementById("bluetooth_api_not_supported").classList.remove("hidden");
}
//"copyable_text"クラスのテキストをコピー出来るようにする処理
/**
* マウスカーソルが"copyable_text"クラス内にある時に動いた時の関数
* @param {MouseEvent} event イベント
*/
function onMouseMoveInCopyableTextClass(event) {
const balloonText = document.getElementById("balloon_text");
balloonText.style.left = `${event.clientX - balloonText.clientWidth / 2}px`;
balloonText.style.top = `${event.clientY - 70}px`;
}
Array.prototype.forEach.call(document.getElementsByClassName("copyable_text"), (element) => {
let timeoutID;
element.addEventListener("mouseenter", () => {
const balloonText = document.getElementById("balloon_text");
balloonText.innerText = "クリックしてコピー";
balloonText.classList.remove("hidden");
element.addEventListener("mousemove", onMouseMoveInCopyableTextClass);
});
element.addEventListener("mouseleave", () => {
const balloonText = document.getElementById("balloon_text");
balloonText.classList.add("hidden");
balloonText.classList.remove("balloon_text_green", "balloon_text_red");
element.removeEventListener("mousemove", onMouseMoveInCopyableTextClass);
if(timeoutID) clearTimeout(timeoutID);
timeoutID = undefined;
});
element.addEventListener("click", (event) => {
const balloonText = document.getElementById("balloon_text");
navigator.clipboard.writeText("chrome://flags/#enable-experimental-web-platform-features").then(() => {
balloonText.innerText = "コピーしました!";
balloonText.classList.add("balloon_text_green");
}).catch(() => {
balloonText.innerText = "コピーエラー!";
balloonText.classList.add("balloon_text_red");
}).finally(() => {
onMouseMoveInCopyableTextClass(event);
timeoutID = setTimeout(() => {
balloonText.innerText = "クリックしてコピー";
balloonText.classList.remove("balloon_text_green", "balloon_text_red");
onMouseMoveInCopyableTextClass(event);
}, 1500);
});
});
});