Difference between revisions of "Self Driving RC Car/2020"
Jump to navigation
Jump to search
Line 163: | Line 163: | ||
Help Wanted -please file an issue if you want to things running on Windows. | Help Wanted -please file an issue if you want to things running on Windows. | ||
= Deployment = | = Deployment = | ||
+ | |||
Deploying to your Raspberry is done by compiling e.g. on a laptop and then transferring | Deploying to your Raspberry is done by compiling e.g. on a laptop and then transferring | ||
the results to your PI. | the results to your PI. | ||
Line 258: | Line 259: | ||
http://localhost:8080 | http://localhost:8080 | ||
or using the index.html file or detect.html files from the sources in rc-webcontrol/src/main/resources/web/ | or using the index.html file or detect.html files from the sources in rc-webcontrol/src/main/resources/web/ | ||
+ | == Starting all together == | ||
+ | The start script will let you pick the components you'd like to start. | ||
+ | <source lang='bash'> | ||
+ | scripts/start -h | ||
+ | start [-d|-h] | ||
+ | |||
+ | -a |--all : run all parts of the software | ||
+ | -c |--car : run car software on pi | ||
+ | -s |--server : run server software | ||
+ | -r |--remote : point webbrowser to remot control | ||
+ | -w |--web : point webbrowser to detect.html | ||
+ | -d |--debug : debug this script | ||
+ | -h |--help : show this usage | ||
+ | </source> | ||
+ | So <nowiki>scripts/start -a</nowiki> will start | ||
+ | # the car software on the pi | ||
+ | # the server software e.g. on you laptop | ||
+ | # point your webrowser to the detect.html page (after waiting for the page to get available) | ||
= First Experiments = | = First Experiments = |