|
|
@ -28,7 +28,7 @@ class TimedPin {
|
|
|
|
public:
|
|
|
|
public:
|
|
|
|
TimedPin(uint8_t pin, bool inverted = false);
|
|
|
|
TimedPin(uint8_t pin, bool inverted = false);
|
|
|
|
void begin();
|
|
|
|
void begin();
|
|
|
|
void loop();
|
|
|
|
void update();
|
|
|
|
void Blink(uint32_t t_on, uint32_t t_off, uint16_t cycles = 0);
|
|
|
|
void Blink(uint32_t t_on, uint32_t t_off, uint16_t cycles = 0);
|
|
|
|
void Blink(uint32_t t) { Blink(t, t); }
|
|
|
|
void Blink(uint32_t t) { Blink(t, t); }
|
|
|
|
void BlinkCycles(uint32_t t_on, uint32_t t_off, uint16_t cycles) { Blink(t_on, t_off, cycles); };
|
|
|
|
void BlinkCycles(uint32_t t_on, uint32_t t_off, uint16_t cycles) { Blink(t_on, t_off, cycles); };
|
|
|
|