Atm_led_TLC.cpp 871 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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, pwm_max);
  20. }
  21. void Atm_led_TLC::switchOff() {
  22. tlc.setPWM(pin, pwm_min);
  23. }
  24. void Atm_led_TLC::setBrightness(int value) {
  25. tlc.setPWM(pin, value);
  26. }
  27. int Atm_led_TLC::mapLevel(int level) {
  28. current_level = map( level, toLow, toHigh, pwm_min, pwm_max );
  29. return level;
  30. }
  31. Atm_led_TLC& Atm_led_TLC::setMinMax(int min, int max) {
  32. this->pwm_min = min ;
  33. this->pwm_max = max ;
  34. return *this;
  35. }