Skip to content

Commit

Permalink
cm pelet set
Browse files Browse the repository at this point in the history
  • Loading branch information
Tihomir Heidelberg committed Dec 26, 2021
1 parent 432767e commit 6d9b4de
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 8 deletions.
2 changes: 1 addition & 1 deletion custom_components/peltec/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "peltec",
"name": "Centrometal Boiler System integration",
"version": "0.0.5",
"version": "0.0.6",
"config_flow": true,
"documentation": "https://github.com/9a4gl/hass-peltec",
"issue_tracker": "https://github.com/9a4gl/hass-peltec/issues",
Expand Down
56 changes: 49 additions & 7 deletions custom_components/peltec/sensors/generic_sensors_cm_pelet_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,55 @@
"C2B_onOff": ["", "mdi:information", None, "Circuit 2 State"],
"B_fan": ["", "mdi:fan", None, "Heater Fan State"],
"B_gri": ["", "mdi:fire", None, "Heater State"],
"CNT_0": [TIME_MINUTES, "mdi:fire", None, "Heater State Counter"],
"CNT_3": ["", "mdi:fire", None, "Heater Start Counter (?)"],
"CNT_4": [TIME_MINUTES, "mdi:fan", None, "Heater Fan Counter"],
"CNT_5": [TIME_MINUTES, "mdi:fire", None, "Heater State Counter"],
"CNT_6": ["", "mdi:fire", None, "Heater ukljuèenje (?)"],
"CNT_7": [TIME_MINUTES, "mdi:information", None, "Pellet Transporter Counter"],
"CNT_8": [TIME_MINUTES, "mdi:pump", None, "Boiler Pump Counter"],
"CNT_0": [TIME_MINUTES, "mdi:timer", None, "Burner Work"],
"CNT_1": [
TIME_MINUTES,
"mdi:timer",
None,
"Working DHW only",
],
"CNT_2": [
TIME_MINUTES,
"mdi:timer",
None,
"Freez protection",
],
"CNT_3": [
"",
"mdi:counter",
None,
"Number of Burner Start",
],
"CNT_4": [
TIME_MINUTES,
"mdi:timer",
None,
"Fan Working Time",
],
"CNT_5": [
TIME_MINUTES,
"mdi:timer",
None,
"Electric Heater Working Time",
],
"CNT_6": [
"",
"mdi:counter",
None,
"Number of Electric Heater Start",
],
"CNT_7": [
TIME_MINUTES,
"mdi:timer",
None,
"Vacuum Turbine Working Time",
],
"CNT_8": [
TIME_MINUTES,
"mdi:timer",
None,
"Boiler pump",
],
}

CM_PELET_SET_GENERIC_SENSORS = {
Expand Down

0 comments on commit 6d9b4de

Please sign in to comment.