mx-remote 2.0.0__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.
- mx_remote/Interface.py +1656 -0
- mx_remote/Uid.py +137 -0
- mx_remote/__init__.py +12 -0
- mx_remote/api/BayConfig.py +53 -0
- mx_remote/api/__init__.py +8 -0
- mx_remote/const.py +20 -0
- mx_remote/main.py +117 -0
- mx_remote/proto/BayConfig.py +104 -0
- mx_remote/proto/Constants.py +382 -0
- mx_remote/proto/Data.py +142 -0
- mx_remote/proto/Factory.py +168 -0
- mx_remote/proto/FrameAmpDolbySettings.py +51 -0
- mx_remote/proto/FrameAmpZoneSettings.py +123 -0
- mx_remote/proto/FrameBase.py +80 -0
- mx_remote/proto/FrameBayConfig.py +47 -0
- mx_remote/proto/FrameBayConfigSecondary.py +43 -0
- mx_remote/proto/FrameBayHide.py +53 -0
- mx_remote/proto/FrameBayStatus.py +51 -0
- mx_remote/proto/FrameConnectStatus.py +38 -0
- mx_remote/proto/FrameDiscover.py +21 -0
- mx_remote/proto/FrameEDID.py +20 -0
- mx_remote/proto/FrameEDIDProfile.py +24 -0
- mx_remote/proto/FrameFilterStatus.py +39 -0
- mx_remote/proto/FrameFirmwareVersion.py +40 -0
- mx_remote/proto/FrameHeader.py +92 -0
- mx_remote/proto/FrameHello.py +77 -0
- mx_remote/proto/FrameLinks.py +45 -0
- mx_remote/proto/FrameMeshOperation.py +66 -0
- mx_remote/proto/FrameMirrorStatus.py +49 -0
- mx_remote/proto/FrameNetworkStatus.py +163 -0
- mx_remote/proto/FramePDUState.py +71 -0
- mx_remote/proto/FramePowerChange.py +38 -0
- mx_remote/proto/FrameRCAction.py +50 -0
- mx_remote/proto/FrameRCIr.py +17 -0
- mx_remote/proto/FrameRCKey.py +40 -0
- mx_remote/proto/FrameReboot.py +26 -0
- mx_remote/proto/FrameRoutingChange.py +66 -0
- mx_remote/proto/FrameSetName.py +27 -0
- mx_remote/proto/FrameSignalStatus.py +46 -0
- mx_remote/proto/FrameSignalStatusNew.py +285 -0
- mx_remote/proto/FrameSysTemperature.py +50 -0
- mx_remote/proto/FrameTXRCAction.py +58 -0
- mx_remote/proto/FrameTopology.py +36 -0
- mx_remote/proto/FrameV2IPDeviceConfiguration.py +86 -0
- mx_remote/proto/FrameV2IPLink.py +16 -0
- mx_remote/proto/FrameV2IPSetMaster.py +16 -0
- mx_remote/proto/FrameV2IPSourceSwitch.py +84 -0
- mx_remote/proto/FrameV2IPSources.py +43 -0
- mx_remote/proto/FrameV2IPStats.py +55 -0
- mx_remote/proto/FrameV2IPStreamDetails.py +46 -0
- mx_remote/proto/FrameVolume.py +62 -0
- mx_remote/proto/FrameVolumeDown.py +28 -0
- mx_remote/proto/FrameVolumeSet.py +81 -0
- mx_remote/proto/FrameVolumeUp.py +28 -0
- mx_remote/proto/LinkConfig.py +121 -0
- mx_remote/proto/PDUState.py +95 -0
- mx_remote/proto/Svd.py +69 -0
- mx_remote/proto/V2IPConfig.py +71 -0
- mx_remote/proto/V2IPStats.py +126 -0
- mx_remote/proto/__init__.py +8 -0
- mx_remote/proto/svd.csv +157 -0
- mx_remote/remote/Bay.py +923 -0
- mx_remote/remote/ConnectionAsync.py +132 -0
- mx_remote/remote/Device.py +530 -0
- mx_remote/remote/Link.py +187 -0
- mx_remote/remote/PDU.py +152 -0
- mx_remote/remote/Remote.py +300 -0
- mx_remote/remote/State.py +28 -0
- mx_remote/remote/V2IP.py +83 -0
- mx_remote-2.0.0.dist-info/METADATA +90 -0
- mx_remote-2.0.0.dist-info/RECORD +74 -0
- mx_remote-2.0.0.dist-info/WHEEL +4 -0
- mx_remote-2.0.0.dist-info/entry_points.txt +2 -0
- mx_remote-2.0.0.dist-info/licenses/LICENSE +11 -0
mx_remote/remote/V2IP.py
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
##################################################
|
|
2
|
+
## MX Remote Python Interface ##
|
|
3
|
+
## ##
|
|
4
|
+
## author: Lars Op den Kamp (lars@opdenkamp.eu) ##
|
|
5
|
+
## copyright (c) 2024 Op den Kamp IT Solutions ##
|
|
6
|
+
##################################################
|
|
7
|
+
|
|
8
|
+
import logging
|
|
9
|
+
from ..Interface import DeviceV2IPDetailsBase, V2IPStreamSource
|
|
10
|
+
|
|
11
|
+
_LOGGER = logging.getLogger(__name__)
|
|
12
|
+
|
|
13
|
+
class DeviceV2IPDetails(DeviceV2IPDetailsBase):
|
|
14
|
+
def __init__(self) -> None:
|
|
15
|
+
self._video = None
|
|
16
|
+
self._audio = None
|
|
17
|
+
self._anc = None
|
|
18
|
+
self._arc = None
|
|
19
|
+
self._tx_rate = None
|
|
20
|
+
|
|
21
|
+
@property
|
|
22
|
+
def has_config(self) -> bool:
|
|
23
|
+
return (self._video is not None) and (self._audio is not None) and (self._arc is not None)
|
|
24
|
+
|
|
25
|
+
@property
|
|
26
|
+
def video(self) -> V2IPStreamSource|None:
|
|
27
|
+
return self._video
|
|
28
|
+
|
|
29
|
+
@video.setter
|
|
30
|
+
def video(self, source:V2IPStreamSource) -> None:
|
|
31
|
+
if source != self._video:
|
|
32
|
+
_LOGGER.debug(f"changed: {str(source)}")
|
|
33
|
+
self._video = source
|
|
34
|
+
|
|
35
|
+
@property
|
|
36
|
+
def audio(self) -> V2IPStreamSource:
|
|
37
|
+
return self._audio
|
|
38
|
+
|
|
39
|
+
@audio.setter
|
|
40
|
+
def audio(self, source:V2IPStreamSource) -> None:
|
|
41
|
+
if source != self._audio:
|
|
42
|
+
_LOGGER.debug(f"changed: {str(source)}")
|
|
43
|
+
self._audio = source
|
|
44
|
+
|
|
45
|
+
@property
|
|
46
|
+
def anc(self) -> V2IPStreamSource:
|
|
47
|
+
return self._anc
|
|
48
|
+
|
|
49
|
+
@anc.setter
|
|
50
|
+
def anc(self, source:V2IPStreamSource) -> None:
|
|
51
|
+
if source != self._anc:
|
|
52
|
+
_LOGGER.debug(f"changed: {str(source)}")
|
|
53
|
+
self._anc = source
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
def arc(self) -> V2IPStreamSource:
|
|
57
|
+
return self._arc
|
|
58
|
+
|
|
59
|
+
@arc.setter
|
|
60
|
+
def arc(self, source:V2IPStreamSource) -> None:
|
|
61
|
+
if source != self._arc:
|
|
62
|
+
_LOGGER.debug(f"changed: {str(self._arc)} -> {str(source)}")
|
|
63
|
+
self._arc = source
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
def tx_rate(self) -> int:
|
|
67
|
+
return self._tx_rate
|
|
68
|
+
|
|
69
|
+
@tx_rate.setter
|
|
70
|
+
def tx_rate(self, rate:int) -> None:
|
|
71
|
+
self._tx_rate = rate
|
|
72
|
+
|
|
73
|
+
def __eq__(self, value: object) -> bool:
|
|
74
|
+
if not isinstance(value, DeviceV2IPDetailsBase):
|
|
75
|
+
return False
|
|
76
|
+
return (self.video == value.video) \
|
|
77
|
+
and (self.audio == value.audio) \
|
|
78
|
+
and (self.anc == value.anc) \
|
|
79
|
+
and (self.arc == value.arc) \
|
|
80
|
+
and (self.tx_rate == value.tx_rate)
|
|
81
|
+
|
|
82
|
+
def __str__(self) -> str:
|
|
83
|
+
return f"{self.video} {self.audio} {self.anc} {self.arc}"
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: mx_remote
|
|
3
|
+
Version: 2.0.0
|
|
4
|
+
Summary: Python 3 library for interfacing with MX Remote compatible devices
|
|
5
|
+
Project-URL: Homepage, https://github.com/opdenkamp/mx-remote/
|
|
6
|
+
Project-URL: Documentation, https://github.com/opdenkamp/mx-remote/
|
|
7
|
+
Project-URL: Repository, https://github.com/opdenkamp/mx-remote.git
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/opdenkamp/mx-remote/issues
|
|
9
|
+
Author-email: Lars Op den Kamp <lars@opdenkamp.eu>
|
|
10
|
+
Maintainer-email: Lars Op den Kamp <lars@opdenkamp.eu>
|
|
11
|
+
License: Copyright 2024 Lars Op den Kamp <lars@opdenkamp.eu>
|
|
12
|
+
|
|
13
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
14
|
+
|
|
15
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
16
|
+
|
|
17
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
18
|
+
|
|
19
|
+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|
20
|
+
|
|
21
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
22
|
+
Keywords: ampos,matrixos,oneip,pulse-eight
|
|
23
|
+
Classifier: Development Status :: 3 - Alpha
|
|
24
|
+
Classifier: Programming Language :: Python
|
|
25
|
+
Classifier: Topic :: System :: Networking :: Monitoring
|
|
26
|
+
Requires-Python: >=3.11
|
|
27
|
+
Requires-Dist: aiofiles>=24.1.0
|
|
28
|
+
Requires-Dist: aiohttp>=3.10.5
|
|
29
|
+
Requires-Dist: argparse>=1.4.0
|
|
30
|
+
Requires-Dist: netifaces>=0.11.0
|
|
31
|
+
Description-Content-Type: text/markdown
|
|
32
|
+
|
|
33
|
+
# MX Remote Interface
|
|
34
|
+
|
|
35
|
+
Python 3 library for interfacing with MX Remote compatible devices.
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
Run `pip install .`
|
|
40
|
+
|
|
41
|
+
## Documentation
|
|
42
|
+
|
|
43
|
+
Documentation is embedded in the Python code, which is automatically used by most common IDEs.
|
|
44
|
+
|
|
45
|
+
You can also use Python to read the documentation:
|
|
46
|
+
```python
|
|
47
|
+
import mx_remote
|
|
48
|
+
help(mx_remote.Interface)
|
|
49
|
+
exit()
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Developers
|
|
53
|
+
|
|
54
|
+
Bare minimum application that runs `mx_remote`:
|
|
55
|
+
```python
|
|
56
|
+
import asyncio
|
|
57
|
+
import mx_remote
|
|
58
|
+
|
|
59
|
+
loop = asyncio.get_event_loop()
|
|
60
|
+
mx = mx_remote.Remote()
|
|
61
|
+
loop.run_until_complete(mx.start_async())
|
|
62
|
+
loop.run_forever()
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Application
|
|
66
|
+
The console application is started by running `mxr`.
|
|
67
|
+
|
|
68
|
+
The application also includes methods for debugging MX Remote networks:
|
|
69
|
+
* The console application will always dump all received frames in human readable form on the console
|
|
70
|
+
* To dump these frames in a file `mxr -u 1 -o /path/to/file.txt`
|
|
71
|
+
* Import frames captured by MatrixOS and dump the frames: `mxr -i /path/to/file.bin`
|
|
72
|
+
|
|
73
|
+
All command line options:
|
|
74
|
+
```
|
|
75
|
+
usage: mxr [-h] [-i INPUT] [-f FILTER] [-o OUTPUT] [-l LOCAL_IP] [-b BROADCAST] [-u UI]
|
|
76
|
+
|
|
77
|
+
MX Remote Manager / Debugger
|
|
78
|
+
|
|
79
|
+
options:
|
|
80
|
+
-h, --help show this help message and exit
|
|
81
|
+
-i INPUT capture file to process
|
|
82
|
+
-f FILTER ip address to process in the capture file
|
|
83
|
+
-o OUTPUT write output to a file
|
|
84
|
+
-l LOCAL_IP local ip address of the network interface to use
|
|
85
|
+
-b BROADCAST use broadcast mode instead of multicast mode
|
|
86
|
+
-u UI show the user interface
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
The user interface option and `mxr-ui` application are only available when `mx_remote_manager` is installed after installing `mx_remote`.
|
|
90
|
+
Plain `mx_remote` only includes the command line version of `mxr`.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
mx_remote/Interface.py,sha256=x6Sqpuyj2I4nreBDJ8OUneD_uAwKKcoZ3jmtWs9TZdQ,48199
|
|
2
|
+
mx_remote/Uid.py,sha256=T-DLNNo161jEuRZMJ_FgNgNdTTl7QnjnDFdEoL5wM3Y,4114
|
|
3
|
+
mx_remote/__init__.py,sha256=3Kd9Lb8vxMRvg0T4xuL0QKjCSaVVNgF0FoFvjiMFC3g,496
|
|
4
|
+
mx_remote/const.py,sha256=2XoT3w3x0KFnHIXgk8jmeppSx7IBtgYa6WMP7kHUtZo,552
|
|
5
|
+
mx_remote/main.py,sha256=CkZCJDUXRAMNe-5MMslYVq6PZsJWdyh4A4DUGgEyo8o,4427
|
|
6
|
+
mx_remote/api/BayConfig.py,sha256=PebA_GXDUTx3q56iAdHBzRq0jg1POfdbKS3NzyDT3RY,1590
|
|
7
|
+
mx_remote/api/__init__.py,sha256=sJx8w_kVdxb_mDiEycleolCAcR7pfa6KUUh65XFPabs,340
|
|
8
|
+
mx_remote/proto/BayConfig.py,sha256=Yr9X2bpKF1WPQo7uuEpo4w04IXIkEnDP8ksl48TuVaY,2499
|
|
9
|
+
mx_remote/proto/Constants.py,sha256=O4-hbT3zU6SREd0ml7RQkZr_VhzyiJpKKHyIDo5mV08,10405
|
|
10
|
+
mx_remote/proto/Data.py,sha256=-2TNHfaNnJm0EbXHJcrgcV2i3UVPFrx3xbLZmTmHeCE,4716
|
|
11
|
+
mx_remote/proto/Factory.py,sha256=l7NwyXiLY00R9Amt3y3t-G9k2upH-5lgnqbyq8hIMl0,5694
|
|
12
|
+
mx_remote/proto/FrameAmpDolbySettings.py,sha256=p_zjuKVpmlsrvi-LMhYp_TddScHsSCUnWET5XP03G6s,1620
|
|
13
|
+
mx_remote/proto/FrameAmpZoneSettings.py,sha256=FG5ZOKIfB32b2HCv4zU6OtpmDHfKsNt4tLkZSdTxtJI,3895
|
|
14
|
+
mx_remote/proto/FrameBase.py,sha256=PF3Q8SQeO8xvSF2qGbgucov3dQZNO-TUtcNCKYb2Pts,2647
|
|
15
|
+
mx_remote/proto/FrameBayConfig.py,sha256=K42-MOeymWO7Tv-HD0dyUrGaaQ_vWvEu7PMyZrEFcOA,1610
|
|
16
|
+
mx_remote/proto/FrameBayConfigSecondary.py,sha256=cin8u9CNdxP3G0llm_2JTRsszJVrZJK-rE3oDTjH2lE,1519
|
|
17
|
+
mx_remote/proto/FrameBayHide.py,sha256=UTwhdmRSrfr0R_4-iqI9o1-VjOM7GLm9RTh1gNlL7zM,1771
|
|
18
|
+
mx_remote/proto/FrameBayStatus.py,sha256=pjpxbUyT6qzA8DEB2oasujfMdxqBCA8IaUGPQiad0js,1718
|
|
19
|
+
mx_remote/proto/FrameConnectStatus.py,sha256=fjkvzrVk9-jTUtP2OZW_t-3fGwmaxBv42QjyoqKgh5c,1292
|
|
20
|
+
mx_remote/proto/FrameDiscover.py,sha256=9NgnSytt1GBp-VZORbr7J9DCFvIaAtZ4_aBGVKVGItg,789
|
|
21
|
+
mx_remote/proto/FrameEDID.py,sha256=b3U1nBtPFPNdfoR636Jt7U1xQIIIs5MtadLp1q5Al9Q,650
|
|
22
|
+
mx_remote/proto/FrameEDIDProfile.py,sha256=OGPE6G7Epej9iOHHb7E5AhddzGJEGCzJlvDX1o0fNYo,1004
|
|
23
|
+
mx_remote/proto/FrameFilterStatus.py,sha256=QLFF5Ku1v09ZAgnNsKcWmJ7bFVjbyKB55f7GNq97l80,1252
|
|
24
|
+
mx_remote/proto/FrameFirmwareVersion.py,sha256=ZQ6XrapFDrmQdYLAst9mi6-R-lBUaGoULvwoAaFFzTw,1216
|
|
25
|
+
mx_remote/proto/FrameHeader.py,sha256=w_dUFf59MRcq63S9rDey80MYuVOrT-XiqklShZhfs6o,2916
|
|
26
|
+
mx_remote/proto/FrameHello.py,sha256=Lmxt08pB-XheY3EcqDAV0AUGDOfnWgtYnIyx-tbyObA,3256
|
|
27
|
+
mx_remote/proto/FrameLinks.py,sha256=_uOYrCD3Bi9bWHR8Zsd8bGAvHeMB4OUOrTLMa4gVUKM,1465
|
|
28
|
+
mx_remote/proto/FrameMeshOperation.py,sha256=5_t8-qP5_ZIzdQZJGL5e2NIXgsNUU4KmnrpiQME8nIk,2390
|
|
29
|
+
mx_remote/proto/FrameMirrorStatus.py,sha256=gkY3luVyi-zqhaORNdXt-5NXnDR_q1W85PNgy0mXqqw,1538
|
|
30
|
+
mx_remote/proto/FrameNetworkStatus.py,sha256=KwwEUei93v0ZqymkQVCtwgBkEyH-bC3BYn5uZqnLYao,4707
|
|
31
|
+
mx_remote/proto/FramePDUState.py,sha256=WVbgVNMfEniVOWxgZ4cLlUI991gUpAWDaSQCOjYvuYQ,2225
|
|
32
|
+
mx_remote/proto/FramePowerChange.py,sha256=4TneSgiLdcbVHT0NmwwfpxcOmhiVph3VoweVVCD7f40,1167
|
|
33
|
+
mx_remote/proto/FrameRCAction.py,sha256=zlWbu6OQJxTVFM3nwPNDu2V_Wm4HzSwsgWRABekncBw,1794
|
|
34
|
+
mx_remote/proto/FrameRCIr.py,sha256=PUXHeCRynaFCebbw-TQxHJJQ__V634bq4kt4UUe05j4,570
|
|
35
|
+
mx_remote/proto/FrameRCKey.py,sha256=9I_NikLVnhyFRRRDqa0JeEbs0jF2XkSlfQaHqMQRM3Q,1461
|
|
36
|
+
mx_remote/proto/FrameReboot.py,sha256=619xHeOVcYalqtj84u0vcHpAn2ibrCjJt5utNgt-xho,902
|
|
37
|
+
mx_remote/proto/FrameRoutingChange.py,sha256=xpmknSE5WnMqzoAeAMIB3rpeTDL3-j0LHb_EHU9_xKY,1981
|
|
38
|
+
mx_remote/proto/FrameSetName.py,sha256=WmUTmcUbSvb3rv509iwTYQGbQdPPZRcj1z4_DA0E9QU,1046
|
|
39
|
+
mx_remote/proto/FrameSignalStatus.py,sha256=rENC50VFJmdsHGshO9lr6UB2_CFmJ42Cv4x52staQVI,1414
|
|
40
|
+
mx_remote/proto/FrameSignalStatusNew.py,sha256=P5uT-Sh1AGZeSGo235ukCBaj-oqrNNHuc87nesnUdpI,8039
|
|
41
|
+
mx_remote/proto/FrameSysTemperature.py,sha256=3OBDmTtLP0ZvlVxRVFofDsZL7TrABSdZDD9I-60bD6A,1708
|
|
42
|
+
mx_remote/proto/FrameTXRCAction.py,sha256=nCuzt8m9w8uL_-kK-XJxJA4WhnnfQ5a_jpe_BkNAKFU,1970
|
|
43
|
+
mx_remote/proto/FrameTopology.py,sha256=PhqqBIcwyDtdpP-CmuVq7iK1Ylito-QzndtMWESipIE,1141
|
|
44
|
+
mx_remote/proto/FrameV2IPDeviceConfiguration.py,sha256=mGkfXjxN2xSDtcYOYBrNmyAkyh9VM9KV8tWSKiYn-xA,2879
|
|
45
|
+
mx_remote/proto/FrameV2IPLink.py,sha256=jwzLrzwcBNDWJTG4xsro1OP5_TbLarcK6H1FsJ8fuZ4,563
|
|
46
|
+
mx_remote/proto/FrameV2IPSetMaster.py,sha256=Wz5OY9Z-Or-Ir_Lq8iqsIWQkJjja0uyVjgg_LM_75sM,560
|
|
47
|
+
mx_remote/proto/FrameV2IPSourceSwitch.py,sha256=fg8hTzAl_qLlGNXmNczR7PmEKpSr4Bde8QcWsAj7aDw,3229
|
|
48
|
+
mx_remote/proto/FrameV2IPSources.py,sha256=iztRnfDIJP0E4I3QRiZWnaA_Cf3-dxipcEGEXJ0I1RA,1578
|
|
49
|
+
mx_remote/proto/FrameV2IPStats.py,sha256=nLjtkzGG8NXH3d3mMLu1NS7Fcym9Df2KgVNJXgRz5jo,1852
|
|
50
|
+
mx_remote/proto/FrameV2IPStreamDetails.py,sha256=YkQ5bIWwSsytgGKTfchBwXZdoP6zuj5Tbk6MsAKp6zg,1816
|
|
51
|
+
mx_remote/proto/FrameVolume.py,sha256=cgf3V9-XOKuOqf-ZaGtsDeKhlbBj_gZ8kUbI9qoZr50,1949
|
|
52
|
+
mx_remote/proto/FrameVolumeDown.py,sha256=Zk5c7kuxGQIaaAN6x4q2HU6m6qiOzbf4GTBBYZTHu5k,846
|
|
53
|
+
mx_remote/proto/FrameVolumeSet.py,sha256=vtHjaSMG7bneeEYjfEyL-gPcq6glEDcQ9YlSeq4jkFo,2748
|
|
54
|
+
mx_remote/proto/FrameVolumeUp.py,sha256=P_fAQLw36xkyUMQMsxLDZ1t88Yzn3a9QOpmeqchX-hw,840
|
|
55
|
+
mx_remote/proto/LinkConfig.py,sha256=0ypx25LLeOytU-rIrBDduVlHCg-DvUt9ESkNA4JeK7o,4052
|
|
56
|
+
mx_remote/proto/PDUState.py,sha256=BiqndSAphjcBWktxgMEiPOP8x7zc0PqmG3fuGAxygHM,2347
|
|
57
|
+
mx_remote/proto/Svd.py,sha256=8-0xMGt3Zl2ulNLZ7LLYOZopQVxrDWCEF7jKZspTax0,1761
|
|
58
|
+
mx_remote/proto/V2IPConfig.py,sha256=cjppgcuTXmeL7Z1MzHfFCi2xcQ3TyqyGKBPEPi1Yl6Q,2211
|
|
59
|
+
mx_remote/proto/V2IPStats.py,sha256=GzUDedsdlxMoMLIFcnXuYIouO0UpTypUsUZWn52Ncu4,3877
|
|
60
|
+
mx_remote/proto/__init__.py,sha256=Y3NLFnSApFVABTjT2Ib9ZqWXPKaxiehIJ3iFMCkfB44,332
|
|
61
|
+
mx_remote/proto/svd.csv,sha256=C1nNrAUG0xF3l7sE693F6TeduoQHIWgjOSsYWhs8dpc,5227
|
|
62
|
+
mx_remote/remote/Bay.py,sha256=vbbqvS2bckEug_wW93n6_vNEPnLRryPeS8RD7Fi64D0,32389
|
|
63
|
+
mx_remote/remote/ConnectionAsync.py,sha256=IJZVjXOzbgukIQWsRW5OR3vhS5rMTbj_UdEA6tC4Whw,4653
|
|
64
|
+
mx_remote/remote/Device.py,sha256=2PDblacJgXWu5TUPC4v_7-sMRAYBqCUMY9Mb8ph7M_0,14981
|
|
65
|
+
mx_remote/remote/Link.py,sha256=sJfdYYUWbBwUFhkstyBVEPfsz5fA69gk_gEF5Tgjg2I,6493
|
|
66
|
+
mx_remote/remote/PDU.py,sha256=AJIKbuSdAINvgL9VQ1M7VslozQNyMlgoNUgJ1CQZUEw,4160
|
|
67
|
+
mx_remote/remote/Remote.py,sha256=DhJDqNZPL5MwrStyzFJ1wheXKhe3yrHU3V-ZDNNKQGE,11778
|
|
68
|
+
mx_remote/remote/State.py,sha256=1KC0JHWboPV_e_pZiH56AQHCibPv5kxbNfjs1AUdMv4,998
|
|
69
|
+
mx_remote/remote/V2IP.py,sha256=GT8jfKJ-x8e_lEH3t52zaKvNf1NqkXtpzTUa-1mfyQo,2198
|
|
70
|
+
mx_remote-2.0.0.dist-info/METADATA,sha256=KH8I_3ytjVpnqWCR02Keg7rZgER5LboxzA4AxJpqo8s,4158
|
|
71
|
+
mx_remote-2.0.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
72
|
+
mx_remote-2.0.0.dist-info/entry_points.txt,sha256=Y9F6eZPxYKONCd2prjPnMYFuVP6fLEL8MaiMiuLYB2E,48
|
|
73
|
+
mx_remote-2.0.0.dist-info/licenses/LICENSE,sha256=6LaL42FgALFy1t5naNhEPom2WAKNuQUVeqBL90zbvx0,1485
|
|
74
|
+
mx_remote-2.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Copyright 2024 Lars Op den Kamp <lars@opdenkamp.eu>
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
4
|
+
|
|
5
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
6
|
+
|
|
7
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
8
|
+
|
|
9
|
+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|
10
|
+
|
|
11
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|