Skip to content

Commit

Permalink
Document plant integration development state (home-assistant#125590)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare authored Sep 9, 2024
1 parent 3889482 commit d7caace
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion homeassistant/components/plant/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
"""Support for monitoring plants."""
"""Support for monitoring plants.
DEVELOPMENT OF THE PLANT INTEGRATION IS FROZEN
PENDING A DESIGN EVALUATION.
"""

from collections import deque
from contextlib import suppress
Expand Down Expand Up @@ -128,6 +132,9 @@ class Plant(Entity):
It also checks the measurements against
configurable min and max values.
DEVELOPMENT OF THE PLANT INTEGRATION IS FROZEN
PENDING A DESIGN EVALUATION.
"""

_attr_should_poll = False
Expand Down Expand Up @@ -363,6 +370,9 @@ class DailyHistory:
"""Stores one measurement per day for a maximum number of days.
At the moment only the maximum value per day is kept.
DEVELOPMENT OF THE PLANT INTEGRATION IS FROZEN
PENDING A DESIGN EVALUATION.
"""

def __init__(self, max_length):
Expand Down

0 comments on commit d7caace

Please sign in to comment.