Skip to content

Commit

Permalink
Update author and links
Browse files Browse the repository at this point in the history
Signed-off-by: Alberto Tudela <ajtudela@gmail.com>
  • Loading branch information
ajtudela committed Jan 4, 2025
1 parent a5b1e84 commit fa1ae22
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup cachix
uses: cachix/cachix-action@v12
with:
name: graham33
name: ajtudela
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix develop .# -c python -m pytest
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# hass-smartbox ![hassfest](https://github.com/graham33/hass-smartbox/workflows/Validate%20with%20hassfest/badge.svg) [![hacs_badge](https://img.shields.io/badge/HACS-Custom-41BDF5.svg)](https://github.com/hacs/integration) [![codecov](https://codecov.io/gh/graham33/hass-smartbox/branch/main/graph/badge.svg?token=F3VFCU9WPA)](https://codecov.io/gh/graham33/hass-smartbox)
Home Assistant integration for heating smartboxes.
# hass-smartbox ![hassfest](https://github.com/ajtudela/hass-smartbox/workflows/Validate%20with%20hassfest/badge.svg) [![hacs_badge](https://img.shields.io/badge/HACS-Custom-41BDF5.svg)](https://github.com/hacs/integration) [![codecov](https://codecov.io/gh/ajtudela/hass-smartbox/branch/main/graph/badge.svg?token=F3VFCU9WPA)](https://codecov.io/gh/ajtudela/hass-smartbox)
Home Assistant integration for Haverland (and other brands) heating smartboxes.

NOTE: The initial version of this integration was made by [graham33] but it was not maintained. I have taken over the project and will try to keep it up to date.

## Installation
This integration uses the [smartbox] Python module, so make sure to install that
Expand Down Expand Up @@ -140,8 +142,8 @@ file a [Github issue] with any problems.
* Graceful cleanup/shutdown of update task

[custom repository]: https://hacs.xyz/docs/faq/custom_repositories
[Github issue]: https://github.com/graham33/hass-smartbox/issues
[Github issue]: https://github.com/ajtudela/hass-smartbox/issues
[Home Assistant integration docs]: https://developers.home-assistant.io/docs/creating_integration_file_structure/#where-home-assistant-looks-for-integrations
[Home Assistant logger docs]: https://www.home-assistant.io/integrations/logger/#viewing-logs
[Home Assistant secrets management]: https://www.home-assistant.io/docs/configuration/secrets/
[smartbox]: https://github.com/graham33/smartbox
[smartbox]: https://github.com/ajtudela/smartbox
2 changes: 1 addition & 1 deletion custom_components/smartbox/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
DEFAULT_SOCKET_RECONNECT_ATTEMPTS = 3
DEFAULT_SOCKET_BACKOFF_FACTOR = 0.1

GITHUB_ISSUES_URL = "https://github.com/graham33/hass-smartbox/issues"
GITHUB_ISSUES_URL = "https://github.com/ajtudela/hass-smartbox/issues"

HEATER_NODE_TYPE_ACM = "acm"
HEATER_NODE_TYPE_HTR = "htr"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/smartbox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"version": "2.0.0-beta.2",
"config_flow": false,
"codeowners": [
"@graham33"
"@ajtudela"
],
"requirements": [
"smartbox==2.0.0b2"
Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
};
in {
devShells.${system}.default = let
python = pkgs.nur.repos.graham33.home-assistant.python;
hass-smartbox = pkgs.nur.repos.graham33.hass-smartbox.overridePythonAttrs (o: {
python = pkgs.nur.repos.ajtudela.home-assistant.python;
hass-smartbox = pkgs.nur.repos.ajtudela.hass-smartbox.overridePythonAttrs (o: {
propagatedBuildInputs = (o.propagatedBuildInputs or []) ++ (with python.pkgs; [
]);
});
Expand Down

0 comments on commit fa1ae22

Please sign in to comment.