diff options
| author | James Barnett <james.barnett@fivium.co.uk> | 2017-08-01 12:52:13 +0100 |
|---|---|---|
| committer | James Barnett <james.barnett@fivium.co.uk> | 2017-08-01 12:52:13 +0100 |
| commit | cd68a397f67308a9b915a98837780813750e29c5 (patch) | |
| tree | fcd3694a286c5a98f3a7904ffdc6b446557065d8 /NucLedController/IControlMode.cs | |
| parent | 36776bfbff6f15f7239924777651392945ebb2a0 (diff) | |
| download | intel-nuc-led-controller-cd68a397f67308a9b915a98837780813750e29c5.tar.xz intel-nuc-led-controller-cd68a397f67308a9b915a98837780813750e29c5.zip | |
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
Diffstat (limited to 'NucLedController/IControlMode.cs')
| -rw-r--r-- | NucLedController/IControlMode.cs | 14 |
1 files changed, 14 insertions, 0 deletions
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(); + } +} |