rgbfill.ino 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. RGB Fill Lights
  3. Author: tobychui
  4. This is the firmware for tobychui's
  5. Programmable RGB Fill Light
  6. Recommend compiling with following board profiles
  7. - Wemos D1 Mini
  8. */
  9. #include <Adafruit_NeoPixel.h>
  10. #include "lib/tempcolor.h"
  11. // Hardware Configs
  12. #define PIN D4
  13. #define NUM_LEDS 46
  14. #define BUTTON_MODE D7
  15. #define BUTTON_ADD D6
  16. #define BUTTON_COLOR D5
  17. #define BUTTON_MINUS D0
  18. #define BUTTON_AUTOINC_DELAY 500 //Delay before auto increments
  19. #define BUTTON_HOLD_DELAY 50 //Auto-increment delays
  20. #define MAX_BRIGHTNESS 128 //Make sure the battery you using can output the current required by LEDs
  21. #define MAX_CTRLBRIGHTNESS 32 //Max brightness for signaling LED (the one above the button)
  22. //Runtimes
  23. /*
  24. Current Mode
  25. 0 = White Mode (+/- Change the K value of the light)
  26. 1 = RGB Mode (+/C/- Change the RGB values of the light)
  27. 2 = Pure Color Mode (C Change the default color palletes)
  28. 3 = Presets Mode (+/- Change the preset profile currently using)
  29. */
  30. int currentMode = 0;
  31. /*
  32. Adjusting Catergory
  33. [White Mode]
  34. 0 = Color Temperature (K)
  35. 1 = Brightness
  36. */
  37. int adjustingCatergory = 0;
  38. /*
  39. Color Values
  40. [White Mode]
  41. TEMP, Brightness, (un-used)
  42. [RGB Mode]
  43. R, G, B
  44. */
  45. int values[] = {0, 0, 0};
  46. Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800);
  47. //Set the current control LED color
  48. void setControlLEDColor(int r, int g, int b){
  49. strip.setPixelColor(0, strip.Color(r, g, b));
  50. strip.show();
  51. }
  52. //Set the current LED light color by given RGB values
  53. void setLightColor(int r, int g, int b) {
  54. for (int i = 1; i < NUM_LEDS; i++) {
  55. strip.setPixelColor(i, strip.Color(r, g, b));
  56. }
  57. strip.show();
  58. }
  59. void setup() {
  60. Serial.begin(115200);
  61. //Set the buttons to input pin
  62. pinMode(BUTTON_MODE, INPUT);
  63. pinMode(BUTTON_ADD, INPUT);
  64. pinMode(BUTTON_COLOR, INPUT);
  65. pinMode(BUTTON_MINUS, INPUT);
  66. strip.begin();
  67. // Initialize all pixels to natural warm white light
  68. setColorTemperature(4000, MAX_BRIGHTNESS/2);
  69. values[0] = 4000;
  70. values[1] = MAX_BRIGHTNESS/2;
  71. //Set ctrl LED to low brightness white
  72. setControlLEDColor(MAX_CTRLBRIGHTNESS, MAX_CTRLBRIGHTNESS, MAX_CTRLBRIGHTNESS);
  73. }
  74. void loop() {
  75. handleButtonLogic();
  76. }