make astyle

pull/135/head
Jesse Vincent 8 years ago
parent 9825e4057a
commit d75939d456
No known key found for this signature in database
GPG Key ID: 122F5DF7108E4046

@ -63,7 +63,7 @@ const Key keymaps[][ROWS][COLS] PROGMEM = {
NUMPAD NUMPAD
}; };
static LEDSolidColor solidRed (60, 0, 0); static LEDSolidColor solidRed (60, 0, 0);
static LEDSolidColor solidOrange (60, 20, 0); static LEDSolidColor solidOrange (60, 20, 0);

@ -116,15 +116,13 @@ Kaleidoscope_::focusHook(const char *command) {
return false; return false;
switch (subCommand) { switch (subCommand) {
case ON: case ON: {
{
uint8_t layer = Serial.parseInt(); uint8_t layer = Serial.parseInt();
Layer.on(layer); Layer.on(layer);
break; break;
} }
case OFF: case OFF: {
{
uint8_t layer = Serial.parseInt(); uint8_t layer = Serial.parseInt();
Layer.off(layer); Layer.off(layer);
break; break;

@ -60,7 +60,9 @@ class Kaleidoscope_ {
public: public:
Kaleidoscope_(void); Kaleidoscope_(void);
void setup(const byte keymap_count) { setup(); }; void setup(const byte keymap_count) {
setup();
};
void setup(void); void setup(void);
void loop(void); void loop(void);
void use(KaleidoscopePlugin *plugin, ...) __attribute__((sentinel)); void use(KaleidoscopePlugin *plugin, ...) __attribute__((sentinel));

Loading…
Cancel
Save