| バージョン | 1.3.0 |
|---|---|
| 出版社 | GreenParkSoftware |
| 発売日 | 2020/06/08 |
| 追加された日付 | 2020/06/08 |
| OSの要件 | iOS |
| 要件 | Requires iOS 13.0 or later. Compatible with iPhone, iPad, and iPod touch. |
| 総ダウンロード数 | 0 |
| 価格 | $1.99 |
説明
ブックマークとコンソール ログの表示をサポートする、Web Bluetooth JavaScript API の初期サブセットをサポートする非常にシンプルな Web ブラウザー。
*** 1.2 の新機能 ***
- デバッグ用コンソール
*** 概要 ***
このアプリを使用すると、Bluetooth (低エネルギー) デバイスとやり取りできる JavaScript で記述されたサイトに移動できます。これにより、puck.js などのデバイスで使用するアプリケーションを使い慣れた言語 (つまり、javascript) で作成し、iOS デバイスから使用できるようになります。
組み込みのコンソール ビューアーを使用して、WebBLE でサイトを実行する際の問題をデバッグします。
Bluetooth デバイスへのアクセスにはセキュリティが重要であるため、https を使用するサイトのみがサポートされており、ユーザーの許可なしに Bluetooth デバイスに接続することはできません。
最初は、次の主要な API がサポートされています。
- bluetooth.requestDevice()
- BluetoothDevice.gatt
- BluetoothDevice.addEventListener('gattserverdisconnected', cb)
- BluetoothRemoteGATTServer.connect()
- BluetoothRemoteGATTServer.disconnect()
- BluetoothRemoteGATTServer.getPrimaryService()
- BluetoothRemoteGATTService.getCharacteristic()
- BluetoothRemoteGATTCharacteristic.writeValue()
- BluetoothRemoteGATTCharacteristic.readValue()
- BluetoothRemoteGATTCharacteristic.startNotifications()
- BluetoothRemoteGATTCharacteristic.stopNotifications()
- BluetoothRemoteGATTCharacteristic.addEventListener("characteristicvaluechanged", cb)