1
0
forked from me/IronOS

Reduce sensivity to make it much more usable.

This commit is contained in:
Ben V. Brown
2017-09-27 09:52:10 +10:00
parent e351527dd2
commit 830433d854
2 changed files with 3 additions and 4 deletions

View File

@@ -722,8 +722,8 @@ void startMOVTask(void const * argument) {
int32_t avgx, avgy, avgz;
for (;;) {
int32_t threshold = 550 + (9 * 50);
threshold -= systemSettings.sensitivity * 50;
int32_t threshold = 600 + (9 * 120);
threshold -= systemSettings.sensitivity * 120;
accel.getAxisReadings(&tx, &ty, &tz);
datax[currentPointer] = tx;