using System;
using System.Collections.Generic;
using System.Text;
namespace RGBController2.Boards
{
public interface IBoard
{
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();
}
}
}