Metadata-Version: 2.1
Name: SCA11H
Version: 0.1.0
Summary: SCA11H Bed Sensor API Helper
Home-page: https://github.com/ihutano/SCA11H
Author: Dennis Sitelew
Author-email: yowidin@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/ihutano/SCA11H/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# SCA11H
Simple wrapper over the [Muarata's Bed Sensor](https://www.murata.com/en-us/products/sensor/accel/overview/lineup/sca10h_11h/sca11h).
It's based on the [Hostless WLAN HTTP API specification](https://www.murata.com/en-us/products/sensor/accel/overview/lineup/sca10h_11h/sca11h).

## Usage

It can be used from a command line:
```shell
bcg-hostless-api --node=192.168.0.XXX get-bcg-pars
```

Or inside an application:
```python
from SCA11H.commands.bcg.GetParams import GetParams
parameters = GetParams(host='192.168.0.XXX').run()
print(parameters)
```

