19 lines
374 B
C#
19 lines
374 B
C#
using HomeAssistantGenerated;
|
|
using NetDaemonInterface;
|
|
using System.Reactive.Concurrency;
|
|
|
|
namespace NetDaemonInterface;
|
|
|
|
/// <summary>
|
|
/// Interface used for providing inputs/events to area's
|
|
/// </summary>
|
|
public interface IDeviceControl
|
|
{
|
|
|
|
/// <summary>
|
|
/// Werteänderung
|
|
/// </summary>
|
|
public void Idle(IEntities entities, IScheduler scheduler);
|
|
|
|
}
|