1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-09 15:11:34 +02:00

Sleep Monitor: Disable anotations for now (produces unreadable output on some devices)

This commit is contained in:
Andreas Shimokawa 2015-06-21 16:39:03 +02:00
parent da3bff0fd4
commit b1973994f0

View File

@ -230,12 +230,12 @@ public class SleepChartActivity extends Activity {
switch (getProvider(mGBDevice)) { switch (getProvider(mGBDevice)) {
case GBActivitySample.PROVIDER_MIBAND: case GBActivitySample.PROVIDER_MIBAND:
movement_divisor = 256.0f; movement_divisor = 256.0f;
annotate = true; // sample density to high? annotate = false; // sample density to high?
use_steps_as_movement = true; use_steps_as_movement = true;
break; break;
default: // Morpheuz default: // Morpheuz
movement_divisor = 5000.0f; movement_divisor = 5000.0f;
annotate = true; annotate = false;
use_steps_as_movement = false; use_steps_as_movement = false;
break; break;
} }