Espruino:Справочник по API/Класс BluetoothRemoteGATTCharacteristic/characteristicvaluechanged: различия между версиями
Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску
Myagkij (обсуждение | вклад) (Новая страница: «{{Espruino/Панель перехода}} {{Перевод от Сubewriter}} {{Myagkij-редактор}} =<ref>[ www.espruino.com - ]</ref>= ==Синтакс...») |
Myagkij (обсуждение | вклад) Нет описания правки |
||
(не показаны 3 промежуточные версии 2 участников) | |||
Строка 3: | Строка 3: | ||
{{Myagkij-редактор}} | {{Myagkij-редактор}} | ||
=<ref>[ www.espruino.com - ]</ref>= | =Событие BluetoothRemoteGATTCharacteristic.characteristicvaluechanged<ref>[https://www.espruino.com/Reference#t_l_BluetoothRemoteGATTCharacteristic_characteristicvaluechanged www.espruino.com - event BluetoothRemoteGATTCharacteristic.characteristicvaluechanged]</ref>= | ||
==Синтаксис== | ==Синтаксис== | ||
<syntaxhighlight lang="javascript | <syntaxhighlight lang="javascript"> | ||
BluetoothRemoteGATTCharacteristic.on('characteristicvaluechanged', function() { ... }) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==Описание== | ||
Генерируется при изменении значения характеристики после вызова [https://www.espruino.com/Reference#l_BluetoothRemoteGATTCharacteristic_startNotifications BluetoothRemoteGATTCharacteristic.startNotifications]. | |||
<syntaxhighlight lang="javascript"> | |||
... | |||
return service.getCharacteristic("characteristic_uuid"); | |||
}).then(function(c) { | |||
c.on('characteristicvaluechanged', function(event) { | |||
console.log("-> "+event.target.value); | |||
}); | |||
return c.startNotifications(); | |||
}).then(... | |||
</syntaxhighlight> | |||
Первый аргумент имеет формат '''{target : BluetoothRemoteGATTCharacteristic}'''. Новое значение (в виде DataView) будет сохранено в BluetoothRemoteGATTCharacteristic.value. | |||
{{Примечание1|Это событие доступно только для [[NRF52]]-устройств (вроде [[Puck.js]], [[Pixl.js]], [[Bangle.js]] и [[MDBT42Q]]).}} | |||
=См.также= | |||
=Внешние ссылки= | =Внешние ссылки= | ||
Строка 31: | Строка 38: | ||
<references /> | <references /> | ||
{{Навигационная таблица/Espruino | {{Навигационная таблица/Портал/Espruino}} | ||
Текущая версия от 17:15, 4 июня 2023
Перевод: Максим Кузьмин
Проверка/Оформление/Редактирование: Мякишев Е.А.
Событие BluetoothRemoteGATTCharacteristic.characteristicvaluechanged[1]
Синтаксис
BluetoothRemoteGATTCharacteristic.on('characteristicvaluechanged', function() { ... })
Описание
Генерируется при изменении значения характеристики после вызова BluetoothRemoteGATTCharacteristic.startNotifications.
...
return service.getCharacteristic("characteristic_uuid");
}).then(function(c) {
c.on('characteristicvaluechanged', function(event) {
console.log("-> "+event.target.value);
});
return c.startNotifications();
}).then(...
Первый аргумент имеет формат {target : BluetoothRemoteGATTCharacteristic}. Новое значение (в виде DataView) будет сохранено в BluetoothRemoteGATTCharacteristic.value.
См.также
Внешние ссылки