raddec-filter

0.4.0 • Public • Published

raddec-filter

Filter for raddecs based on a standardised set of parameters.

Hello raddec-filter!

const Raddec = require('raddec');
const RaddecFilter = require('raddec-filter');

let parameters = {
    acceptedTransmitterSignatures: [ 'aabbccddeeff/2', '112233445566/2' ],
    acceptedTransmitterIdTypes: [ Raddec.identifiers.TYPE_EUI48 ],
    acceptedReceiverSignatures: [ '001bc50940810000/1' ],
    acceptedReceiverIdTypes: [ Raddec.identifiers.TYPE_EUI64 ],
    acceptedEvents: [ Raddec.events.APPEARANCE, Raddec.events.DISPLACEMENT ],
    acceptedPackets: [ '1234', /abcd/ ],
    minRSSI: -85,
    maxRSSI: -30
}

let filter = new RaddecFilter(parameters);

let raddec = new Raddec({ /* Raddec properties */ });

let accepted = filter.isPassing(raddec);

console.log(accepted); // true or false

Filter parameters

The following parameters are supported:

acceptedTransmitterSignatures

Array of transmitter signatures to accept. A filtered raddec must have its transmitter signature (transmitterId and transmitterIdType) included in the list to pass. For example, to only allow raddecs from a transmitter with EUI-48 identifier aa:bb:cc:dd:ee:ff to pass:

let acceptedTransmitterSignatures = [ 'aabbccddeeff/2' ];

acceptedTransmitterIdTypes

Array of transmitterIdTypes to accept. See the raddec identifier types for details. A filtered raddec must have a transmitterIdType included in the list to pass. For example, to only allow raddecs from transmitters with EUI-64, EUI-48 and random 48-bit identifiers to pass:

let acceptedTransmitterIdTypes = [ Raddec.identifiers.TYPE_EUI64,
                                   Raddec.identifiers.TYPE_EUI48,
                                   Raddec.identifiers.TYPE_RND48 ];

acceptedReceiverSignatures

Array of receiver signatures to accept. A filtered raddec must have its strongest receiver's signature (receiverId and receiverIdType) included in the list to pass. For example, to only allow raddecs with strongest receiver with EUI-64 identifier 00-1b-c5-09-40-81-00-00 to pass:

let acceptedReceiverSignatures = [ '001bc50940810000/1' ];

acceptedReceiverIdTypes

Array of receiverIdTypes to accept. See the raddec identifier types for details. A filtered raddec must have its strongest receiver's receiverIdType included in the list to pass. For example, to only allow raddecs decoded strongest by receivers with EUI-64 and EUI-48 identifiers to pass:

let acceptedReceiverIdTypes = [ Raddec.identifiers.TYPE_EUI64,
                                Raddec.identifiers.TYPE_EUI48 ];

acceptedEvents

Index list (array) of events to accept. See the raddec event types for details. A filtered raddec must include at least one of these events to pass. For example, to only allow raddecs that correspond with appearance or displacement events to pass:

let acceptedEvents = [ Raddec.events.APPEARANCE, Raddec.events.DISPLACEMENT ];

acceptedPackets

Index list (array) of packets to accept. Each element in the array can be either a String or a RegExp. A filtered raddec must include at least one of these packets to pass. For example, to only allow raddecs with packets that are exactly '1234' or contain 'abcd':

let acceptedPackets = [ '1234', /abcd/ ];

minRSSI and maxRSSI

Integer threshold of RSSI (signal strength) to accept. A filtered raddec must have a strongest receiver which passes any and all thresholds. For example, to allow only raddecs with strongest receiver having RSSI in the range of -85 to -60 dBm (inclusive):

let minRSSI = -85;
let maxRSSI = -60;

License

MIT License

Copyright (c) 2019-2022 reelyActive

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i raddec-filter

Weekly Downloads

8

Version

0.4.0

License

MIT

Unpacked Size

14.9 kB

Total Files

4

Last publish

Collaborators

  • reelyactive