Polímero - Platinum Bluetooth
Ele é usado para interagir com dispositivos bluetooth próximos usando o elemento <platinum-bluetooth>.
Você pode usar este elemento em seu aplicativo, executando o seguinte comando para instalá-lo no diretório do projeto.
bower install --save PolymerElements/platinum-bluetooth
Exemplo
O exemplo a seguir especifica o uso do elemento platinum-bluetooth no Polymer.js. Crie um arquivo index.html e adicione o seguinte código nele.
<!doctype html>
<html>
<head>
<title>Polymer Example</title>
<script src = "bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel = "import" href = "bower_components/polymer/polymer.html">
<link rel = "import" href = "bower_components/paper-styles/demo-pages.html">
<link rel = "import" href = "bower_components/paper-button/paper-button.html">
<link rel = "import" href = "bower_components/platinum-bluetooth/platinum-bluetooth-device.html">
</head>
<body>
<section>
<paper-button raised>Get bluetooth device</paper-button>
</section>
<script src = "platinum_bluetooth.js"></script>
</body>
</html>
Agora, crie outro arquivo chamado platinum_bluetooth.js e inclua o seguinte código -
document.addEventListener('WebComponentsReady', function() {
var mybatteryDevice = document.querySelector('platinum-bluetooth-device');
var mybutton = document.querySelector('paper-button');
mybutton.addEventListener('click', function() {
console.log('The requested bluetooth device advertising a battery service...');
mybatteryDevice.request().then(function(device) {
console.log('Bluetooth device has been found...');
console.log('The device name is: ' + device.name);
})
.catch(function(error) {
console.error('Sorry!No device found...', error);
});
});
});
Resultado
Para executar o aplicativo, navegue até o diretório do projeto criado e execute o seguinte comando.
polymer serve
Agora abra o navegador e navegue até http://127.0.0.1:8081/. A seguir será a saída.
Quando você clica no botão, ele exibe uma mensagem como "O dispositivo bluetooth solicitado anunciando um serviço de bateria ..." no console e exibe uma mensagem de erro, se nenhum dispositivo for encontrado.