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

https://github.com/tomarrell/plantower

A library for decoding data from the Plantower series of sensors
https://github.com/tomarrell/plantower

Last synced: about 1 year ago
JSON representation

A library for decoding data from the Plantower series of sensors

Awesome Lists containing this project

README

          

# Plantower

[![Tests](https://github.com/tomarrell/plantower/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/tomarrell/plantower/actions/workflows/test.yaml)
[![Go Reference](https://pkg.go.dev/badge/github.com/tomarrell/plantower.svg)](https://pkg.go.dev/github.com/tomarrell/plantower)

This library allows you to decode data coming from the Plantower PMS5003 Digital
universal particle concentration sensor.

Currently supports models:
- PMS5003 [ [Datasheet](./pms5003_datasheet.pdf) ] (Active Mode)

## Usage

The library takes an `io.Reader` representing a stream of bytes from the sensor.
This allows you to decide how you read the data from the physical link.

```go
package main

import ()

func main() {
// TODO
}
```

## License

Licensed under the MIT license. See [LICENSE](./LICENSE) for more details.