From 7c7f0878983c45b7b4c226bd3e3951bd281b9a41 Mon Sep 17 00:00:00 2001 From: Trevor Payne Date: Thu, 20 Apr 2023 12:29:34 -0500 Subject: [PATCH] feature: added additional parameters to IHasPowerCycleWithBatteries --- .../PepperDashEssentialsBase/Devices/PowerInterfaces.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Devices/PowerInterfaces.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Devices/PowerInterfaces.cs index bbb9460b..06cb9ddb 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Devices/PowerInterfaces.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Devices/PowerInterfaces.cs @@ -49,7 +49,7 @@ namespace PepperDash.Essentials.Core /// /// Interface for any device that is able to control its power, has a configurable reboot time, and has batteries that can be monitored /// - public interface IHasPowerCycleWithBatteries : IHasPowerCycle + public interface IHasPowerCycleWithBatteries : IHasPowerCycle, IHasBatteryStats { }