You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kaleidoscope/src/LED-Off.h

13 lines
169 B

#pragma once
#include "Kaleidoscope-LEDControl.h"
class LEDOff_ : public LEDMode {
public:
LEDOff_(void) { }
void update(void) final;
};
extern LEDOff_ LEDOff;