Increase touch sensitivity a bit.

This commit is contained in:
Jared Boone 2015-09-02 18:48:51 -07:00
parent 9a3454d695
commit f91f17b9fb

View File

@ -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;