Atm_led_WS2812.cpp 746 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. leds = CRGB( 0, 255, 255);
  21. // leds[pin].r = 255;
  22. // leds[pin].g = 255;
  23. // leds[pin].b = 255;
  24. FastLED.show() ;
  25. }
  26. void Atm_led_WS2812::switchOff() {
  27. leds = CRGB::Black ;
  28. FastLED.show() ;
  29. }
  30. void Atm_led_WS2812::setBrightness(int r, int g, int b) {
  31. leds = CRGB( 50, 100, 150);
  32. // leds[pin].r = r;
  33. // leds[pin].g = g;
  34. // leds[pin].b = b;
  35. FastLED.show() ;
  36. }