tinytoolslib 0.4.0__tar.gz → 0.4.1__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.
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/PKG-INFO +1 -1
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/pyproject.toml +1 -1
- tinytoolslib-0.4.1/tinytoolslib/__version__.py +1 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib/models.py +4 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib.egg-info/PKG-INFO +1 -1
- tinytoolslib-0.4.0/tinytoolslib/__version__.py +0 -1
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/README.md +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/setup.cfg +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib/__init__.py +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib/constants.py +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib/discovery.py +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib/exceptions.py +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib/flash.py +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib/parsers.py +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib/requests.py +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib.egg-info/SOURCES.txt +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib.egg-info/dependency_links.txt +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib.egg-info/requires.txt +0 -0
- {tinytoolslib-0.4.0 → tinytoolslib-0.4.1}/tinytoolslib.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tinytoolslib
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Set of tools for use with Tinycontrol devices like LK2.X, LK3.X, LK4.X or tcPDU.
|
|
5
5
|
Author-email: Bartek Barszczewski <tinycontrol.software@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.4.1'
|
|
@@ -1242,6 +1242,10 @@ class LK_HW_40(DeviceModel):
|
|
|
1242
1242
|
"netMac": {"name": "mac", "format": str},
|
|
1243
1243
|
"softwareVersion": {"name": "software_version", "format": str},
|
|
1244
1244
|
"hardwareVersion": {"name": "hardware_version", "format": str},
|
|
1245
|
+
"pm1": {"name": "pm1.0", "format": float},
|
|
1246
|
+
"pm2": {"name": "pm2.5", "format": float},
|
|
1247
|
+
"pm4": {"name": "pm4.0", "format": float},
|
|
1248
|
+
"pm10": {"name": "pm10.0", "format": float},
|
|
1245
1249
|
}
|
|
1246
1250
|
parsers: ClassVar[List[str]] = ["_parse_outs"]
|
|
1247
1251
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tinytoolslib
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Set of tools for use with Tinycontrol devices like LK2.X, LK3.X, LK4.X or tcPDU.
|
|
5
5
|
Author-email: Bartek Barszczewski <tinycontrol.software@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '0.4.0'
|
|
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
|
|
File without changes
|
|
File without changes
|