RGBController/RGBController2/Boards/IBoards.cs

31 lines
801 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace RGBController2.Boards
{
public interface IBoard
{
public bool Connected { get; }
/// <summary>
/// Sets all of the LEDs to the chosen RGB colour.
/// </summary>
/// <param name="red">The red value</param>
/// <param name="green">The green value</param>
/// <param name="blue">The blue value</param>
public void SetAllLeds(byte red, byte green, byte blue)
{
throw new NotImplementedException();
}
/// <summary>
/// Turns off all of the LEDs connected to the board.
/// </summary>
public void TurnOffAllLeds()
{
throw new NotImplementedException();
}
}
}