using System;
namespace RGBController2.Boards
{
///
/// Interface for LED devices.
///
public interface IBoard
{
///
/// The connection status of the device.
///
public bool Connected { get; }
///
/// Sets all of the LEDs to the chosen RGB colour.
///
/// The red value
/// The green value
/// The blue value
public void SetAllLeds(byte red, byte green, byte blue)
{
throw new NotImplementedException();
}
///
/// Turns off all of the LEDs connected to the board.
///
public void TurnOffAllLeds()
{
throw new NotImplementedException();
}
}
}