This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
2019-04-20 08:05:10 -07:00

16 lines
283 B
C

#ifndef SPLIT_KEYBOARD_UTIL_H
#define SPLIT_KEYBOARD_UTIL_H
#include <stdbool.h>
#include "eeconfig.h"
extern volatile bool isLeftHand;
// slave version of matix scan, defined in matrix.c
void matrix_slave_scan(void);
void split_keyboard_setup(void);
bool has_usb(void);
#endif