* make bpiphany directory with simple readme file * move unloved_bastard to bpiphany directory * move frosty_flake to bpiphany directory * move pegasushoof to bpiphany directory * move tiger_lily to bpiphany directory * add a little more info to readme * move kitten_paw to bpiphany directory * update make instructions * update intro text * add missing routines to matrix.c of unloved_bastard * add missing routines
		
			
				
	
	
		
			32 lines
		
	
	
		
			781 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			781 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef CONFIG_USER_H
 | 
						|
#define CONFIG_USER_H
 | 
						|
 | 
						|
#include "../../config.h"
 | 
						|
 | 
						|
#undef MOUSEKEY_MOVE_MAX
 | 
						|
#define MOUSEKEY_MOVE_MAX       127
 | 
						|
#undef MOUSEKEY_WHEEL_MAX
 | 
						|
#define MOUSEKEY_WHEEL_MAX      110
 | 
						|
#undef MOUSEKEY_MOVE_DELTA
 | 
						|
#define MOUSEKEY_MOVE_DELTA     5
 | 
						|
#undef MOUSEKEY_WHEEL_DELTA
 | 
						|
#define MOUSEKEY_WHEEL_DELTA    1
 | 
						|
#undef MOUSEKEY_DELAY
 | 
						|
#define MOUSEKEY_DELAY 50
 | 
						|
#undef MOUSEKEY_INTERVAL
 | 
						|
#define MOUSEKEY_INTERVAL 20
 | 
						|
#undef MOUSEKEY_MAX_SPEED
 | 
						|
#define MOUSEKEY_MAX_SPEED 4
 | 
						|
#undef MOUSEKEY_TIME_TO_MAX
 | 
						|
#define MOUSEKEY_TIME_TO_MAX 30
 | 
						|
#undef MOUSEKEY_WHEEL_MAX_SPEED
 | 
						|
#define MOUSEKEY_WHEEL_MAX_SPEED 3
 | 
						|
#undef MOUSEKEY_WHEEL_TIME_TO_MAX
 | 
						|
#define MOUSEKEY_WHEEL_TIME_TO_MAX 255
 | 
						|
#undef ONESHOT_TIMEOUT
 | 
						|
#define ONESHOT_TIMEOUT 500
 | 
						|
#undef TAPPING_TOGGLE
 | 
						|
#define TAPPING_TOGGLE 2
 | 
						|
 | 
						|
#endif
 |