af14e672c9
* Allow the knight animation to be restricted to a portion of the LED strip * Add keys for jumping directly to particular animation modes * Remove orphaned break statements * Tweak the `RGB_MODE` buttons so they cycle through the same mode. * small indentation fix * Add a new revision of the clueboard with 18 underlight LEDs
17 lines
227 B
C
17 lines
227 B
C
#ifndef CLUEBOARD_H
|
|
#define CLUEBOARD_H
|
|
|
|
#ifdef SUBPROJECT_rev1
|
|
#include "rev1.h"
|
|
#endif
|
|
#ifdef SUBPROJECT_rev2
|
|
#include "rev2.h"
|
|
#endif
|
|
#ifdef SUBPROJECT_rev3
|
|
#include "rev3.h"
|
|
#endif
|
|
|
|
#include "quantum.h"
|
|
|
|
#endif
|