Metadata-Version: 2.1
Name: notecard-pseudo-sensor
Version: 1.0.0
Summary: An API interface to the internal sensors of the Blues Wireless Notecard
Home-page: https://github.com/blues/notecard-pseudo-sensor-python
Author: Blues Inc.
Author-email: support@blues.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.mit

# NotecardPseudoSensor

NotecardPseudoSensor provides an API interface to the internal sensors of the [Blues Wireless Notecard](https://shop.blues.io/collections/notecard). The goal of this abstraction is to offer a sensor to use with more advanced tutorials, which enables focus on the syntax necessary to perform basic Notecard transactions for those new to the platform.

## Installation

With `pip` via PyPi:

```
pip install notecard-pseudo-sensor
```

or

```
pip3 install notecard-pseudo-sensor
```


## Usage

``` python
import notecard-pseudo-sensor

sensor = notecard-pseudo-sensor.NotecardPseudoSensor()
print(sensor.temp())
print(sensor.humidity())
```

## To learn more about Blues Wireless, the Notecard and Notehub, see:

- [blues.io](https://blues.io)
- [notehub.io](https://notehub.io)
- [dev.blues.io](https://dev.blues.io)

## License

Copyright (c) 2021 Blues, Inc. Released under the MIT license. See
[LICENSE](LICENSE.mit) for details.

