vsslctrl 0.1.1.dev1__tar.gz → 0.1.2.dev1__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.
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/PKG-INFO +16 -6
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/README.md +15 -5
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/pyproject.toml +1 -1
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/io.py +1 -1
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl.egg-info/PKG-INFO +16 -6
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/LICENSE +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/setup.cfg +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/tests/test_event_bus.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/tests/test_integration.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/tests/test_settings.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/tests/test_zone.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/__init__.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/api_alpha.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/api_base.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/api_bravo.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/core.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/data_structure.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/decorators.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/discovery.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/event_bus.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/exceptions.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/group.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/settings.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/track.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/transport.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/utils.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl/zone.py +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl.egg-info/SOURCES.txt +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl.egg-info/dependency_links.txt +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl.egg-info/requires.txt +0 -0
- {vsslctrl-0.1.1.dev1 → vsslctrl-0.1.2.dev1}/vsslctrl.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vsslctrl
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2.dev1
|
|
4
4
|
Summary: Package for controlling VSSL amplifiers
|
|
5
5
|
Author-email: vsslctrl <vsslcontrolled@proton.me>
|
|
6
6
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -24,7 +24,7 @@ Requires-Dist: zeroconf==0.132.2; extra == "optional"
|
|
|
24
24
|
|
|
25
25
|
**`vsslctrl` is not endorsed or affiliated with [VSSL](https://www.vssl.com/) in any manner.**
|
|
26
26
|
|
|
27
|
-
Motovation for this project was to intergrate VSSLs amplifiers into [Home Assistant](https://www.home-assistant.io/) and
|
|
27
|
+
Motovation for this project was to intergrate VSSLs amplifiers into [Home Assistant](https://www.home-assistant.io/) and have control over different subnets (not mDNS dependant)
|
|
28
28
|
|
|
29
29
|
I am looking for testers with any VSSL amplifier models, please get in touch if you interested in helping.
|
|
30
30
|
|
|
@@ -33,13 +33,17 @@ Requires-Dist: zeroconf==0.132.2; extra == "optional"
|
|
|
33
33
|
## TODOs
|
|
34
34
|
|
|
35
35
|
* Test on other models (hardware needed)
|
|
36
|
-
* Home Assistant integration
|
|
36
|
+
* Home Assistant integration. In progress, [here](https://github.com/vsslctrl/integration.home-assistant)
|
|
37
37
|
* Function scoping to supported feature / models
|
|
38
38
|
* Better test coverage
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
Important
|
|
41
41
|
-----------
|
|
42
|
+
**Warning:** no *[VSSL Agent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start)* should be running on the same network. If you dont know what this is, then you can probably ignore this notice.
|
|
43
|
+
|
|
42
44
|
|
|
45
|
+
Basic Usage
|
|
46
|
+
-----------
|
|
43
47
|
`vsslctrl` needs to be running inside a **[asyncio](https://docs.python.org/3/library/asyncio.html)** event loop.
|
|
44
48
|
|
|
45
49
|
```python
|
|
@@ -349,7 +353,7 @@ zone1.settings.volume.default_on = 75
|
|
|
349
353
|
| ---------------------- | ----------- | ----------- |----------- |
|
|
350
354
|
| `enabled` | Enable / disable EQ | `bool`
|
|
351
355
|
|
|
352
|
-
EQ be set in [decibel](https://en.wikipedia.org/wiki/Decibel) using a range `-10`dB to `+10`dB
|
|
356
|
+
EQ to be set in [decibel](https://en.wikipedia.org/wiki/Decibel) using a range `-10`dB to `+10`dB
|
|
353
357
|
|
|
354
358
|
| Property | Description | Type | Values |
|
|
355
359
|
| ---------------------- | ----------- | ----------- |----------- |
|
|
@@ -369,7 +373,7 @@ zone1.settings.eq.khz1_db = -2
|
|
|
369
373
|
|
|
370
374
|
## Credit
|
|
371
375
|
|
|
372
|
-
The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS app and their deprecated [vsslagent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start).
|
|
376
|
+
The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS app and their deprecated [vsslagent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start).
|
|
373
377
|
|
|
374
378
|
## Known Issues & Limitiations
|
|
375
379
|
|
|
@@ -383,3 +387,9 @@ The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS a
|
|
|
383
387
|
* `stop()` is intended to disconnect the client and pause the stream. Doesnt always function this way, depending on stream source
|
|
384
388
|
* Occasionally a zones might stop responding to certain commands, issuing the `reboot` command generally corrects
|
|
385
389
|
|
|
390
|
+
## Future
|
|
391
|
+
|
|
392
|
+
* REST API / Web App
|
|
393
|
+
* Save and recall EQ
|
|
394
|
+
* A.1(x) coverage i.e Bluetooth
|
|
395
|
+
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
**`vsslctrl` is not endorsed or affiliated with [VSSL](https://www.vssl.com/) in any manner.**
|
|
5
5
|
|
|
6
|
-
Motovation for this project was to intergrate VSSLs amplifiers into [Home Assistant](https://www.home-assistant.io/) and
|
|
6
|
+
Motovation for this project was to intergrate VSSLs amplifiers into [Home Assistant](https://www.home-assistant.io/) and have control over different subnets (not mDNS dependant)
|
|
7
7
|
|
|
8
8
|
I am looking for testers with any VSSL amplifier models, please get in touch if you interested in helping.
|
|
9
9
|
|
|
@@ -12,13 +12,17 @@
|
|
|
12
12
|
## TODOs
|
|
13
13
|
|
|
14
14
|
* Test on other models (hardware needed)
|
|
15
|
-
* Home Assistant integration
|
|
15
|
+
* Home Assistant integration. In progress, [here](https://github.com/vsslctrl/integration.home-assistant)
|
|
16
16
|
* Function scoping to supported feature / models
|
|
17
17
|
* Better test coverage
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Important
|
|
20
20
|
-----------
|
|
21
|
+
**Warning:** no *[VSSL Agent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start)* should be running on the same network. If you dont know what this is, then you can probably ignore this notice.
|
|
22
|
+
|
|
21
23
|
|
|
24
|
+
Basic Usage
|
|
25
|
+
-----------
|
|
22
26
|
`vsslctrl` needs to be running inside a **[asyncio](https://docs.python.org/3/library/asyncio.html)** event loop.
|
|
23
27
|
|
|
24
28
|
```python
|
|
@@ -328,7 +332,7 @@ zone1.settings.volume.default_on = 75
|
|
|
328
332
|
| ---------------------- | ----------- | ----------- |----------- |
|
|
329
333
|
| `enabled` | Enable / disable EQ | `bool`
|
|
330
334
|
|
|
331
|
-
EQ be set in [decibel](https://en.wikipedia.org/wiki/Decibel) using a range `-10`dB to `+10`dB
|
|
335
|
+
EQ to be set in [decibel](https://en.wikipedia.org/wiki/Decibel) using a range `-10`dB to `+10`dB
|
|
332
336
|
|
|
333
337
|
| Property | Description | Type | Values |
|
|
334
338
|
| ---------------------- | ----------- | ----------- |----------- |
|
|
@@ -348,7 +352,7 @@ zone1.settings.eq.khz1_db = -2
|
|
|
348
352
|
|
|
349
353
|
## Credit
|
|
350
354
|
|
|
351
|
-
The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS app and their deprecated [vsslagent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start).
|
|
355
|
+
The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS app and their deprecated [vsslagent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start).
|
|
352
356
|
|
|
353
357
|
## Known Issues & Limitiations
|
|
354
358
|
|
|
@@ -362,3 +366,9 @@ The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS a
|
|
|
362
366
|
* `stop()` is intended to disconnect the client and pause the stream. Doesnt always function this way, depending on stream source
|
|
363
367
|
* Occasionally a zones might stop responding to certain commands, issuing the `reboot` command generally corrects
|
|
364
368
|
|
|
369
|
+
## Future
|
|
370
|
+
|
|
371
|
+
* REST API / Web App
|
|
372
|
+
* Save and recall EQ
|
|
373
|
+
* A.1(x) coverage i.e Bluetooth
|
|
374
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vsslctrl
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2.dev1
|
|
4
4
|
Summary: Package for controlling VSSL amplifiers
|
|
5
5
|
Author-email: vsslctrl <vsslcontrolled@proton.me>
|
|
6
6
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -24,7 +24,7 @@ Requires-Dist: zeroconf==0.132.2; extra == "optional"
|
|
|
24
24
|
|
|
25
25
|
**`vsslctrl` is not endorsed or affiliated with [VSSL](https://www.vssl.com/) in any manner.**
|
|
26
26
|
|
|
27
|
-
Motovation for this project was to intergrate VSSLs amplifiers into [Home Assistant](https://www.home-assistant.io/) and
|
|
27
|
+
Motovation for this project was to intergrate VSSLs amplifiers into [Home Assistant](https://www.home-assistant.io/) and have control over different subnets (not mDNS dependant)
|
|
28
28
|
|
|
29
29
|
I am looking for testers with any VSSL amplifier models, please get in touch if you interested in helping.
|
|
30
30
|
|
|
@@ -33,13 +33,17 @@ Requires-Dist: zeroconf==0.132.2; extra == "optional"
|
|
|
33
33
|
## TODOs
|
|
34
34
|
|
|
35
35
|
* Test on other models (hardware needed)
|
|
36
|
-
* Home Assistant integration
|
|
36
|
+
* Home Assistant integration. In progress, [here](https://github.com/vsslctrl/integration.home-assistant)
|
|
37
37
|
* Function scoping to supported feature / models
|
|
38
38
|
* Better test coverage
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
Important
|
|
41
41
|
-----------
|
|
42
|
+
**Warning:** no *[VSSL Agent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start)* should be running on the same network. If you dont know what this is, then you can probably ignore this notice.
|
|
43
|
+
|
|
42
44
|
|
|
45
|
+
Basic Usage
|
|
46
|
+
-----------
|
|
43
47
|
`vsslctrl` needs to be running inside a **[asyncio](https://docs.python.org/3/library/asyncio.html)** event loop.
|
|
44
48
|
|
|
45
49
|
```python
|
|
@@ -349,7 +353,7 @@ zone1.settings.volume.default_on = 75
|
|
|
349
353
|
| ---------------------- | ----------- | ----------- |----------- |
|
|
350
354
|
| `enabled` | Enable / disable EQ | `bool`
|
|
351
355
|
|
|
352
|
-
EQ be set in [decibel](https://en.wikipedia.org/wiki/Decibel) using a range `-10`dB to `+10`dB
|
|
356
|
+
EQ to be set in [decibel](https://en.wikipedia.org/wiki/Decibel) using a range `-10`dB to `+10`dB
|
|
353
357
|
|
|
354
358
|
| Property | Description | Type | Values |
|
|
355
359
|
| ---------------------- | ----------- | ----------- |----------- |
|
|
@@ -369,7 +373,7 @@ zone1.settings.eq.khz1_db = -2
|
|
|
369
373
|
|
|
370
374
|
## Credit
|
|
371
375
|
|
|
372
|
-
The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS app and their deprecated [vsslagent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start).
|
|
376
|
+
The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS app and their deprecated [vsslagent](https://vssl.gitbook.io/vssl-rest-api/getting-started/start).
|
|
373
377
|
|
|
374
378
|
## Known Issues & Limitiations
|
|
375
379
|
|
|
@@ -383,3 +387,9 @@ The VSSL API was reverse engineered using Wireshark, VSSLs native "legacy" iOS a
|
|
|
383
387
|
* `stop()` is intended to disconnect the client and pause the stream. Doesnt always function this way, depending on stream source
|
|
384
388
|
* Occasionally a zones might stop responding to certain commands, issuing the `reboot` command generally corrects
|
|
385
389
|
|
|
390
|
+
## Future
|
|
391
|
+
|
|
392
|
+
* REST API / Web App
|
|
393
|
+
* Save and recall EQ
|
|
394
|
+
* A.1(x) coverage i.e Bluetooth
|
|
395
|
+
|
|
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
|
|
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
|