aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/bluetoothremotegattserver
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
commit074785cea106179cb3305637055ab0a009ca74f2 (patch)
treee6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/ru/web/api/bluetoothremotegattserver
parentda78a9e329e272dedb2400b79a3bdeebff387d47 (diff)
downloadtranslated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz
translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2
translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip
initial commit
Diffstat (limited to 'files/ru/web/api/bluetoothremotegattserver')
-rw-r--r--files/ru/web/api/bluetoothremotegattserver/index.html79
1 files changed, 79 insertions, 0 deletions
diff --git a/files/ru/web/api/bluetoothremotegattserver/index.html b/files/ru/web/api/bluetoothremotegattserver/index.html
new file mode 100644
index 0000000000..f99ea7c5c1
--- /dev/null
+++ b/files/ru/web/api/bluetoothremotegattserver/index.html
@@ -0,0 +1,79 @@
+---
+title: BluetoothRemoteGATTServer
+slug: Web/API/BluetoothRemoteGATTServer
+tags:
+ - API
+ - Bluetooth
+ - BluetoothRemoteGATTServer
+ - Web Bluetooth API
+ - Интерфейс
+ - Определение
+ - Экспериментальное
+translation_of: Web/API/BluetoothRemoteGATTServer
+---
+<div>{{APIRef("Bluetooth API")}}{{SeeCompatTable}}</div>
+
+<p>Интерфейс <code><strong>BluetoothRemoteGATTServer</strong></code>, относящийся к <a href="/en-US/docs/Web/API/Web_Bluetooth_API">Web Bluetooth API</a>, представляет сервер GATT на удаленном устройстве.</p>
+
+<div class="note">
+<p>Данная страница описывает Web Bluetooth API от W3C Community Group. <a href="/en-US/docs/Archive/B2G_OS/API/BluetoothGattServer"><code>BluetoothGattServer</code> (Firefox OS)</a> - Bluetooth API в Firefox OS.</p>
+</div>
+
+<h2 id="Интерфейс">Интерфейс</h2>
+
+<pre class="syntaxbox notranslate">interface BluetoothRemoteGATTServer {
+ readonly attribute BluetoothDevice device;
+ readonly attribute boolean connected;
+
+ Promise&lt;BluetoothRemoteGATTServer&gt; connect();
+ void disconnect();
+ Promise&lt;BluetoothRemoteGATTService&gt; getPrimaryService(BluetoothServiceUUID service);
+ Promise&lt;sequence&lt;BluetoothRemoteGATTService&gt;&gt; getPrimaryServices(optional BluetoothServiceUUID service);
+};</pre>
+
+<h2 id="Свойства">Свойства</h2>
+
+<dl>
+ <dt>{{DOMxRef("BluetoothRemoteGATTServer.connected")}}{{ReadOnlyInline}}</dt>
+ <dd>Двоичное значение, равное <code>true</code>, если устройство <code>this.device</code> подключено. It can be false while the user agent is physically connected.</dd>
+ <dt>{{DOMxRef("BluetoothRemoteGATTServer.device")}}{{ReadOnlyInline}}</dt>
+ <dd>{{DOMxRef("BluetoothDevice")}}, на котором работает сервер.</dd>
+</dl>
+
+<h2 id="Методы">Методы</h2>
+
+<dl>
+ <dt>{{DOMxRef("BluetoothRemoteGATTServer.connect()")}}</dt>
+ <dd>Подключение к устройству <code>this.device</code>.</dd>
+ <dt>{{DOMxRef("BluetoothRemoteGATTServer.disconnect()")}}</dt>
+ <dd>Отключение от устройства <code>this.device</code>.</dd>
+ <dt>{{DOMxRef("BluetoothRemoteGATTServer.getPrimaryService()")}}</dt>
+ <dd>Returns a promise to the primary {{DOMxRef("BluetoothGATTService")}} offered by the bluetooth device for a specified <code>BluetoothServiceUUID</code>.</dd>
+ <dt>{{DOMxRef("BluetoothRemoteGATTServer.getPrimaryServices()")}}</dt>
+ <dd>Returns a promise to a list of primary {{DOMxRef("BluetoothGATTService")}} objects offered by the bluetooth device for a specified <code>BluetoothServiceUUID</code>.</dd>
+</dl>
+
+<h2 id="Спецификации">Спецификации</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Спецификация</th>
+ <th scope="col">Статус</th>
+ <th scope="col">Комментарий</th>
+ </tr>
+ <tr>
+ <td>{{SpecName("Web Bluetooth", "#bluetoothremotegattserver", "BluetoothRemoteGATTServer")}}</td>
+ <td>{{Spec2("Web Bluetooth")}}</td>
+ <td>Изначальное определение.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Совместимость">Совместимость</h2>
+
+
+
+<p>{{Compat("api.BluetoothRemoteGATTServer")}}</p>
+
+<div>{{APIRef("Web Bluetooth")}}</div>