Atm_led_WS2812.cpp 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Atm_led_mcp.cpp
  3. *
  4. * Created on: 09.12.2017
  5. * Author: ian
  6. */
  7. #include <Atm_led_WS2812.h>
  8. #include <Atm_led.hpp>
  9. Atm_led_WS2812::Atm_led_WS2812(CRGB& _leds ):
  10. Atm_led(),
  11. leds(_leds) {
  12. // nothing to see here
  13. }
  14. void Atm_led_WS2812::initLED() {
  15. leds = CRGB::White;
  16. FastLED.show() ;
  17. //Serial.printf("WS2812 init %x\n", pin);
  18. }
  19. void Atm_led_WS2812::switchOn() {
  20. color.val = pwm_max ;
  21. leds = color ;
  22. FastLED.show() ;
  23. }
  24. void Atm_led_WS2812::switchOff() {
  25. color.val = pwm_min ;
  26. leds = color ;
  27. FastLED.show() ;
  28. }
  29. void Atm_led_WS2812::setBrightness(int value) {
  30. color.val = value ;
  31. leds = color ;
  32. // leds[pin].r = r;
  33. // leds[pin].g = g;
  34. // leds[pin].b = b;
  35. FastLED.show() ;
  36. }
  37. Atm_led_WS2812& Atm_led_WS2812::setMinMax(int min, int max) {
  38. this->pwm_min = min ;
  39. this->pwm_max = max ;
  40. return *this;
  41. }
  42. Atm_led_WS2812& Atm_led_WS2812::setHueSat(int hue, int sat) {
  43. this->color.hue = hue ;
  44. this->color.sat = sat ;
  45. return *this;
  46. }