1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-20 20:10:15 +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)) {
case GBActivitySample.PROVIDER_MIBAND:
movement_divisor = 256.0f;
annotate = true; // sample density to high?
annotate = false; // sample density to high?
use_steps_as_movement = true;
break;
default: // Morpheuz
movement_divisor = 5000.0f;
annotate = true;
annotate = false;
use_steps_as_movement = false;
break;
}