{"id":26448497,"url":"https://github.com/xboxone08/the_rover","last_synced_at":"2026-05-10T16:17:24.219Z","repository":{"id":50637277,"uuid":"519055755","full_name":"xboxone08/the_rover","owner":"xboxone08","description":"THE rover. Allows controlling Raspberry Pi \"rovers\" remotely and interactively from any OS's command line.","archived":false,"fork":false,"pushed_at":"2022-09-25T22:25:58.000Z","size":3689,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-13T05:34:01.819Z","etag":null,"topics":["cross-platform","gpio","picamera","python-module","python3","raspberry-pi","remote-gpio","rovers","sftp","wasd-controls"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xboxone08.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-29T02:33:36.000Z","updated_at":"2023-04-09T23:27:10.000Z","dependencies_parsed_at":"2023-01-18T21:32:41.245Z","dependency_job_id":null,"html_url":"https://github.com/xboxone08/the_rover","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/xboxone08/the_rover","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xboxone08%2Fthe_rover","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xboxone08%2Fthe_rover/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xboxone08%2Fthe_rover/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xboxone08%2Fthe_rover/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xboxone08","download_url":"https://codeload.github.com/xboxone08/the_rover/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xboxone08%2Fthe_rover/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32862539,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"ssl_error","status_checked_at":"2026-05-10T13:40:02.145Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cross-platform","gpio","picamera","python-module","python3","raspberry-pi","remote-gpio","rovers","sftp","wasd-controls"],"created_at":"2025-03-18T14:34:44.714Z","updated_at":"2026-05-10T16:17:24.188Z","avatar_url":"https://github.com/xboxone08.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# the_rover\nTHE rover. Allows controlling Raspberry Pi \"rovers\" remotely and interactively from any OS's command line.\n## Installation\nThere are five methods:\n- Clone the repository and manually install the [requirements](requirements.txt).\n\n- Clone the repository and run `pip(3) install -r requirements.txt` to install the requirements to the active Python installation.\n\n- Clone the repository and run `pip(3) install .` in the directory you cloned it into to do the same thing and allow running with `(python(3) -m )the_rover` in your terminal.\n\n- Don't clone the repository. Just download the .whl file in the latest release and `pip install` it.\n\n- Don't clone the repository. Just `pip install the_rover` to install from PyPi.\n\n## Setup\n### System running the code\n- The code can be run from any OS, but must connect to a (or multiple) Raspberry Pi \"rover(s)\".\n\n- The system running the code must have `gpiozero`, `pigpio`, `keyboard`, and `fabric` installed (Automatically installed using the last four commands for installation).\n\n### Raspberry Pi \"Rover\"\n- The code expects pins 19 and 26 to control your front left motor, 16 and 20 your front right, 27 and 22 your back left, and 23 and 24 you back right (BCM numbering). The pins to which these numbers correspond to on your Pi can be found by running the `pinout` command in Bash or at [pinout.xyz](pinout.xyz).\n\n- The code makes use of Remote GPIO to control the rover Pi, so it must have the \"Remote GPIO\" interface enabled in `sudo raspi-config`/Raspberry Pi Configuration/config.txt, have the `pigpio` Python module installed (`pip3 install pigpio`), and must `systemctl enable pigpiod` or alternatively use cron (`sudo crontab -e`) to run `pigpiod` at startup (`@reboot`) (Doesn't requires enabling Remote GPIO. Useful for allowing only specific IPs/hostnames using the `-n` flag. See the [Remote GPIO documentation](https://gpiozero.readthedocs.io/en/stable/remote_gpio.html#command-line-pigpiod) for more details.)\n\n- The code uses `raspistill`, so the \"Camera\" interface must be enabled in `sudo raspi-config`/Raspberry Pi Configuration/config.txt, and a PiCamera must be connected (Instructions [here](https://picamera.readthedocs.io/en/release-1.13/quickstart.html)).\n\n- The code uses SSH and SFTP, so the \"SSH\" interface must be enabled.\n\n## Usage\n### Running\nOnce in the directory you cloned the repository to, you can run the code by using `python(3) the_rover(/__main__.py)` unless you used the last two methods of installation.\n\nOr, if you installed it using any of the last three installation commands, `(python(3) -m )the_rover` from anywhere.\n\nNote: Due to its dependency on the `keyboard` module, the code must be run with `sudo` on most Linux systems.\n\n### Once running\n- Press \u003ckbd\u003en\u003c/kbd\u003e to switch to next rover (wraps around).\n- Press \u003ckbd\u003ep\u003c/kbd\u003e to switch to previous rover (wraps around).\n- Press \u003ckbd\u003ec\u003c/kbd\u003e to capture a picture with the picamera (and download it to the current working directory).\n- WASD for controlling rover. (Only one control at a time.)\n\n###### Note: All parenthesized parts of commands are optional/only needed in specific scenarios\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxboxone08%2Fthe_rover","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxboxone08%2Fthe_rover","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxboxone08%2Fthe_rover/lists"}