12 lines
348 B
Python
12 lines
348 B
Python
"""
|
|
PyBMA400 - Python driver for the Bosch BMA400 accelerometer.
|
|
|
|
This package provides a Python interface for the Bosch BMA400 accelerometer,
|
|
allowing reading of acceleration data and configuration of sensor parameters.
|
|
"""
|
|
|
|
from .driver import BMA400
|
|
from .watcher import detect_orientation_flip, is_landscape, is_inverted
|
|
|
|
__version__ = "0.1.1"
|