platypush/platypush/entities/batteries.py

28 lines
751 B
Python
Raw Normal View History

2022-10-29 13:38:42 +02:00
from sqlalchemy import Column, Integer, ForeignKey
from .devices import entity_types_registry
from .sensors import NumericSensor
if not entity_types_registry.get('Battery'):
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__,
}
entity_types_registry['Battery'] = Battery
else:
Battery = entity_types_registry['Battery']