PyPlumIO 0.5.48__py3-none-any.whl → 0.5.49__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pyplumio/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.5.48'
21
- __version_tuple__ = version_tuple = (0, 5, 48)
20
+ __version__ = version = '0.5.49'
21
+ __version_tuple__ = version_tuple = (0, 5, 49)
@@ -72,7 +72,7 @@ class Device(ABC, EventManager):
72
72
  :param name: Name of the parameter
73
73
  :type name: str
74
74
  :param value: New value for the parameter
75
- :type value: int | float | bool | Literal["off", "on"]
75
+ :type value: int | float | bool | Literal["on", "off"]
76
76
  :param retries: Try setting parameter for this amount of
77
77
  times, defaults to 5
78
78
  :type retries: int, optional
@@ -104,7 +104,7 @@ class Device(ABC, EventManager):
104
104
  :param name: Name of the parameter
105
105
  :type name: str
106
106
  :param value: New value for the parameter
107
- :type value: int | float | bool | Literal["off", "on"]
107
+ :type value: int | float | bool | Literal["on", "off"]
108
108
  :param retries: Try setting parameter for this amount of
109
109
  times, defaults to 5
110
110
  :type retries: int, optional
@@ -2,7 +2,7 @@
2
2
 
3
3
  from pyplumio.const import UnitOfMeasurement
4
4
  from pyplumio.parameters.custom import CustomParameter, CustomParameters, Signature
5
- from pyplumio.parameters.ecomax import EcomaxNumberDescription
5
+ from pyplumio.parameters.ecomax import EcomaxNumberDescription, EcomaxSwitchDescription
6
6
 
7
7
 
8
8
  class EcoMAX860D3HB(CustomParameters):
@@ -13,6 +13,7 @@ class EcoMAX860D3HB(CustomParameters):
13
13
  signature = Signature(model="ecoMAX 860D3-HB", id=48)
14
14
 
15
15
  replacements = (
16
+ # Summer mode
16
17
  CustomParameter(
17
18
  original="summer_mode_disable_temp",
18
19
  replacement=EcomaxNumberDescription(name="__unknown_parameter_1"),
@@ -35,4 +36,45 @@ class EcoMAX860D3HB(CustomParameters):
35
36
  unit_of_measurement=UnitOfMeasurement.CELSIUS,
36
37
  ),
37
38
  ),
39
+ # Water heater
40
+ CustomParameter(
41
+ original="disable_pump_on_thermostat",
42
+ replacement=EcomaxNumberDescription(
43
+ name="water_heater_target_temp",
44
+ unit_of_measurement=UnitOfMeasurement.CELSIUS,
45
+ ),
46
+ ),
47
+ CustomParameter(
48
+ original="boiler_alert_temp",
49
+ replacement=EcomaxNumberDescription(
50
+ name="min_water_heater_target_temp",
51
+ unit_of_measurement=UnitOfMeasurement.CELSIUS,
52
+ ),
53
+ ),
54
+ CustomParameter(
55
+ original="max_feeder_temp",
56
+ replacement=EcomaxNumberDescription(
57
+ name="max_water_heater_target_temp",
58
+ unit_of_measurement=UnitOfMeasurement.CELSIUS,
59
+ ),
60
+ ),
61
+ CustomParameter(
62
+ original="water_heater_work_mode",
63
+ replacement=EcomaxNumberDescription(name="water_heater_feeding_extension"),
64
+ ),
65
+ CustomParameter(
66
+ original="external_boiler_temp",
67
+ replacement=EcomaxNumberDescription(name="water_heater_work_mode"),
68
+ ),
69
+ CustomParameter(
70
+ original="alert_notify",
71
+ replacement=EcomaxNumberDescription(
72
+ name="water_heater_hysteresis",
73
+ unit_of_measurement=UnitOfMeasurement.CELSIUS,
74
+ ),
75
+ ),
76
+ CustomParameter(
77
+ original="pump_hysteresis",
78
+ replacement=EcomaxSwitchDescription(name="water_heater_disinfection"),
79
+ ),
38
80
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyPlumIO
3
- Version: 0.5.48
3
+ Version: 0.5.49
4
4
  Summary: PyPlumIO is a native ecoNET library for Plum ecoMAX controllers.
5
5
  Author-email: Denis Paavilainen <denpa@denpa.pro>
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  pyplumio/__init__.py,sha256=3H5SO4WFw5mBTFeEyD4w0H8-MsNo93NyOH3RyMN7IS0,3337
2
2
  pyplumio/__main__.py,sha256=3IwHHSq-iay5FaeMc95klobe-xv82yydSKcBE7BFZ6M,500
3
- pyplumio/_version.py,sha256=I0fizQ2uqqRMTEIJ9RBykNQLkf-bZuhEQoSlnEwyBQ8,513
3
+ pyplumio/_version.py,sha256=u94vlma_2aQlFbifB92wUyxJiUQkXGcFrFlXXxDUYBA,513
4
4
  pyplumio/connection.py,sha256=9MCPb8W62uqCrzd1YCROcn9cCjRY8E65934FnJDF5Js,5902
5
5
  pyplumio/const.py,sha256=FxF97bl_GunYuB8Wo72zCzHtznRCM64ygC2qfaR3UyA,5684
6
6
  pyplumio/data_types.py,sha256=r-QOIZiIpBFo4kRongyu8n0BHTaEU6wWMTmNkWBNjq8,9223
@@ -10,7 +10,7 @@ pyplumio/protocol.py,sha256=UnrXDouo4dDi7hqwJYHoEAvCoYJs3PgP1DFBBwRqBrw,8427
10
10
  pyplumio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  pyplumio/stream.py,sha256=iCB-XlNXRRE0p7nstb1AkXwVDwcCsgym_ggB_IDiJc8,4926
12
12
  pyplumio/utils.py,sha256=D6_SJzYkFjXoUrlNPt_mIQAP8hjMU05RsTqlAFphj3Y,1205
13
- pyplumio/devices/__init__.py,sha256=bYewj3QFU6SV1eOMtgTy9f9a20Tr4kp6bTerE_URB84,7999
13
+ pyplumio/devices/__init__.py,sha256=frEoioDkJJuSGoBDlW42qxsRN_8lpzOvNJH56YQpd9E,7999
14
14
  pyplumio/devices/ecomax.py,sha256=-4rVUEg5MbzzoNXOFjp4cShsf4cqFh0mlIqlloZyWz4,16191
15
15
  pyplumio/devices/ecoster.py,sha256=X46ky5XT8jHMFq9sBW0ve8ZI_tjItQDMt4moXsW-ogY,307
16
16
  pyplumio/devices/mixer.py,sha256=q2UXMCQl6gueigHt-1Y1_P1sTEbBisZeQC75u2zAKmc,2729
@@ -32,7 +32,7 @@ pyplumio/parameters/ecomax.py,sha256=4UqI7cokCt7qS9Du4-7JgLhM7mhHCHt8SWPl_qncmXQ
32
32
  pyplumio/parameters/mixer.py,sha256=RjhfUU_62STyNV0Ud9A4G4FEvVwo02qGVl8h1QvqQXI,6646
33
33
  pyplumio/parameters/thermostat.py,sha256=-DK2Mb78CGrKmdhwAD0M3GiGJatczPnl1e2gVeT19tI,5070
34
34
  pyplumio/parameters/custom/__init__.py,sha256=tI_MXv0ExI8do7nPjA3oWiu0m0alGLlctggNNrgq09c,3240
35
- pyplumio/parameters/custom/ecomax_860d3_hb.py,sha256=BKXaGFeH4RXS6mMrM-l-ykKuBn51qSUniUik14k-A64,1274
35
+ pyplumio/parameters/custom/ecomax_860d3_hb.py,sha256=DgPm-o2iOxveLR-2KTrf5xC9KRVJxBHK_3cQV4UNsEs,2860
36
36
  pyplumio/structures/__init__.py,sha256=emZVH5OFgdTUPbEJoznMKitmK0nlPm0I4SmF86It1Do,1345
37
37
  pyplumio/structures/alerts.py,sha256=fglFcxHoZ3hZJscPHmbJJqTr2mH8YXRW0T18L4Dirds,3692
38
38
  pyplumio/structures/boiler_load.py,sha256=e-6itp9L6iJeeOyhSTiOclHLuYmqG7KkcepsHwJSQSI,894
@@ -59,8 +59,8 @@ pyplumio/structures/statuses.py,sha256=1h-EUw1UtuS44E19cNOSavUgZeAxsLgX3iS0eVC8p
59
59
  pyplumio/structures/temperatures.py,sha256=2VD3P_vwp9PEBkOn2-WhifOR8w-UYNq35aAxle0z2Vg,2831
60
60
  pyplumio/structures/thermostat_parameters.py,sha256=st3x3HkjQm3hqBrn_fpvPDQu8fuc-Sx33ONB19ViQak,3007
61
61
  pyplumio/structures/thermostat_sensors.py,sha256=rO9jTZWGQpThtJqVdbbv8sYMYHxJi4MfwZQza69L2zw,3399
62
- pyplumio-0.5.48.dist-info/licenses/LICENSE,sha256=m-UuZFjXJ22uPTGm9kSHS8bqjsf5T8k2wL9bJn1Y04o,1088
63
- pyplumio-0.5.48.dist-info/METADATA,sha256=nkscdsY-xvR3T_hRTZbLp8SCQyv1yrt3kloOOCvWgwA,5611
64
- pyplumio-0.5.48.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
65
- pyplumio-0.5.48.dist-info/top_level.txt,sha256=kNBz9UPPkPD9teDn3U_sEy5LjzwLm9KfADCXtBlbw8A,9
66
- pyplumio-0.5.48.dist-info/RECORD,,
62
+ pyplumio-0.5.49.dist-info/licenses/LICENSE,sha256=m-UuZFjXJ22uPTGm9kSHS8bqjsf5T8k2wL9bJn1Y04o,1088
63
+ pyplumio-0.5.49.dist-info/METADATA,sha256=dmnFwYN07jJBW5VBjNpme32Y7DbbAp1M9FPDn4AuRJA,5611
64
+ pyplumio-0.5.49.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
65
+ pyplumio-0.5.49.dist-info/top_level.txt,sha256=kNBz9UPPkPD9teDn3U_sEy5LjzwLm9KfADCXtBlbw8A,9
66
+ pyplumio-0.5.49.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.4.0)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5