2023-02-23 00:45:58 +01:00
|
|
|
from sqlalchemy import Column, Integer, ForeignKey
|
|
|
|
|
2023-10-04 09:50:10 +02:00
|
|
|
from platypush.common.db import is_defined
|
2023-02-23 00:45:58 +01:00
|
|
|
|
|
|
|
from .sensors import NumericSensor
|
|
|
|
|
|
|
|
|
2023-10-04 09:50:10 +02:00
|
|
|
if not is_defined('steps_sensor'):
|
2023-02-23 00:45:58 +01:00
|
|
|
|
|
|
|
class StepsSensor(NumericSensor):
|
|
|
|
"""
|
|
|
|
A sensor that measures the number of steps taken.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__tablename__ = 'steps_sensor'
|
|
|
|
|
|
|
|
id = Column(
|
|
|
|
Integer, ForeignKey(NumericSensor.id, ondelete='CASCADE'), primary_key=True
|
|
|
|
)
|
|
|
|
|
2023-10-04 09:50:10 +02:00
|
|
|
__table_args__ = {'extend_existing': True}
|
2023-02-23 00:45:58 +01:00
|
|
|
__mapper_args__ = {
|
|
|
|
'polymorphic_identity': __tablename__,
|
|
|
|
}
|