ble-ad-parser
Version:
Parse Bluetooth Low Energy peripheral advertising packets
17 lines (14 loc) • 666 B
JavaScript
// Copyright 2014 Technical Machine, Inc. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
var PacketParser = require('./lib/parser');
module.exports.parse = PacketParser.parse;
module.exports.parseLE = PacketParser.parseLE;
module.exports.parseBE = PacketParser.parseBE;
// For testing only
module.exports.split = PacketParser.split;