29 lines
761 B
C#
29 lines
761 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace RGBController2.Boards
|
|||
|
{
|
|||
|
public interface IBoard
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|