https://github.com/zepdev/self-driving-car
https://github.com/zepdev/self-driving-car
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zepdev/self-driving-car
- Owner: zepdev
- Created: 2019-11-15T13:57:39.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-05-06T20:04:53.000Z (over 4 years ago)
- Last Synced: 2025-01-18T11:23:13.085Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 7.08 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## client
- Runs on RCcar (RaspberryPi). Two applications, `app` and `sender`, they should run together.
- app: Main application for driving the car. Start via `bash run.sh`.
- sender: This is a docker application that sends data to the server. Run it with docker-compose:
```
$ docker-compose build
$ docker-compose up -d
```
Read the logs with
```
$ docker-compose logs --tail=20
```
Info: The RPi should have internet connection through WiFi.
## server
Simple http message collector. Gets data from RCcar and stores it in Amazon S3. Run on an EC2 instance with docker-compose:
```
$ docker-compose build
$ docker-compose up -d
```