home-assistant-custom-components.solax_modbus: init at 2024.09.4

Allows integrating solar inverters with Home Assistant over modbus.
This commit is contained in:
Luflosi 2024-09-20 17:27:04 +02:00
parent de184ab282
commit 630ff60e9d
No known key found for this signature in database
GPG Key ID: 743C5DD6900A1FF0
2 changed files with 31 additions and 0 deletions

View File

@ -64,6 +64,8 @@
smartthinq-sensors = callPackage ./smartthinq-sensors {};
solax_modbus = callPackage ./solax_modbus {};
solis-sensor = callPackage ./solis-sensor {};
somweb = callPackage ./somweb {};

View File

@ -0,0 +1,29 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
pymodbus,
}:
buildHomeAssistantComponent rec {
owner = "wills106";
domain = "solax_modbus";
version = "2024.09.4";
src = fetchFromGitHub {
owner = "wills106";
repo = "homeassistant-solax-modbus";
rev = "refs/tags/${version}";
hash = "sha256-xWWsV57ozzEQWRfO1t4EbwD7DWiB1go+iJbTLPuufJs=";
};
dependencies = [ pymodbus ];
meta = {
changelog = "https://github.com/wills106/homeassistant-solax-modbus/releases/tag/${version}";
description = "SolaX Power Modbus custom_component for Home Assistant (Supports some Ginlong Solis, Growatt, Sofar Solar, TIGO TSI & Qcells Q.Volt Hyb)";
homepage = "https://github.com/wills106/homeassistant-solax-modbus";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ Luflosi ];
};
}