mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 04:44:49 +00:00
Resolves #201
Improvements to CenRfgwController Addition of Button Extensions Addition of Hrxxx0WirelessRemoteController Addition of InfinetId to EssentialsControlPropertiesConfig Addition of CrestronRemotePropertiesConfig
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using Crestron.SimplSharp;
|
||||
using Crestron.SimplSharpPro;
|
||||
using Crestron.SimplSharpPro.DeviceSupport;
|
||||
|
||||
using PepperDash.Core;
|
||||
|
||||
namespace PepperDash.Essentials.Core
|
||||
{
|
||||
public static class ButtonExtensions
|
||||
{
|
||||
public static Button SetButtonAction(this Button button, Action<bool> a)
|
||||
{
|
||||
button.UserObject = a;
|
||||
return button;
|
||||
}
|
||||
|
||||
public static Button SetButtonAction(this CrestronCollection<Button> bc, uint sigNum, Action<bool> a)
|
||||
{
|
||||
return bc[sigNum].SetButtonAction(a);
|
||||
}
|
||||
|
||||
public static bool GetBool(this CrestronCollection<Button> bc, uint sigNum)
|
||||
{
|
||||
return bc[sigNum].State == eButtonState.Pressed ? true : false;
|
||||
}
|
||||
|
||||
public static Button SetButtonPressedAction(this CrestronCollection<Button> bc, uint sigNum, Action a)
|
||||
{
|
||||
return bc[sigNum].SetButtonAction(b => { if (b) a(); });
|
||||
}
|
||||
|
||||
public static Button SetButtonReleasedAction(this CrestronCollection<Button> bc, uint sigNum, Action a)
|
||||
{
|
||||
return bc[sigNum].SetButtonAction(b => { if (!b) a(); });
|
||||
}
|
||||
|
||||
public static Button SetButtonFalseAction(this Button button, Action a)
|
||||
{
|
||||
return button.SetButtonAction(b => { if (!b) a(); });
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user