Library built on AsyncIO for communicating with Samsung Wireless Audio speakers (WAM).
Project description
pywam
pywam is an fast and lightweight python asyncio library without external dependencies for communicating with Samsung Wireless Audio (R) speakers (WAM). It was developed to be used for integrating the speakers in Home Assistant.
Features
- Control Samsung Multiroom speakers.
- Keep track of the state of Samsung Multiroom speakers.
Installation
pip install pywam
Usage
Set the speaker volume to 50% with python context manager:
from pywam.speaker import Speaker
async with Speaker('192.168.1.100') as speaker:
speaker.set_volume(50)
Example of controlling media playback:
# Play
await speaker.cmd_play()
# Pause
await speaker.cmd_pause()
# Shuffle mode
await speaker.set_shuffle(True)
Get notifications about speakers state:
from pywam.speaker import Speaker
def state_receiver(event):
print(event)
speaker = Speaker('192.168.1.150')
speaker.events.register_subscriber(state_receiver, 2)
speaker.connect()
speaker.update()
Contribute
- Issue Tracker: https://github.com/Strixx76/pywam/issues
- Source Code: https://github.com/Strixx76/pywam
Style guide
PEP8 and Google styled PEP257. But none of them is strictly enforced.
License
The project is licensed under the MIT License.
Disclaimer Notice
I have tested all functions in this library on all of my Samsung Multiroom speakers, and the worst that has happened is that speakers froze when receiving faulty calls, and needed a hard reset. But I CAN’T guarantee that your speaker is compatible with this library, and you can’t hold me responsible if you brick your speaker when using this library.
Versioning and Changelog
This project uses Semantic Versioning. The changelog format is based on Keep a Changelog
Credits
This project would not have been possible without, but not limited to, the following projects:
- Samsung Wireless Audio Multiroom (WAM) Research, Moosy Research
- WAM_API_DOC, Bruno Lopes
- com.samsung.wam, Bjørnar Almli
- Hubitat-Samsung-WiFi-Audio, David Gutheinz
- Samsung Multiroom (WIP), Krystian Galutowski
- SamsungNotify, Moengiant
Support the work
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pywam-0.1.0rc4.tar.gz
.
File metadata
- Download URL: pywam-0.1.0rc4.tar.gz
- Upload date:
- Size: 44.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10f060f6bdc44bbac51e95582708c7b6bb02cd34ecb85f702b028861d78a8a3a |
|
MD5 | 9e4142b16c3991ae40bd441a6b82d575 |
|
BLAKE2b-256 | fd249837e1c78df934aa697addd08a3969f2dc335ce435a78592ca61c34033d2 |
File details
Details for the file pywam-0.1.0rc4-py3-none-any.whl
.
File metadata
- Download URL: pywam-0.1.0rc4-py3-none-any.whl
- Upload date:
- Size: 50.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05ff114d0300ec7ec1bcc2837bb69c3425728ce2353cbc4e9145ed25dc20747c |
|
MD5 | 0e30f454c04e5f7083e890fd3e84ad1a |
|
BLAKE2b-256 | 6ee04315cf23896a2fdc7faaf2930b7da6aea628cc9ea9beefc2b27eb89deb1d |