Blame

2ef8e4 Anonymous 2026-02-10 21:59:19
nyan initial commit
1
# Original Roomba Rover
2
3
The original roomba rover was the very first roomba rover available on https://rover.otter.land.
4
This roomba had the entire server stack, with the exception of a reverse proxy, physically located on the roomba itself.
5
This system was optimized for only one roomba to be controlled over the network. Later, a new system, dubbed the Multi Roomba Rover system, would be devised to allow for multiple roombas without needing to run a full separate server and website for each individual roomba rover, and reducing component cost per rover.
6
2c99e7 Anonymous 2026-02-10 22:00:21
3
7
The Original Roomba Rover was based on a 600 series Roomba platform. It used a Raspberry Pi 3 for hosting the website, processing video, audio, and control I/O. An Arduino was used for communication between the Raspberry Pi and the Roomba, through the roomba's debug port. The camera was a PS3 Eye camera, and the device had an entire small screen display mounted on top.
8c7429 Anonymous 2026-02-10 22:02:54
Meownyan
8
9
10
## Design caveats
11
12
This whole design did have some drawbacks which were later addressed with the introduction of the Multi-Roomba-Rover system.
13
14
### wi-fi issues
15
The pi 3's built in wi-fi wasn't very good, so it would cut out randomly, causing the entire site to be inaccessible briefly, and users would see the reverse proxy site-down message.
16
This issue was addressed in later roombas with better USB wifi adapters and a separate server for the client-facing website, allowing for smoother handling of network interruptions.