Skip to content

Commit

Permalink
added flywheel and echelon UUIDs to PM field.
Browse files Browse the repository at this point in the history
  • Loading branch information
doudar committed Dec 2, 2022
1 parent ecc7c64 commit 7e6383a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/bluetoothscanner.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ <h2>
var t_obj = JSON.parse(data.foundDevices)
{
for (var key in t_obj) {
if (t_obj[key].UUID == '0x1818' || t_obj[key].UUID == '0x1826') {
if (t_obj[key].UUID == '0x1818' || t_obj[key].UUID == '0x1826' || t_obj[key].UUID == '6e400001-b5a3-f393-e0a9-e50e24dcca9e' || t_obj[key].UUID == '0bf669f0-45f2-11e7-9598-0800200c9a66') {
optionPM = document.createElement('option');
if (t_obj[key].name) {
optionPM.text = t_obj[key].name;
Expand Down

0 comments on commit 7e6383a

Please sign in to comment.