home-assistant-custom-components.midea_ac: init at 2024.9.2

Home Assistant custom integration to control Midea (and associated
brands) air conditioners via LAN.

Co-authored-by: emilylange <git@emilylange.de>
This commit is contained in:
Martin Weinelt 2024-07-19 15:09:22 +02:00 committed by emilylange
parent 67c088da7f
commit 15d726e10d
No known key found for this signature in database
GPG Key ID: 0AD773CE46FD0F87
2 changed files with 33 additions and 0 deletions

View File

@ -34,6 +34,8 @@
mass = callPackage ./mass { };
midea_ac = callPackage ./midea_ac { };
midea_ac_lan = callPackage ./midea_ac_lan {};
midea-air-appliances-lan = callPackage ./midea-air-appliances-lan {};

View File

@ -0,0 +1,31 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
msmart-ng,
}:
buildHomeAssistantComponent rec {
owner = "mill1000";
domain = "midea_ac";
version = "2024.9.2";
src = fetchFromGitHub {
owner = "mill1000";
repo = "midea-ac-py";
rev = version;
hash = "sha256-PVR3yuyWMilmyOS341pS73c9ocOrFfJ9dwiKEYqCtM4=";
};
dependencies = [ msmart-ng ];
meta = with lib; {
description = "Home Assistant custom integration to control Midea (and associated brands) air conditioners via LAN";
homepage = "https://github.com/mill1000/midea-ac-py";
license = licenses.mit;
maintainers = with maintainers; [
hexa
emilylange
];
};
}