From f91f17b9fb579976b0e4aaea6c00cdbdc60fa60b Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Wed, 2 Sep 2015 18:48:51 -0700 Subject: [PATCH] Increase touch sensitivity a bit. --- firmware/application/touch.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/application/touch.hpp b/firmware/application/touch.hpp index ec0491fe..cbd13b06 100644 --- a/firmware/application/touch.hpp +++ b/firmware/application/touch.hpp @@ -38,7 +38,7 @@ using sample_t = uint16_t; constexpr sample_t sample_max = 1023; -constexpr sample_t touch_threshold = sample_max * 0.3f; +constexpr sample_t touch_threshold = sample_max * 0.5f; struct Samples { sample_t xp;