astra-protocol-x-parser
Version:
A lightweight NodeJS package for parsing data from Astra Telematics IoT devices
13 lines (12 loc) • 519 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProtocolXCarrierTwoWayAlarms = void 0;
var ProtocolXCarrierTwoWayAlarms = /** @class */ (function () {
function ProtocolXCarrierTwoWayAlarms(alarmCount, alarmQueue) {
this.alarmCount = alarmCount;
this.alarmQueue = alarmQueue;
}
ProtocolXCarrierTwoWayAlarms.mask = BigInt(1) << BigInt(19);
return ProtocolXCarrierTwoWayAlarms;
}());
exports.ProtocolXCarrierTwoWayAlarms = ProtocolXCarrierTwoWayAlarms;
;