added documentation and polishing UI around GPS mode

This commit is contained in:
Carlos Guerra
2026-03-29 17:44:39 +02:00
committed by Will Greenberg
parent 66f0c2a336
commit 5451e23293
11 changed files with 68 additions and 59 deletions
+2 -1
View File
@@ -160,7 +160,8 @@ export async function get_daemon_time(): Promise<TimeResponse> {
export interface GpsData {
latitude: number;
longitude: number;
timestamp: string;
/** Unix timestamp in seconds (0 = fixed/no real time). */
timestamp: number;
}
export async function get_gps(): Promise<GpsData | null> {