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/KeyboardioFirmware.h

41 lines
713 B

#pragma once
#include <Arduino.h>
//end of add your includes here
#ifdef __cplusplus
extern "C" {
#endif
11 years ago
void loop();
void setup();
#ifdef __cplusplus
} // extern "C"
#endif
//add your function definitions for the project KeyboardIO here
11 years ago
#define TS(X) //Serial.print(micros() );Serial.print("\t");Serial.println(X);
11 years ago
#include <Wire.h>
#include <stdio.h>
#include <math.h>
#include <avr/wdt.h>
#include "KeyboardConfig.h"
#include "generated/keymaps.h"
#include "key_events.h"
extern uint8_t matrixState[ROWS][COLS];
extern const Key keymaps[KEYMAPS][ROWS][COLS];
extern uint8_t primary_keymap;
extern uint8_t temporary_keymap;
void scan_matrix();
9 years ago
#ifndef VERSION
#define VERSION "locally-built"
#endif
11 years ago