platypush/platypush/entities/heart.py

25 lines
593 B
Python

from sqlalchemy import Column, Integer, ForeignKey
from platypush.common.db import is_defined
from .sensors import NumericSensor
if not is_defined('heart_rate_sensor'):
class HeartRateSensor(NumericSensor):
"""
A sensor that measures the heart rate.
"""
__tablename__ = 'heart_rate_sensor'
id = Column(
Integer, ForeignKey(NumericSensor.id, ondelete='CASCADE'), primary_key=True
)
__table_args__ = {'extend_existing': True}
__mapper_args__ = {
'polymorphic_identity': __tablename__,
}