Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x | "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.EStop = exports.OperatingMode = exports.InfoLevel = exports.ErrorLevel = exports.ActionStatus = exports.BlockingType = exports.ConnectionState = void 0;
var ConnectionState;
(function (ConnectionState) {
ConnectionState["Connectionbroken"] = "CONNECTIONBROKEN";
ConnectionState["Offline"] = "OFFLINE";
ConnectionState["Online"] = "ONLINE";
})(ConnectionState = exports.ConnectionState || (exports.ConnectionState = {}));
var BlockingType;
(function (BlockingType) {
BlockingType["Hard"] = "HARD";
BlockingType["None"] = "NONE";
BlockingType["Soft"] = "SOFT";
})(BlockingType = exports.BlockingType || (exports.BlockingType = {}));
var ActionStatus;
(function (ActionStatus) {
ActionStatus["Failed"] = "FAILED";
ActionStatus["Finished"] = "FINISHED";
ActionStatus["Initializing"] = "INITIALIZING";
ActionStatus["Paused"] = "PAUSED";
ActionStatus["Running"] = "RUNNING";
ActionStatus["Waiting"] = "WAITING";
})(ActionStatus = exports.ActionStatus || (exports.ActionStatus = {}));
var ErrorLevel;
(function (ErrorLevel) {
ErrorLevel["Fatal"] = "FATAL";
ErrorLevel["Warning"] = "WARNING";
})(ErrorLevel = exports.ErrorLevel || (exports.ErrorLevel = {}));
var InfoLevel;
(function (InfoLevel) {
InfoLevel["Debug"] = "DEBUG";
InfoLevel["Info"] = "INFO";
})(InfoLevel = exports.InfoLevel || (exports.InfoLevel = {}));
var OperatingMode;
(function (OperatingMode) {
OperatingMode["Automatic"] = "AUTOMATIC";
OperatingMode["Manual"] = "MANUAL";
OperatingMode["Semiautomatic"] = "SEMIAUTOMATIC";
OperatingMode["Service"] = "SERVICE";
OperatingMode["Teachin"] = "TEACHIN";
})(OperatingMode = exports.OperatingMode || (exports.OperatingMode = {}));
var EStop;
(function (EStop) {
EStop["Autoack"] = "AUTOACK";
EStop["Manual"] = "MANUAL";
EStop["None"] = "NONE";
EStop["Remote"] = "REMOTE";
})(EStop = exports.EStop || (exports.EStop = {}));
|