Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/niklasmerz/cordova-plugin-plc4x

Unofficial PLC4X Plugin for Apache Cordova. Android for now but C experts can probably get iOS to work. PRs welcome.
https://github.com/niklasmerz/cordova-plugin-plc4x

cordova cordova-plugin plc plc4x

Last synced: 21 days ago
JSON representation

Unofficial PLC4X Plugin for Apache Cordova. Android for now but C experts can probably get iOS to work. PRs welcome.

Awesome Lists containing this project

README

        

# cordova-plugin-plc4x

Read from PLCs

```javascript
PLC4X.connect(this.url, async (res) => {
console.log(res);
}, async (res) => {
console.log(res);
});

let values = [
{ name: 'motor-current', fieldQuery: '%DB444.DBD8:REAL' },
{ name: 'position', fieldQuery: '%DB444.DBD0:REAL' },
{ name: 'rand_val', fieldQuery: '%DB444.DBD4:REAL' }
];

PLC4X.read(this.values, (res) => {
console.log(res);
}, async (err) => {
console.log(err);
});
```