I Told a Robot to "Clean the Kitchen", and It Actually Did
A new robot project called NavMind allows users to command a virtual robot to clean specific rooms using plain English. The robot navigates a simulated house, executes cleaning tasks, and provides commentary throughout the process. The project highlights both the capabilities and challenges of developing robotics software without relying on cloud services or physical hardware.
- ▪NavMind is a robot that operates in a simulated environment and responds to natural language commands.
- ▪The robot can navigate to different rooms, perform cleaning tasks, and return to its base autonomously.
- ▪The project was developed entirely on a personal laptop without cloud services or physical robots.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3959140) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Sudeeksha Chagarlamudi Posted on May 29 I Told a Robot to "Clean the Kitchen", and It Actually Did #robotics #ros2 #ai #python I typed "Clean the kitchen" into a chat box. A robot turned toward the right room, drove over, swept the floor in a tidy back-and-forth pattern, and came back home, while describing what it was doing the whole way. No buttons, no coordinates, no code to write each time. Just a sentence. I built this over the last few weeks.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).