Metadata-Version: 2.1
Name: spraymistf638
Version: 0.1.3
Summary: 
Home-page: https://github.com/paulokow/Spray-Mist-F638-driver-bluepy
License: Apache-2.0
Author: Pawel Kowalik
Author-email: github-pub@paulonet.eu
Requires-Python: >=3.6.2,<4.0.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
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: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Hardware :: Hardware Drivers
Requires-Dist: bluepy (>=1.3.0)
Project-URL: Repository, https://github.com/paulokow/Spray-Mist-F638-driver-bluepy
Description-Content-Type: text/markdown

# Python Library for controlling of Spray-Mist-F638

[![test](https://github.com/paulokow/Spray-Mist-F638-driver-bluepy/actions/workflows/test.yml/badge.svg?branch=master&event=push)](https://github.com/paulokow/Spray-Mist-F638-driver-bluepy/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/paulokow/Spray-Mist-F638-driver-bluepy/branch/master/graph/badge.svg)](https://codecov.io/gh/paulokow/Spray-Mist-F638-driver-bluepy)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

## Usage example

```python
from spraymistf638.driver import (
  SprayMistF638,
  WorkingMode,
  RunningMode,
  SprayMistF638Exception
)

device = SprayMistF638("11:11:11:11:11:11")
if device.connect():
  work_mode = device.working_mode
  run_mode = device.running_mode
  device.disconnect()
```

