mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
Added a Bluetooth Logo to the library and linmk to it here. Renamed scan function to blescan (just in case). Added a close function to stop discovery, just to try to be clean.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
<!--
|
||||
Copyright 2013 Charalampos Doukas.
|
||||
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -26,18 +26,18 @@
|
||||
<label for="node-input-topic"><i class="icon-tasks"></i> UUID</label>
|
||||
<input type="text" id="node-input-ble_uuid" placeholder="UUID">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-row">
|
||||
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
|
||||
<input type="text" id="node-input-name" placeholder="Name">
|
||||
</div>
|
||||
</script>
|
||||
|
||||
|
||||
<!-- Next, some simple help text is provided for the node. -->
|
||||
<script type="text/x-red" data-help-name="scanBLE">
|
||||
<p>Scans for a specific BLE Device</p>
|
||||
</script>
|
||||
|
||||
|
||||
<!-- Finally, the node type is registered along with all of its properties -->
|
||||
<script type="text/javascript">
|
||||
RED.nodes.registerType('scanBLE',{
|
||||
@@ -50,7 +50,7 @@
|
||||
},
|
||||
inputs:1, // set the number of inputs - only 0 or 1
|
||||
outputs:1, // set the number of outputs - 0 to n
|
||||
icon: "arrow-in.png", // set the icon (held in public/icons)
|
||||
icon: "bluetooth.png", // set the icon (held in public/icons)
|
||||
label: function() { // sets the default label contents
|
||||
return this.name||this.topic||"scanBLE";
|
||||
},
|
||||
|
Reference in New Issue
Block a user