Unignore Parameters¶
The integration maintains lists of parameters that are filtered out when entities are created. This filtering provides a cleaner user experience by hiding technical or rarely-used parameters.
For advanced users who need access to these hidden parameters, the unignore mechanism allows you to make specific parameters visible as entities.
Note
For definitions of terms like Parameter, Channel, and Paramset (VALUES, MASTER), see the Glossary.
Before You Start¶
Please understand the following:
- Use at your own risk
- Excessive writing of
MASTERparamset parameters can damage devices - Entity customization (names, icons) must be done via Home Assistant
Configuration via UI¶
- Go to Settings → Devices & Services
- Click on Homematic(IP) Local → Configure
- Navigate to the Interface page
- Enable Advanced configuration and proceed
- Add parameters to the un_ignore list
- The integration reloads automatically after saving
Pattern Format¶
| Component | Description | Example |
|---|---|---|
DEVICE_TYPE | Device model or * for all | HmIP-eTRV-2 |
CHANNEL | Channel number or * for all | 0, 1, * |
PARAMETER | Parameter name | LOW_BAT |
Examples¶
| Pattern | Effect |
|---|---|
HmIP-eTRV-2:0:LOW_BAT | Show LOW_BAT on channel 0 of HmIP-eTRV-2 devices |
HmIP-SWDO:1:ERROR | Show ERROR on channel 1 of HmIP-SWDO devices |
*:*:RSSI_PEER | Show RSSI_PEER on all channels of all devices |
*:0:OPERATING_VOLTAGE | Show OPERATING_VOLTAGE on channel 0 of all devices |
Finding Parameter Names¶
To find which parameters a device has:
- Export device definition:
-
Check the CCU WebUI → Device settings → show technical data
-
Use the get_paramset action:
action: homematicip_local.get_paramset
data:
device_id: YOUR_DEVICE_ID
channel: 0
paramset_key: VALUES
See Also¶
- Device Support - How devices are supported
- Actions Reference - Raw device access
- Glossary - Terminology reference