python-openevse-http 0.1.85__tar.gz → 0.1.86__tar.gz
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.
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/PKG-INFO +1 -1
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/openevsehttp/__main__.py +4 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/python_openevse_http.egg-info/PKG-INFO +1 -1
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/setup.py +1 -1
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/README.md +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/openevsehttp/__init__.py +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/openevsehttp/const.py +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/openevsehttp/exceptions.py +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/openevsehttp/websocket.py +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/python_openevse_http.egg-info/SOURCES.txt +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/python_openevse_http.egg-info/dependency_links.txt +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/python_openevse_http.egg-info/not-zip-safe +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/python_openevse_http.egg-info/requires.txt +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/python_openevse_http.egg-info/top_level.txt +0 -0
- {python_openevse_http-0.1.85 → python_openevse_http-0.1.86}/setup.cfg +0 -0
|
@@ -649,6 +649,10 @@ class OpenEVSE:
|
|
|
649
649
|
_LOGGER.debug("Non-semver firmware version detected.")
|
|
650
650
|
return False
|
|
651
651
|
|
|
652
|
+
def version_check(self, min_version: str, max_version: str = "") -> bool:
|
|
653
|
+
"""Unprotected function call for version checking."""
|
|
654
|
+
return self._version_check(min_version=min_version, max_version=max_version)
|
|
655
|
+
|
|
652
656
|
# HTTP Posting of grid voltage
|
|
653
657
|
async def grid_voltage(self, voltage: int | None = None) -> None:
|
|
654
658
|
"""Send pushed sensor data to grid voltage."""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|