Atm_led_TLC.cpp 616 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Atm_led_mcp.cpp
  3. *
  4. * Created on: 09.12.2017
  5. * Author: ian
  6. */
  7. #include <Atm_led_TLC.h>
  8. #include <Atm_led.hpp>
  9. Atm_led_TLC::Atm_led_TLC(Adafruit_TLC59711& _tlc):
  10. Atm_led(), // base class ctor would also be called implicitly, but better style to mention this explicitly :)
  11. tlc(_tlc) {
  12. // nothing to see here
  13. }
  14. void Atm_led_TLC::initLED() {
  15. tlc.setPWM(pin, 0);
  16. Serial.printf("LED init on pin %x\n", pin);
  17. }
  18. void Atm_led_TLC::switchOn() {
  19. tlc.setPWM(pin, 65535);
  20. }
  21. void Atm_led_TLC::switchOff() {
  22. tlc.setPWM(pin, 0);
  23. }
  24. void Atm_led_TLC::setBrightness(int value) {
  25. tlc.setPWM(pin, value);
  26. }