UNPKG

node-red-contrib-iiot-opcua

Version:

An Industrial IoT OPC UA toolbox contribution package for Node-RED based on node-opcua.

27 lines (24 loc) 1.01 kB
/** The BSD 3-Clause License Copyright 2022 - DATATRONiQ GmbH (https://datatroniq.com) Copyright (c) 2018-2022 Klaus Landsdorf (http://node-red.plus/) All rights reserved. node-red-contrib-iiot-opcua */ 'use strict'; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); // SOURCE-MAP-REQUIRED const debug_1 = __importDefault(require("debug")); const internalDebugLog = (0, debug_1.default)('opcuaIIoT:discovery'); // eslint-disable-line no-use-before-define const detailDebugLog = (0, debug_1.default)('opcuaIIoT:discovery:details'); // eslint-disable-line no-use-before-define const DEFAULT_OPCUA_DISCOVERY_PORT = 4840; // eslint-disable-line no-use-before-define const coreDiscovery = { internalDebugLog, detailDebugLog, DEFAULT_OPCUA_DISCOVERY_PORT, }; exports.default = coreDiscovery; //# sourceMappingURL=opcua-iiot-core-discovery.js.map