python-omnilogic-local 0.14.0__py3-none-any.whl → 0.14.2__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.
- pyomnilogic_local/cli.py +22 -23
- pyomnilogic_local/models/filter_diagnostics.py +1 -1
- {python_omnilogic_local-0.14.0.dist-info → python_omnilogic_local-0.14.2.dist-info}/METADATA +1 -1
- {python_omnilogic_local-0.14.0.dist-info → python_omnilogic_local-0.14.2.dist-info}/RECORD +7 -7
- {python_omnilogic_local-0.14.0.dist-info → python_omnilogic_local-0.14.2.dist-info}/LICENSE +0 -0
- {python_omnilogic_local-0.14.0.dist-info → python_omnilogic_local-0.14.2.dist-info}/WHEEL +0 -0
- {python_omnilogic_local-0.14.0.dist-info → python_omnilogic_local-0.14.2.dist-info}/entry_points.txt +0 -0
pyomnilogic_local/cli.py
CHANGED
@@ -18,44 +18,43 @@ RELAY_SYSTEM_ID = 13
|
|
18
18
|
|
19
19
|
|
20
20
|
async def async_main() -> None:
|
21
|
-
|
22
|
-
mspconfig: MSPConfig
|
23
|
-
telem: Telemetry
|
21
|
+
filter_diags: FilterDiagnostics # pylint: disable=unused-variable # noqa: F842
|
22
|
+
mspconfig: MSPConfig
|
23
|
+
telem: Telemetry
|
24
24
|
|
25
25
|
omni = OmniLogicAPI(os.environ.get("OMNILOGIC_HOST", "127.0.0.1"), 10444, 5.0)
|
26
|
+
get_raw = os.environ.get("OMNILOGIC_RAW", False)
|
26
27
|
|
27
28
|
# Some basic calls to run some testing against the library
|
28
29
|
|
29
|
-
# Fetch the MSPConfig data
|
30
|
-
mspconfig = await omni.async_get_config()
|
31
|
-
# Fetch the MSPConfig data as the raw XML
|
32
|
-
# mspconfig = await omni.async_get_config(raw=True)
|
33
|
-
print(mspconfig)
|
30
|
+
# Fetch the MSPConfig data
|
31
|
+
mspconfig = await omni.async_get_config(raw=get_raw) # pylint: disable=unexpected-keyword-arg
|
34
32
|
|
35
|
-
# Fetch the current telemetry data
|
36
|
-
telem = await omni.async_get_telemetry()
|
37
|
-
# Fetch the current telemetry data as the raw XML
|
38
|
-
# telem = await omni.async_get_telemetry(raw=True)
|
39
|
-
print(telem)
|
33
|
+
# Fetch the current telemetry data
|
34
|
+
telem = await omni.async_get_telemetry(raw=get_raw) # pylint: disable=unexpected-keyword-arg
|
40
35
|
|
41
36
|
# Fetch a list of current alarms
|
42
37
|
# print(await omni.async_get_alarm_list())
|
43
38
|
|
44
39
|
# Fetch diagnostic data for a filter pump
|
45
|
-
|
46
|
-
|
40
|
+
# filter_diags = await omni.async_get_filter_diagnostics(POOL_ID, PUMP_EQUIPMENT_ID, raw=get_raw)
|
41
|
+
|
42
|
+
print(mspconfig)
|
43
|
+
print(telem)
|
44
|
+
# print(filter_diags)
|
45
|
+
|
47
46
|
# Decode the filter display revision
|
48
|
-
# b1=chr(
|
49
|
-
# b2=chr(
|
50
|
-
# b3=chr(
|
51
|
-
# b4=chr(
|
47
|
+
# b1=chr(filter_diags.get_param_by_name("DisplayFWRevisionB1"))
|
48
|
+
# b2=chr(filter_diags.get_param_by_name("DisplayFWRevisionB2"))
|
49
|
+
# b3=chr(filter_diags.get_param_by_name("DisplayFWRevisionB3"))
|
50
|
+
# b4=chr(filter_diags.get_param_by_name("DisplayFWRevisionB4"))
|
52
51
|
# b5 and b6 are whitespace and a null terminator
|
53
|
-
# b5=chr(
|
54
|
-
# b6=chr(
|
52
|
+
# b5=chr(filter_diags.get_param_by_name("DisplayFWRevisionB5"))
|
53
|
+
# b6=chr(filter_diags.get_param_by_name("DisplayFWRevisionB6"))
|
55
54
|
# print(f"{b1}{b2}.{b3}.{b4}")
|
56
55
|
# Decode the filter power consumption (don't do this, it's returned already decoded in the telemetry)
|
57
|
-
# p1=
|
58
|
-
# p2=
|
56
|
+
# p1=filter_diags.get_param_by_name("PowerMSB")
|
57
|
+
# p2=filter_diags.get_param_by_name("PowerLSB")
|
59
58
|
# The f-string below converts the bytes to hex and displays them. Just get this value from the telemetry, it's easier
|
60
59
|
# print(f"{p1:x}{p2:x}")
|
61
60
|
|
@@ -31,7 +31,7 @@ class FilterDiagnostics(BaseModel):
|
|
31
31
|
xml,
|
32
32
|
# Some things will be lists or not depending on if a pool has more than one of that piece of equipment. Here we are coercing
|
33
33
|
# everything that *could* be a list into a list to make the parsing more consistent.
|
34
|
-
force_list=("Parameter"
|
34
|
+
force_list=("Parameter"),
|
35
35
|
)
|
36
36
|
# The XML nests the Parameter entries under a Parameters entry, this is annoying to work with. Here we are adjusting the data to
|
37
37
|
# remove that extra level in the data
|
{python_omnilogic_local-0.14.0.dist-info → python_omnilogic_local-0.14.2.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: python-omnilogic-local
|
3
|
-
Version: 0.14.
|
3
|
+
Version: 0.14.2
|
4
4
|
Summary: A library for local control of Hayward OmniHub/OmniLogic pool controllers using their local API
|
5
5
|
Home-page: https://github.com/cryptk/python-omnilogic-local
|
6
6
|
License: Apache-2.0
|
@@ -1,10 +1,10 @@
|
|
1
1
|
pyomnilogic_local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
pyomnilogic_local/api.py,sha256=3Xdd1ouAcSrSiLvmQnwrJl_3hgRl6KiloBXp0_JDVkE,28134
|
3
|
-
pyomnilogic_local/cli.py,sha256=
|
3
|
+
pyomnilogic_local/cli.py,sha256=RwzKydC612-ay6TGrlSg8UEQPjYIlylxjf11S062bsk,3931
|
4
4
|
pyomnilogic_local/exceptions.py,sha256=7-EYTP-_VgGrA8WWGwQPUE1NGjJEDWB-ovyvSM2iaNY,164
|
5
5
|
pyomnilogic_local/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pyomnilogic_local/models/const.py,sha256=j4HSiPJW5If296yJ-AiIsBI9EdlckF4QkVFIpTLb5C4,51
|
7
|
-
pyomnilogic_local/models/filter_diagnostics.py,sha256=
|
7
|
+
pyomnilogic_local/models/filter_diagnostics.py,sha256=ELj-M4NCFhxWg-4ghpAPidlE5u-jNY4nBplyLv5qozU,1567
|
8
8
|
pyomnilogic_local/models/leadmessage.py,sha256=9r6PbIHHzD0tyeKiFUve3WLcjS8uL2Gj6r_96X7l5H8,407
|
9
9
|
pyomnilogic_local/models/mspconfig.py,sha256=GgkLvpKVlcZdeWFjd56AK_6DQXIO31Z1yHDGx2pLEj8,10424
|
10
10
|
pyomnilogic_local/models/telemetry.py,sha256=86WPCmemNLwXAg-dHp1EvgpJzqQIHfwkNtO1eGF4eZk,10629
|
@@ -12,8 +12,8 @@ pyomnilogic_local/models/util.py,sha256=3Qch98NOl5eO-KIOUBnE9ar86MlzbZ0g2LRApMgj
|
|
12
12
|
pyomnilogic_local/protocol.py,sha256=1Z7U70mV0sUlqrp3XK1Fvj6NuChRKLz0ejzKaQLSPE8,10194
|
13
13
|
pyomnilogic_local/types.py,sha256=km_tagtJ43m4_cIynalis7oiDa1LUUR-ta5B9HQUG1Q,7264
|
14
14
|
pyomnilogic_local/util.py,sha256=agbRBKnecrYycC9iUmo1aJDjbVg9VxHyq4QY0D8-bfA,359
|
15
|
-
python_omnilogic_local-0.14.
|
16
|
-
python_omnilogic_local-0.14.
|
17
|
-
python_omnilogic_local-0.14.
|
18
|
-
python_omnilogic_local-0.14.
|
19
|
-
python_omnilogic_local-0.14.
|
15
|
+
python_omnilogic_local-0.14.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
16
|
+
python_omnilogic_local-0.14.2.dist-info/METADATA,sha256=OZwrsm0Et9d3RuLqcz_xGNaT_A1aPO_95TB779QEhwU,2939
|
17
|
+
python_omnilogic_local-0.14.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
18
|
+
python_omnilogic_local-0.14.2.dist-info/entry_points.txt,sha256=PUvdumqSijeB0dHH_s5oE2TnWtPWdJSNpSOsn8yTtOo,56
|
19
|
+
python_omnilogic_local-0.14.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{python_omnilogic_local-0.14.0.dist-info → python_omnilogic_local-0.14.2.dist-info}/entry_points.txt
RENAMED
File without changes
|