nixos-configs/configurations/homie/modules/home-assistant/netdaemon/apps/Frontend/BathroomLight/BathroomLight.cs

61 lines
2 KiB
C#
Raw Normal View History

using System;
using HomeAssistantGenerated;
using NetDaemon.AppModel;
using NetDaemon.HassModel.Entities;
namespace NetDaemonConfig.Apps.Frontend.BathroomLight
{
[NetDaemonApp]
public class BathroomLight
{
2025-02-02 12:48:20 -05:00
private LightEntity? Entity { get; set; }
private InputTextEntity? BrightnessInput { get; set; }
2025-02-02 12:48:20 -05:00
private void BrightnessCallback(Action<double, double> callback)
{
double? currentBrightness = this.Entity?.Attributes?.Brightness;
2025-02-02 12:48:20 -05:00
if (currentBrightness is not null)
{
2025-02-02 12:48:20 -05:00
double currentBrightnessPercent = Math.Floor((double)currentBrightness / 2.54);
double inputBrightnessPercent = double.Parse(this.BrightnessInput?.State ?? "0");
2025-02-02 12:48:20 -05:00
if (currentBrightnessPercent != inputBrightnessPercent)
{
2025-02-02 12:48:20 -05:00
callback(currentBrightnessPercent, inputBrightnessPercent);
}
2025-02-02 12:48:20 -05:00
}
}
public BathroomLight(Services services, Entities entities)
{
// ZigBee needs restart to access Light
entities.Button.Slzb06p7CoreRestart.Press();
2025-02-02 12:48:20 -05:00
this.Entity = entities.Light.Tz3210KatchgxyTs0505bLight;
this.BrightnessInput = entities.InputText.BathroomLightBrightness;
this.BrightnessInput
.StateAllChanges()
2025-02-02 12:48:20 -05:00
.Subscribe((_) =>
this.BrightnessCallback((_, input) =>
services.Light.TurnOn(
target: ServiceTarget.FromEntity("light.tz3210_katchgxy_ts0505b_light"),
brightness: Math.Floor(input * 2.54 + 1))));
2025-02-02 12:48:20 -05:00
this.Entity
.StateAllChanges()
2025-02-02 12:48:20 -05:00
.Subscribe((_) =>
this.BrightnessCallback((current, _) =>
this.BrightnessInput.SetValue(current.ToString())));
// Init value
2025-02-02 12:48:20 -05:00
this.BrightnessCallback((current, _) =>
this.BrightnessInput.SetValue(current.ToString()));
}
}
}