node-vscp-type
Version:
VSCP type constants
39 lines (26 loc) • 1.04 kB
Markdown
<img src="https://vscp.org/images/logo.png" width="100">
VSCP type constants for the node.js package **node-vscp-type**
Install with
```bash
npm install node-vscp-type
```
optionally with '--save' to save dependency in the package.json file.
```javascript
const vscp_type = require('node-vscp-type');
...
// To get numerical value for type
console.log(vscp_type.VSCP_TYPE_MEASUREMENT_PRESSURE);
// To get symbolic value of class/type pair
// vscp_type(vscpClass,vscpType)
// output: 'VSCP2_TYPE_VSCPD_DRV3_CONFIG'
console.log(vscp_type(65535,12));
```
Available events are [here](https://docs.vscp.org/spec/latest/#/)
If you work with [VSCP](https://www.vscp.org) it is convenient to use constants instead of _magical numbers_ when defining/sending event. Info on how to do this is available [here](https://www.npmjs.com/package/node-vscp).
---
This package is part of the [VSCP(Very Simple Control Protocol)](https://www.vscp.org) IoT framework.