From cd68a397f67308a9b915a98837780813750e29c5 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Tue, 1 Aug 2017 12:52:13 +0100 Subject: Add options to disable LED and cycle colours - Add disable option in manual LED control - Add mode to cycle through all colours at a given rate --- NucLedController/IControlMode.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 NucLedController/IControlMode.cs (limited to 'NucLedController/IControlMode.cs') diff --git a/NucLedController/IControlMode.cs b/NucLedController/IControlMode.cs new file mode 100644 index 0000000..04a6c07 --- /dev/null +++ b/NucLedController/IControlMode.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace NucLedController +{ + interface IControlMode + { + void Start(); + void Stop(); + } +} -- cgit v1.2.3