Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions contrib/etc/ebusd/mqtt-hassio.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ filter-seen = 5
#filter-non-circuit =
# include only messages having the specified name (partial match, alternatives and wildcard supported).
# HA integration: filter to some useful names for monitoring the heating circuit
filter-name = status|temp|humidity|yield|count|energy|power|runtime|hours|starts|mode|curve|^load$|^party$|sensor|timer
filter-name = status|temp|humidity|yield|count|energy|power|runtime|hours|starts|mode|curve|^load$|^party$|sensor|timer|co2|air|flow|filter|inlet|exhaust|pressure|reset
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where are the CSVs matching these changes?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@john30 The files are waiting in this PR.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@john30 would it make sense to merge this one, since the commit with HRU units was merged?

# exclude messages having the specified name (partial match, alternatives and wildcard supported).
#filter-non-name =
# include only messages having the specified level (partial match, alternatives and wildcard supported).
Expand Down Expand Up @@ -172,34 +172,39 @@ type_switch-names = type_topic,type_class,type_state,type_sub
# matches at all, the variable(s) are set to the empty string.
# HA integration: the mapping list for (potentially) writable number entities field type, message name+field name, and unit.
type_switch-w-number =
number,temperature, = temp|,°C$
number,temperature, = temp|,K$
number,temperature, = temp|,°C$|,K$
number,, = integral|,°min$
number,power_factor, = power*%%
number,power, = power|,kW$|,W$
number,voltage, = volt|,V$
number,current, = current,|currentvalue,|,A$
number,pressure, = bar$
number,gas, = gas*/min$
number,volume, = m³$
number,volume_flow_rate, = m³/h$
number,humidity, = humid*%%$
number,, = curve,|curvevalue,
number,, =


# HA integration: the mapping list for numeric sensor entities field type, message name+field name, and unit.
type_switch-number =
sensor,,total_increasing = poweron|count,|countvalue,
sensor,temperature,measurement = temp|,°C$
sensor,temperature,measurement = temp|,K$
sensor,temperature,measurement = temp|,°C$|,K$
sensor,power_factor,measurement = power*%%
sensor,power,measurement = power|,kW$|,W$
sensor,voltage,measurement = volt|,V$
sensor,current,measurement = current,|currentvalue,|,A$
sensor,,measurement = integral|,°min$
sensor,energy,total_increasing = energy|,Wh$
sensor,yield,total_increasing = total*,Wh$
sensor,,total_increasing = hours|,h$
sensor,duration,total_increasing = hours|days|,h$
sensor,,total_increasing = starts*,$
sensor,pressure,measurement = bar$
sensor,pressure,measurement = bar$|Pa$
sensor,gas,measurement = gas*/min$
sensor,volume,total_increasing = total*,m³$
sensor,volume,measurement = m³$
sensor,volume_flow_rate,measurement = m³/h$
sensor,carbon_dioxide,measurement = CO2*,ppm$
sensor,humidity,measurement = humid*%%$
sensor,, =

Expand Down