Source code for adafruit_featherwing.tempmotion_featherwing

# The MIT License (MIT)
#
# Copyright (c) 2019 Melissa LeBlanc-Williams for Adafruit Industries LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_featherwing.tempmotion_featherwing`
====================================================

Helper for using the `Adafruit ADXL343 + ADT7410 Sensor FeatherWing
<https://www.adafruit.com/product/4147>`_.

* Author(s): Melissa LeBlanc-Williams
"""

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_FeatherWing.git"

import board
import adafruit_adxl34x
import adafruit_adt7410

[docs]class TempMotionFeatherWing: """Class helper representing an `Adafruit ADXL343 + ADT7410 Sensor FeatherWing <https://www.adafruit.com/product/4147>`_. Automatically uses the feather's I2C bus.""" def __init__(self, adxl343_address=0x53, adt7410_address=0x48, i2c=None): if i2c is None: i2c = board.I2C() self._adxl343 = adafruit_adxl34x.ADXL345(i2c, address=adxl343_address) self._adt7410 = adafruit_adt7410.ADT7410(i2c, address=adt7410_address) @property def temperature(self): """Returns ADT7410 Temperature""" return self._adt7410.temperature @property def status(self): """Returns the ADT7410 Status""" return self._adt7410.status @property def configuration(self): """Returns the ADT7410 Configuration""" return self._adt7410.configuration @configuration.setter def configuration(self, val): self._adt7410.configuration = val @property def acceleration(self): """Returns the ADXL343 Acceleration""" return self._adxl343.acceleration @property def events(self): """Returns the ADXL343 Enabled Events""" return self._adxl343.events
[docs] def enable_motion_detection(self, **kwargs): """Enable motion detection""" self._adxl343.enable_motion_detection(**kwargs)
[docs] def disable_motion_detection(self): """Disable motion detection""" self._adxl343.disable_motion_detection()
[docs] def enable_freefall_detection(self, **kwargs): """Enable freefall detection""" self._adxl343.enable_freefall_detection(**kwargs)
[docs] def disable_freefall_detection(self): """Disable freefall detection""" self._adxl343.disable_freefall_detection()
[docs] def enable_tap_detection(self, **kwargs): """Enable freefall detection""" self._adxl343.enable_tap_detection(**kwargs)
[docs] def disable_tap_detection(self): """Disable freefall detection""" self._adxl343.disable_tap_detection()
@property def data_rate(self): """The data rate of the sensor.""" return self._adxl343.data_rate @data_rate.setter def data_rate(self, val): self._adxl343.data_rate = val @property def range(self): """The measurement range of the sensor.""" return self._adxl343.range @range.setter def range(self, val): self._adxl343.range = val