All Projects → song940 → dsensor

song940 / dsensor

Licence: MIT License
📈 Digital universal particle concentration sensor ⏲️

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to dsensor

DustViewerSharp
UART-USB based dust sensor viewer(and also logging) program by C#
Stars: ✭ 38 (+192.31%)
Mutual labels:  air-quality, plantower
pm-home-station
Indoor use particulate matter sensor on USB or Bluetooth
Stars: ✭ 31 (+138.46%)
Mutual labels:  air-quality, plantower
tvm-vta
Open, Modular, Deep Learning Accelerator
Stars: ✭ 136 (+946.15%)
Mutual labels:  hardware
docker
Scripts to build and use docker images including GHDL
Stars: ✭ 27 (+107.69%)
Mutual labels:  hardware
hardware-attacks-state-of-the-art
Microarchitectural exploitation and other hardware attacks.
Stars: ✭ 29 (+123.08%)
Mutual labels:  hardware
SnowFlakeProject
All open source data of the snow flake project.
Stars: ✭ 37 (+184.62%)
Mutual labels:  hardware
remote refocus
A scientific publication, describing a way to improve microscopy. This repository hosts everything you need to reproduce our results. Read the publication here: https://andrewgyork.github.io/remote_refocus/
Stars: ✭ 13 (+0%)
Mutual labels:  hardware
Tinymovr
Compact brushless motor controller with integrated absolute encoder and CAN Bus.
Stars: ✭ 90 (+592.31%)
Mutual labels:  hardware
super-sixteen
Code and schematics for the Super Sixteen Eurorack sequencer
Stars: ✭ 90 (+592.31%)
Mutual labels:  hardware
azalea
main board for the GreatFET project, also known as GreatFET One
Stars: ✭ 52 (+300%)
Mutual labels:  hardware
awesome-open-source-synths
Awesome Open Source Synths List!
Stars: ✭ 64 (+392.31%)
Mutual labels:  hardware
Plaid-Pad
Build guide and additional hardware for the Plaid-Pad mechanical macro pad.
Stars: ✭ 39 (+200%)
Mutual labels:  hardware
WindowsMonitor
WMI namespaces and classes
Stars: ✭ 15 (+15.38%)
Mutual labels:  hardware
dlibox
Home automation that does not depend on the internet
Stars: ✭ 26 (+100%)
Mutual labels:  hardware
pioreactor
Hardware and software for accessible, extensible, and scalable bioreactors. Built on Raspberry Pi.
Stars: ✭ 28 (+115.38%)
Mutual labels:  hardware
hydranfc
HydraNFC is an open source NFC (13.56MHz) Shield hardware for researcher, hackers, students, embedded software developers or anyone interested in debugging/hacking/developing/penetration testing NFC hardware.
Stars: ✭ 66 (+407.69%)
Mutual labels:  hardware
lwow
Lightweight onewire protocol library optimized for UART hardware on embedded systems
Stars: ✭ 98 (+653.85%)
Mutual labels:  hardware
zevoicemask
An open source DIY implemetation of a face mask with voice visuals and animations.
Stars: ✭ 13 (+0%)
Mutual labels:  hardware
pinout
An open source Python package that generates hardware pinout diagrams as SVG images.
Stars: ✭ 298 (+2192.31%)
Mutual labels:  hardware
MinimumViableSynth
A virtual analog synthesizer with lots of knobs and buttons.
Stars: ✭ 22 (+69.23%)
Mutual labels:  hardware

dsensor dsensor

Digital universal particle concentration sensor

Installation

$ npm i [-g] dsensor

Example

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);
});

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


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].