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.
21 lines
297 B
21 lines
297 B
8 years ago
|
// Copyright 2016 Keyboardio, inc. <jesse@keyboard.io>
|
||
10 years ago
|
// See "LICENSE" for license details
|
||
|
|
||
10 years ago
|
#define DEBUG_SERIAL false
|
||
11 years ago
|
|
||
10 years ago
|
#include "KeyboardioFirmware.h"
|
||
9 years ago
|
|
||
9 years ago
|
uint8_t primary_keymap = 0;
|
||
|
uint8_t temporary_keymap = 0;
|
||
9 years ago
|
|
||
9 years ago
|
void setup() {
|
||
8 years ago
|
Keyboardio.setup();
|
||
11 years ago
|
}
|
||
|
|
||
10 years ago
|
|
||
9 years ago
|
void loop() {
|
||
8 years ago
|
Keyboardio.loop();
|
||
11 years ago
|
}
|
||
11 years ago
|
|
||
11 years ago
|
|