Wednesday 4 August 2021

To define tapping term in bluemicro

 
/* THIS IS TO DEFINE THE TAPPING TERM
        To change the tapping term for hold and double tap, kindly refer to KeyState.h, and modified in keyboard_config.h, this will override keystate.h
        Suggest timing:
            200/20 or 80? as default
            175/15
            140/20

            
#ifndef DOUBLETAP_TIME_LIMIT
  #define DOUBLETAP_TIME_LIMIT 200
#endif
#ifndef TIME_TILL_HOLD
  #define TIME_TILL_HOLD 200
#endif
#ifndef TIME_TILL_RELEASE
  #define TIME_TILL_RELEASE 20 // was 80
#endif

*/