mirror of
https://github.com/sanni/cartreader.git
synced 2025-02-17 13:36:19 +01:00
Remove Arduino-RGB-Tools lib, use analogWrite instead
This commit is contained in:
parent
a1398ea8c4
commit
12376730a6
@ -12,7 +12,6 @@
|
|||||||
GFX Lib: https://github.com/adafruit/Adafruit-GFX-Library
|
GFX Lib: https://github.com/adafruit/Adafruit-GFX-Library
|
||||||
BusIO: https://github.com/adafruit/Adafruit_BusIO
|
BusIO: https://github.com/adafruit/Adafruit_BusIO
|
||||||
LCD lib: https://github.com/olikraus/u8g2
|
LCD lib: https://github.com/olikraus/u8g2
|
||||||
RGB Tools lib: https://github.com/joushx/Arduino-RGB-Tools
|
|
||||||
Neopixel lib: https://github.com/adafruit/Adafruit_NeoPixel
|
Neopixel lib: https://github.com/adafruit/Adafruit_NeoPixel
|
||||||
Rotary Enc lib: https://github.com/mathertel/RotaryEncoder
|
Rotary Enc lib: https://github.com/mathertel/RotaryEncoder
|
||||||
SI5351 lib: https://github.com/etherkit/Si5351Arduino
|
SI5351 lib: https://github.com/etherkit/Si5351Arduino
|
||||||
@ -230,13 +229,6 @@ int rotaryPos = 0;
|
|||||||
// Neopixel
|
// Neopixel
|
||||||
#include <Adafruit_NeoPixel.h>
|
#include <Adafruit_NeoPixel.h>
|
||||||
Adafruit_NeoPixel pixels(3, 13, NEO_GRB + NEO_KHZ800);
|
Adafruit_NeoPixel pixels(3, 13, NEO_GRB + NEO_KHZ800);
|
||||||
#else
|
|
||||||
#ifndef enable_LCD
|
|
||||||
// 4 Pin RGB LED
|
|
||||||
#include <RGBTools.h>
|
|
||||||
// Set pins of red, green and blue
|
|
||||||
RGBTools rgb(12, 11, 10);
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef enum COLOR_T {
|
typedef enum COLOR_T {
|
||||||
@ -1718,6 +1710,13 @@ void setup() {
|
|||||||
#if !(defined(enable_serial) || defined(HW5))
|
#if !(defined(enable_serial) || defined(HW5))
|
||||||
DDRE |= (1 << 1);
|
DDRE |= (1 << 1);
|
||||||
#endif
|
#endif
|
||||||
|
#else
|
||||||
|
#ifndef enable_LCD
|
||||||
|
// Configure 4 Pin RGB LED pins as output
|
||||||
|
DDRB |= (1 << DDB6); // Red LED (pin 12)
|
||||||
|
DDRB |= (1 << DDB5); // Green LED (pin 11)
|
||||||
|
DDRB |= (1 << DDB4); // Blue LED (pin 10)
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef enable_OLED
|
#ifdef enable_OLED
|
||||||
@ -1816,7 +1815,10 @@ void setColor_RGB(byte r, byte g, byte b) {
|
|||||||
pixels.setPixelColor(2, pixels.Color(g, r, b));
|
pixels.setPixelColor(2, pixels.Color(g, r, b));
|
||||||
pixels.show();
|
pixels.show();
|
||||||
#else
|
#else
|
||||||
rgb.setColor(r, g, b);
|
// Set color of analog 4 Pin RGB LED
|
||||||
|
analogWrite(12, r);
|
||||||
|
analogWrite(11, g);
|
||||||
|
analogWrite(10, b);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user