diff --git a/CPX_GBoard/touch_beeps.py b/CPX_GBoard/touch_beeps.py index c7a52846..6102bb61 100644 --- a/CPX_GBoard/touch_beeps.py +++ b/CPX_GBoard/touch_beeps.py @@ -18,7 +18,8 @@ from adafruit_circuitplayground.express import cpx DOT_DURATION = 0.20 DASH_DURATION = 0.5 -cpx.adjust_touch_threshold(600) +# You can adjust this to get the level of sensitivity you want. +cpx.adjust_touch_threshold(100) while True: if cpx.touch_A4: diff --git a/CPX_GBoard/touch_hid.py b/CPX_GBoard/touch_hid.py index 346bb3a6..cb29a587 100644 --- a/CPX_GBoard/touch_hid.py +++ b/CPX_GBoard/touch_hid.py @@ -20,7 +20,9 @@ DOT_DURATION = 0.25 DASH_DURATION = 0.5 kbd = Keyboard() -cpx.adjust_touch_threshold(600) + +# You can adjust this to get the level of sensitivity you want. +cpx.adjust_touch_threshold(100) while True: diff --git a/CPX_GBoard/universal.py b/CPX_GBoard/universal.py index 0aed24ac..fb0e16a1 100644 --- a/CPX_GBoard/universal.py +++ b/CPX_GBoard/universal.py @@ -27,8 +27,9 @@ from adafruit_circuitplayground.express import cpx DOT_DURATION = 0.20 DASH_DURATION = 0.5 +# You can adjust this to get the level of sensitivity you want. # Uncomment the next line if you want to use capacitive touch. -# cpx.adjust_touch_threshold(600) +# cpx.adjust_touch_threshold(100) # Uncomment the next 6 lines if you want to use external buttons # button_a = DigitalInOut(board.A4)