@kuriousdesign/machine-sdk
Version:
Shared data types and helpers for machine-related repositories
15 lines (14 loc) • 545 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeviceId = void 0;
var DeviceId;
(function (DeviceId) {
DeviceId[DeviceId["SYS"] = 0] = "SYS";
DeviceId[DeviceId["CON"] = 1] = "CON";
DeviceId[DeviceId["CNC"] = 2] = "CNC";
DeviceId[DeviceId["ROB"] = 3] = "ROB";
DeviceId[DeviceId["DBRR"] = 4] = "DBRR";
DeviceId[DeviceId["SFTY"] = 5] = "SFTY";
DeviceId[DeviceId["RACK"] = 6] = "RACK";
DeviceId[DeviceId["WASH"] = 7] = "WASH";
})(DeviceId || (exports.DeviceId = DeviceId = {}));