Kotlin Dashboard for NVIDIA Isaac ROS Robots
NVIDIA Isaac ROS provides CUDA-accelerated packages for ROS 2, including perception, mapping, pose estimation, and motion-planning workloads. Kotlin can act as the operator-facing layer.
Architecture
Jetson
├── Isaac ROS
├── ROS 2
└── Robot drivers
↑
Gateway
↑
Android Kotlin
1. Select exposed robot capabilities
Keep the mobile API intentionally small:
GET /status
GET /detections
GET /map
POST /navigation/goal
POST /navigation/cancel
POST /robot/stop
2. Kotlin API models
data class RobotStatus(
val mode: String,
val battery: Int,
val localizationValid: Boolean
)
3. Observe Isaac ROS results
The gateway can translate ROS 2 messages into mobile-friendly JSON or protobuf messages.
Isaac ROS node
↓
ROS 2 topic
↓
Gateway adapter
↓
Mobile protocol
↓
Kotlin Flow
4. Build a Compose dashboard
Use independent UI components:
@Composable
fun StatusPanel(status: RobotStatus) {
Column {
Text("Mode: ${status.mode}")
Text("Battery: ${status.battery}%")
Text("Localization: ${status.localizationValid}")
}
}
5. Visual SLAM and maps
Isaac ROS provides Visual SLAM functionality. The Android client can visualize a simplified representation of pose and mapping state instead of performing SLAM itself.
6. Motion planning
Isaac ROS also provides GPU-accelerated motion-planning components. Keep planning and execution on the robot and expose only high-level controls to Android.
7. Version compatibility
NVIDIA's supported platform matrix can change between Isaac ROS releases, JetPack versions, and Jetson hardware. Check the current Isaac ROS documentation before selecting a deployment combination.
Conclusion
The combination of Kotlin, Android, ROS 2, Isaac ROS, and Jetson creates a clean separation between operator experience and GPU-accelerated robotics computation.
References
- NVIDIA Isaac ROS: https://developer.nvidia.com/isaac/ros
- NVIDIA Isaac: https://developer.nvidia.com/isaac
Useful Links
Website: www.v-modal.com
SDK Flutter: https://github.com/v-modal/vmodal_sdk_flutter
SDK Android: https://github.com/v-modal/vmodal_sdk_android
Discord: https://discord.gg/K72z28KUx
Top comments (0)