Update Bluetooth logger files

This commit is contained in:
2026-08-18 18:52:29 -06:00
parent eb16dbaeac
commit ffac2efd22
585 changed files with 4505 additions and 422 deletions
@@ -17,6 +17,12 @@ public class TrackerDatabase extends SQLiteOpenHelper {
super(context, DB_NAME, null, DB_VERSION);
}
public List<LocationPoint> history(String address, long historyFrom, long historyTo)
{
// TODO: Implement this method
return null;
}
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE devices (address TEXT PRIMARY KEY,name TEXT," +
"connected INTEGER NOT NULL DEFAULT 0,connected_at INTEGER DEFAULT 0," +