
Cross-platform mobile application for bus drivers, trip dispatchers and fleet operators to collect real-time vehicle telemetry, GPS tracking, and operational events.
(Work in progress)
- Figma: Prototipo de la aplicación móvil
- Google Sheets: Acciones y endpoints de la API
- Databús API: Documentación de la API de Databús
flowchart TD
Splash
IsLoggedIn
Login
subgraph TABS
Home
Runs
Alerts
Profile
end
subgraph HOME
subgraph HOME-SEGMENTS
Info
History
end
end
subgraph RUNS
subgraph MODAL
RunSetup
end
RunProgress
end
subgraph ALERTS
subgraph ALERTS-SEGMENTS
ActiveAlerts
Messages
end
end
subgraph PROFILE
ProfileInfo
subgraph PM[MODAL]
EditProfile
end
end
Splash --> IsLoggedIn
IsLoggedIn --"yes"--> TABS
IsLoggedIn --"no"--> Login
Login --> TABS
Home --> HOME
Runs --> RUNS
Alerts --> ALERTS
Profile --> PROFILE
RunSetup --> RunProgress
ProfileInfo --> EditProfile