platypush/platypush/entities/batteries.py

25 lines
635 B
Python
Raw Normal View History

2022-10-29 13:38:42 +02:00
from sqlalchemy import Column, Integer, ForeignKey
from platypush.common.db import Base
2022-10-29 13:38:42 +02:00
from .sensors import NumericSensor
if 'battery' not in Base.metadata:
2022-10-29 13:38:42 +02:00
class Battery(NumericSensor):
__tablename__ = 'battery'
def __init__(
self, *args, unit: str = '%', min: float = 0, max: float = 100, **kwargs
2022-10-29 13:38:42 +02:00
):
super().__init__(*args, min=min, max=max, unit=unit, **kwargs)
2022-10-29 13:38:42 +02:00
id = Column(
Integer, ForeignKey(NumericSensor.id, ondelete='CASCADE'), primary_key=True
)
__mapper_args__ = {
'polymorphic_identity': __tablename__,
}