Skip to main content

Integration of Raumfeld into Home Assistant

Project description

Language grade Python

hassfeld is a module primarily aimed to integrated Teufel Smart Speaker (aka Raumfeld Multiroom) into https://www.home-assistant.io/. However, the design is not tailored to Home Assistant and can be used as a module to any Pyhton program to control the Teufel Smart Speaker. The module also provides corresponding asyncio methods.

Look how it is to use with asyncrhonous I/O:

import asyncio
import aiohttp
import hassfeld


async def main():
    host = "teufel-host.example.com"
    port = 47365
    session = aiohttp.ClientSession()
    raumfeld = hassfeld.RaumfeldHost(host, port, session=session)

    asyncio.create_task(raumfeld.async_update_all(session))
    await raumfeld.async_wait_initial_update()

    zone = ["Master Bedroom"]

    media_info = await raumfeld.async_get_media_info(zone)
    print(f"Media info: {media_info}")

    await session.close()


asyncio.run(main())

The use with blocking I/O was supported too but is currently broken:

import hassfeld
raumfeld_host = "teufel-host.example.com"
zone = [ "Living room", "Kitchen" ]
raumfeld = hassfeld.RaumfeldHost(raumfeld_host)
raumfeld.start_update_thread()
raumfeld.search_and_zone_play(zone, 'raumfeld:any contains "Like a Rolling Stone"')

Features

  • Management and snapshot of zones.

  • Search and play songs.

Install hassfeld by running:

python3 -m pip install hassfeld

Contribute

License

The project is licensed under the GNU General Public License v3 (GPLv3).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hassfeld-0.3.11a2.tar.gz (26.6 kB view details)

Uploaded Source

Built Distribution

hassfeld-0.3.11a2-py3-none-any.whl (31.4 kB view details)

Uploaded Python 3

File details

Details for the file hassfeld-0.3.11a2.tar.gz.

File metadata

  • Download URL: hassfeld-0.3.11a2.tar.gz
  • Upload date:
  • Size: 26.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for hassfeld-0.3.11a2.tar.gz
Algorithm Hash digest
SHA256 c3ede7574e254b73a24e85efa4251fdb06f86c62a1cf1ecc0554d6a0fd421d0d
MD5 13ac9ffe63dbe6d31dcd04753528cbe1
BLAKE2b-256 430d859de965ef1cc72511e2471f060520da8d6abd9c5cf8587733f047d08bd9

See more details on using hashes here.

File details

Details for the file hassfeld-0.3.11a2-py3-none-any.whl.

File metadata

  • Download URL: hassfeld-0.3.11a2-py3-none-any.whl
  • Upload date:
  • Size: 31.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for hassfeld-0.3.11a2-py3-none-any.whl
Algorithm Hash digest
SHA256 31cc1de1b8b965a275010e877d2eb29473a5c83399fd0722f7f29854f80b43e4
MD5 b94ddf27074dbf13ec4d9b9b0a847c01
BLAKE2b-256 22a041250a36962253abb0f780e979047b710917613b46a516a3b113e672f661

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page