I tried installing the newest quirk for Danfoss ally from https://github.com/zigpy/zha-device-handlers/blob/23a166902e50d5c32019e0d4d32a968715041bb6/zhaquirks/danfoss/thermostat.py by putting it in a directory called quirks under my config dir. This quirk has the following manufacturer attributes:
0x4000: ("etrv_open_windows_detection", t.enum8),
0x4003: ("external_open_windows_detected", t.Bool),
0x4010: ("exercise_day_of_week", t.enum8),
0x4011: ("exercise_trigger_time", t.uint16_t),
0x4012: ("mounting_mode_active", t.Bool),
0x4013: ("mounting_mode_control", t.Bool),
0x4014: ("orientation", t.Bool),
0x4015: ("external_measured_room_sensor", t.int16s),
0x4016: ("radiator_covered", t.Bool),
0x4020: ("control_algorithm_scale_factor", t.uint8_t),
0x4030: ("heat_available", t.Bool),
0x4031: ("heat_supply_request", t.Bool),
0x4032: ("load_balancing_enable", t.Bool),
0x4040: ("load_radiator_room_mean", t.uint16_t),
0x404A: ("load_estimate_radiator", t.uint16_t),
0x404B: ("regulation_setPoint_offset", t.int8s),
0x404C: ("adaptation_run_control", t.enum8),
0x404D: ("adaptation_run_status", t.bitmap8),
0x404E: ("adaptation_run_settings", t.bitmap8),
0x404F: ("preheat_status", t.Bool),
0x4050: ("preheat_time", t.uint32_t),
0x4051: ("window_open_feature_on_off", t.Bool),
0xFFFD: ("cluster_revision", t.uint16_t),
However they do not appear in home assistant after installing the quirk. Am I missing something or should all parameters from a quirk be visible in home assistant?