Auto Brightness
- Hue now thread safe - Added the auto-brightness * probably realistic enough * probably a bit buggy - Added test for it - Rearranged imports
This commit is contained in:
@@ -3,7 +3,6 @@ package device.fitbitdata;
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
import java.sql.Timestamp;
|
||||
import java.text.ParseException;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.ArrayList;
|
||||
@@ -52,7 +51,7 @@ public class Sleep {
|
||||
public final long start_date;
|
||||
public final long duration;
|
||||
|
||||
public SleepData(Date start_date, long duration) {
|
||||
SleepData(Date start_date, long duration) {
|
||||
this.start_date = start_date.getTime();
|
||||
this.duration = duration;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user