├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── additem01.png ├── additem02.png ├── creategroups.png ├── createserver.png └── node.png ├── package.json └── red ├── locales └── en-US │ └── opc-da.json ├── opc-da.html └── opc-da.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/README.md -------------------------------------------------------------------------------- /images/additem01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/images/additem01.png -------------------------------------------------------------------------------- /images/additem02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/images/additem02.png -------------------------------------------------------------------------------- /images/creategroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/images/creategroups.png -------------------------------------------------------------------------------- /images/createserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/images/createserver.png -------------------------------------------------------------------------------- /images/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/images/node.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/package.json -------------------------------------------------------------------------------- /red/locales/en-US/opc-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/red/locales/en-US/opc-da.json -------------------------------------------------------------------------------- /red/opc-da.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/red/opc-da.html -------------------------------------------------------------------------------- /red/opc-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-one-io/node-red-contrib-opc-da/HEAD/red/opc-da.js --------------------------------------------------------------------------------