Git Product home page Git Product logo

pyrademacher's Introduction

pyrademacher

Python Library to read/control devices connected to your Rademacher HomePilot (or Start2Smart) hub.

This library uses the latest REST API, so you must update your hub to the latest firmware if you want to use this library.

Installation

Use pip to install pyrademacher lib:

pip install pyrademacher

Usage

API Class

With the HomePilotApi class you can acess the REST API directly:

from homepilot.api import HomePilotApi

api = HomePilotApi("hostname", "password") # password can be empty if not defined ("")

print(asyncio.run(asyncio.run(api.get_devices()))) # get all devices

asyncio.run(api.async_open_cover(did=1)) # open cover for device id 1 (assuming it's a cover device)

Manager Class

You can use the HomePilotManager helper class to more easily manage the devices:

import asyncio
from homepilot.manager import HomePilotManager
from homepilot.api import HomePilotApi

api = HomePilotApi("hostname", "password") # password can be empty if not defined ("")

manager = asyncio.run(HomePilotManager.async_build_manager(api))
asyncio.run(manager.update_states())

print(manager.devices["1"].is_closed)
print(manager.devices["1"].cover_position)

print(manager.devices["-1"].fw_version) # ID -1 is reserved for the hub itself

Each device in manager.devices is an instance of the specific device class.

pyrademacher's People

Contributors

der-berni avatar peribeir avatar tstierle avatar

Watchers

 avatar

pyrademacher's Issues

Connection to Homepilot Gateway Premium with password enabled is not possible

It seems, there is a merge missing.
In (homeassistant-rademacher)'s latest commit there has been an addition of "auth_required_v2" which is not provided by api.py
It seems with SW-Version 1.0.7 the authentication has been moved to path /hp/ too thus needs adjustment in the api.
This needs to be taken into account in test_connection as well as in test_auth but I assume you have that working already and just missing the commit?

Integration fails to start with HA version 2022.12.0

Integration radermacher fails to start because of versions have conflicting dependencies error during package installation.

Traces:

Logger: homeassistant.util.package
Source: util/package.py:98 
First occurred: 18:24:02 (3 occurrences) 
Last logged: 18:24:13

Unable to install package pyrademacher==0.6.6: ERROR: Cannot install pyrademacher==0.6.6 because these package versions have conflicting dependencies. ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts [notice] A new release of pip available: 22.3 -> 22.3.1 [notice] To update, run: pip install --upgrade pip

Rademacher Integration fails to start with HA Core 2022.11.5

When HA starts it fails to launch Rademacher Integration and reports this error:

Unable to install package pyrademacher==0.6.6: ERROR: Cannot install pyrademacher==0.6.6 because these package versions have conflicting dependencies. ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts [notice] A new release of pip available: 22.3 -> 22.3.1 [notice] To update, run: pip install --upgrade pip

Error on Home Assistant RC 2023.12.0b0

Logger: homeassistant.setup
Source: setup.py:221
First occurred: 00:10:15 (1 occurrences)
Last logged: 00:10:15

Setup failed for custom integration 'rademacher': Requirements for rademacher not found: ['pyrademacher==0.13.1'].

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.