From bb25fcffcf35cd9fc2b3e1b2215fc02df02626d9 Mon Sep 17 00:00:00 2001 From: lkroliko Date: Sat, 7 Jan 2017 22:59:49 +0100 Subject: [PATCH] Add more PWM channels to PCA9685 hello :) PCA9685 have 16 channels https://www.adafruit.com/product/815 --- Raspberry.IO.Components/Controllers/Pca9685/PwmChannel.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Raspberry.IO.Components/Controllers/Pca9685/PwmChannel.cs b/Raspberry.IO.Components/Controllers/Pca9685/PwmChannel.cs index 696d332..0104072 100644 --- a/Raspberry.IO.Components/Controllers/Pca9685/PwmChannel.cs +++ b/Raspberry.IO.Components/Controllers/Pca9685/PwmChannel.cs @@ -1,4 +1,4 @@ -namespace Raspberry.IO.Components.Controllers.Pca9685 +namespace Raspberry.IO.Components.Controllers.Pca9685 { /// /// Denotes available PWM channels @@ -17,5 +17,9 @@ public enum PwmChannel C9 = 9, C10 = 10, C11 = 11, + C12 = 12, + C13 = 13, + C14 = 14, + C15 = 15 } -} \ No newline at end of file +}