Atm_led_TLC.h 516 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Atm_led_mcp.h
  3. *
  4. * Created on: 09.12.2017
  5. * Author: ian
  6. */
  7. #ifndef ATM_LED_TLC_H_
  8. #define ATM_LED_TLC_H_
  9. #include "Adafruit_TLC59711.h"
  10. #include <Atm_led.hpp>
  11. class Atm_led_TLC: public Atm_led {
  12. public:
  13. Atm_led_TLC(Adafruit_TLC59711& _tlc);
  14. private:
  15. Adafruit_TLC59711& tlc;
  16. int current_level;
  17. protected:
  18. virtual void initLED();
  19. virtual void switchOn();
  20. virtual void switchOff();
  21. virtual void setBrightness(int value);
  22. virtual int mapLevel(int level);
  23. };
  24. #endif /* SRC_ATM_LED_MCP_H_ */