Skip to content

Commit

Permalink
V2025.01.03b3
Browse files Browse the repository at this point in the history
  • Loading branch information
petergridge authored Jan 9, 2025
1 parent c1636eb commit b9d6631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/irrigationprogram/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ async def async_turn_on(self, **kwargs):
# raise event when the program starts
event_data = {
"action": "program_turned_on",
"device_id": self._device_id,
"device_id": self.entity_id,
"scheduled": self._scheduled,
"program": self.name,
}
Expand Down Expand Up @@ -745,7 +745,7 @@ async def async_turn_on(self, **kwargs):

event_data = {
"action": "program_turned_off",
"device_id": self._device_id,
"device_id": self.entity_id,
"program": self.name,
}
self._hass.bus.async_fire("irrigation_event", event_data)
Expand Down

0 comments on commit b9d6631

Please sign in to comment.