Database revolution

- added in fitbitData an interface for keeping track of date
- removed annoying IOException, now will write a LOG
- same thing in sensor
- fixed main and adapted to new Database system
- Database now has Local or Remote (to implement)
This commit is contained in:
2018-09-10 21:32:09 +02:00
parent 662fb40df3
commit a4c6c095c6
13 changed files with 399 additions and 312 deletions

View File

@@ -0,0 +1,8 @@
package device.fitbitdata;
public abstract class FitbitData {
private long millisec = 0;
public void setDate(long millisec) { this.millisec = millisec; }
public long getDate() { return this.millisec; }
}