Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lsongdev/dsensor

:chart_with_upwards_trend: Digital universal particle concentration sensor ⏲️
https://github.com/lsongdev/dsensor

air-quality air-quality-sensor hardware hcho iot plantower

Last synced: 7 days ago
JSON representation

:chart_with_upwards_trend: Digital universal particle concentration sensor ⏲️

Awesome Lists containing this project

README

        

## dsensor ![dsensor](https://img.shields.io/npm/v/dsensor.svg)

> Digital universal particle concentration sensor

### Installation

```bash
$ npm i [-g] dsensor
```

### Example

```js
const HCHO = require('dsensor/HCHO');

const sensor = new HCHO("/dev/cu.SLAB_USBtoUART");

sensor.on('message', message => {
console.log(message.toString()); // outputs: "HCHO: 0.001Mg/m3"
});

sensor.on("open", () => {
setInterval(() => {
sensor.send('query');
}, 3000);
});
```

![](docs/PMS5003.jpg)
![](docs/DS-HCHO.jpg)

### Contributing
- Fork this Repo first
- Clone your Repo
- Install dependencies by `$ npm install`
- Checkout a feature branch
- Feel free to add your features
- Make sure your features are fully tested
- Publish your local branch, Open a pull request
- Enjoy hacking <3

### MIT

---