Atm_led_TLC.cpp 775 B

123456789101112131415161718192021222324252627282930313233343536373839
  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, current_level);
  20. }
  21. void Atm_led_TLC::switchOff() {
  22. tlc.setPWM(pin, mapLevel(toLow));
  23. }
  24. void Atm_led_TLC::setBrightness(int value) {
  25. tlc.setPWM(pin, mapLevel(value));
  26. }
  27. int Atm_led_TLC::mapLevel(int level) {
  28. current_level = map( level, toLow, toHigh, 0, 65535 );
  29. return current_level;
  30. }