]> git.piffa.net Git - sketchbook_andrea/commitdiff
Common, cambiato il behaiour di RGB LED:
authorAndrea Manni <andrea@piffa.net>
Tue, 28 Nov 2017 18:46:33 +0000 (19:46 +0100)
committerAndrea Manni <andrea@piffa.net>
Tue, 28 Nov 2017 18:46:33 +0000 (19:46 +0100)
il default e' 0 = common catodo
Per farlo common anodo passare 1 come parametro

libraries/common/common.cpp
libraries/common/common.h
libraries/common/examples/rgb/rgb.ino

index e99f202804a45134155d354388719b26f8b1d0de..4a886b26cc95186a358d0cd66af4abc5a5c27052 100644 (file)
@@ -21,7 +21,7 @@ RGBLed::RGBLed(byte pinR, byte pinG, byte pinB) {
     redPin    = pinR ;
     greenPin  = pinG ;
     bluePin   = pinB ;
-    common    = 255 ;
+    common    = 0 ;
 
     // Equvalente del Setup() per inizializzare i PIN
     pinMode(redPin, OUTPUT);
@@ -44,17 +44,24 @@ RGBLed::RGBLed(byte pinR, byte pinG, byte pinB, byte com) {
 
 void RGBLed::SetColor (byte r, byte g, byte b) {
 // Imposta il colore di un LED RGB
-    analogWrite(redPin,   common - r);
-    analogWrite(greenPin, common - g);
-    analogWrite(bluePin,  common - b);
+  if (common == 0) {
+    analogWrite(redPin,    r);
+    analogWrite(greenPin,  g);
+    analogWrite(bluePin,   b);
+  } else {
+    analogWrite(redPin,   255 - r);
+    analogWrite(greenPin, 255 - g);
+    analogWrite(bluePin,  255 - b);
+  }
+
 
 // Debug
 #ifdef DEBUG
-   Serial.print(common - r);
+   Serial.print(r);
    Serial.print("-");
-   Serial.print(common - g);
+   Serial.print(g);
    Serial.print("-");
-   Serial.print(common - b);
+   Serial.print(b);
    while(1);
 #endif
 
index 97689614f08c1a5a7a119e960f17c10ba206b639..440abf4f803dcb8d82e35a6fae6e94b1907bc7c0 100644 (file)
@@ -48,7 +48,7 @@ class RGBLed {
     byte redValue ;
     byte greenValue ;
     byte blueValue ;
-    byte common ;
+    boolean common ;
 
   public:
     RGBLed (byte pinR, byte pinG, byte pinB) ;
index 7e1026d8ac910531e4b004621a413c55222282a9..b1b243eefdc20f753b07a6d4e418e5420159cd4f 100644 (file)
@@ -13,8 +13,8 @@ void setup() {
 // Instanziamo un LED
 RGBLed led(11, 10,9); //Istanziamo un oggetto led (default common catodo)
 // facente parte della classe RGBLed
-// RGBLed led(11, 10,9,255); // Stessa cosa: 255 = common catodo = (255 - value)
-//RGBLed led(10,9,11,0); // Inizializzazione Common anodo
+// RGBLed led(11, 10,9,0); // Stessa cosa: 255 = common catodo = (255 - value)
+//RGBLed led(10,9,11,1); // Inizializzazione Common anodo
 
 void loop() {
   led.Red();