Kaynağa Gözat

added atm_led_tlc

titi 5 yıl önce
ebeveyn
işleme
99ac3f0ab0
3 değiştirilmiş dosya ile 61 ekleme ve 1 silme
  1. 1 1
      Atm_AccelStepper.h
  2. 32 0
      Atm_led_TLC.cpp
  3. 28 0
      Atm_led_TLC.h

+ 1 - 1
Atm_AccelStepper.h

@@ -1,7 +1,7 @@
 #pragma once
 //#ifdef AccelStepper_h
 #include <Automaton.h>
-#include <AccelStepper.h>
+#include "AccelStepper.h"
 
 class Atm_AccelStepper: public Machine {
 

+ 32 - 0
Atm_led_TLC.cpp

@@ -0,0 +1,32 @@
+/*
+ * Atm_led_mcp.cpp
+ *
+ *  Created on: 09.12.2017
+ *      Author: ian
+ */
+
+#include <Atm_led_TLC.h>
+#include <Atm_led.hpp>
+
+Atm_led_TLC::Atm_led_TLC(Adafruit_TLC59711& _tlc):
+	Atm_led(),			// base class ctor would also be called implicitly, but better style to mention this explicitly :)
+	tlc(_tlc) {
+	// nothing to see here
+}
+
+void Atm_led_TLC::initLED() {
+	tlc.setPWM(pin, 0);
+	Serial.printf("LED init on pin %x\n", pin);
+}
+
+void Atm_led_TLC::switchOn() {
+	tlc.setPWM(pin, 65535);
+}
+
+void Atm_led_TLC::switchOff() {
+	tlc.setPWM(pin, 0);
+}
+
+void Atm_led_TLC::setBrightness(int value) {
+	tlc.setPWM(pin, value);
+}

+ 28 - 0
Atm_led_TLC.h

@@ -0,0 +1,28 @@
+/*
+ * Atm_led_mcp.h
+ *
+ *  Created on: 09.12.2017
+ *      Author: ian
+ */
+
+#ifndef ATM_LED_TLC_H_
+#define ATM_LED_TLC_H_
+
+#include "Adafruit_TLC59711.h"
+#include <Atm_led.hpp>
+
+class Atm_led_TLC: public Atm_led {
+public:
+	Atm_led_TLC(Adafruit_TLC59711& _tlc);
+
+private:
+	Adafruit_TLC59711& tlc;
+
+protected:
+	virtual void initLED();
+	virtual void switchOn();
+	virtual void switchOff();
+    virtual void setBrightness(int value);
+};
+
+#endif /* SRC_ATM_LED_MCP_H_ */