Recognise a solid-fuel room heater as its own heating archetype 🟩

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Khalim Conn-Kowlessar 2026-06-30 14:44:30 +00:00
parent d51154fe73
commit f097561160
2 changed files with 2 additions and 0 deletions

View file

@ -109,6 +109,7 @@ _MAIN_HEATING_CODES: dict[str, int] = {
"Electric storage heaters, fan": 404,
"Direct-acting electric": 191,
"Electric room heaters": 691,
"Solid fuel room heater, closed": 633,
}

View file

@ -25,4 +25,5 @@ class MainHeatingSystemType(Enum):
ELECTRIC_STORAGE_FAN = "Electric storage heaters, fan"
DIRECT_ELECTRIC = "Direct-acting electric"
ELECTRIC_ROOM_HEATERS = "Electric room heaters"
SOLID_FUEL_ROOM_HEATER_CLOSED = "Solid fuel room heater, closed"
UNKNOWN = "Unknown"