diff --git a/.assets/openpilot-docs.css b/.assets/openpilot-docs.css index 206127f..a58013a 100644 --- a/.assets/openpilot-docs.css +++ b/.assets/openpilot-docs.css @@ -51,7 +51,7 @@ position: relative; margin: 0 auto; max-width:initial; - padding: 65px 25px 40px 25px; + padding: 65px 25px 110px 25px; } .navigation { @@ -95,6 +95,7 @@ margin-bottom: 16px; font-weight: 600; line-height: 1.25; + position:relative; } .markdown-section>*:first-child { margin-top: 0 !important; @@ -241,4 +242,30 @@ .navigation .label-page-title { display: none; } +} + +.markdown-section img { + max-width:100%; +} + +.anchorjs-link { + font-size: 17px; + display: block; + height: 100%; + width: 41px; + position:relative; +} + +.anchorjs-link:before { + position: absolute; + top: 50%; + left: 32px; + transform: translate(-50%,-50%); + + padding: 4px 6px; + background-color: #FFF!important; + border: 1px solid #EEE; +} +.anchorjs-link:after { + display:none; } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index d05fea0..71c14d0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -17,7 +17,7 @@ "pasteImage.nameSuffix": "", // The destination to save image file.You can use variable ${currentFileDir} and ${projectRoot}. ${currentFileDir} will be replace by the path of directory that contain current editing file. ${projectRoot} will be replace by path of the project opened in vscode. - "pasteImage.path": "${projectRoot}/assets/images", + "pasteImage.path": "${projectRoot}/images", "pasteImage.basePath": "${projectRoot}", // The string prepend to the resolved image path before paste. diff --git a/README.md b/README.md index 2cdbefc..a8f8441 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,36 @@ # Introduction -An open source documentation project for openpilot written for you by fellow members of the Comma community. +Welcome to The Openpilot Documentation Project. -## Help us create documentation +The open source initiative to document [commaai/openpilot](https://github.com/commaai/openpilot), hardware it supports, and the vehicles it supports... all with the goal of aiming to be written for people of any skill level. + +Our documents and guides will try not to assume prior knowledge of any specific term or topic (within reason). + +# Why + +The current goals of the openpilot project have a lot to do with progress and prototyping to move the technology forward and very few people are interested in moving the on-boarding experience forward. That's nobody's fault really, it's just the facts. + +So the goal is to bring a fresh take to the on-boarding experience to the table. + +What better way to do that than with GitHub and some Markdown. + +## Help create documentation Your contributions to the documentation are always welcome and will continue to make this a necessary resource for newcomers and veterans alike. [About Contributing](documentation/contributing.md) -[![Build Status](https://travis-ci.org/openpilot-community/documentation.svg?branch=master)](https://travis-ci.org/openpilot-community/documentation) \ No newline at end of file +[![Build Status](https://travis-ci.org/openpilot-community/documentation.svg?branch=master)](https://travis-ci.org/openpilot-community/documentation) + +## Support the efforts + +All of this is paid for and maintained for free. + +### Buy stickers, show support + +![](images/2018-07-12-15-27-42.png) +If you're interested, we are offering beautiful stickers for sale to help support the project, domain expenses, and hosting expenses. + +We will also vow to continue to donate our time to writing great articles and documents for you and the community. + +[Buy some stickers now!](https://redbubble.com/jfrux) \ No newline at end of file diff --git a/TABLE_OF_CONTENTS.md b/TABLE_OF_CONTENTS.md index 0f056b1..e60c577 100644 --- a/TABLE_OF_CONTENTS.md +++ b/TABLE_OF_CONTENTS.md @@ -6,28 +6,29 @@ ### Vehicles -* [Acura](./supported-vehicles/acura/README.md) - * [ILX](./supported-vehicles/acura/ilx.md) - * [RDX](./supported-vehicles/acura/rdx.md) -* [Cadillac](./supported-vehicles/cadillac/README.md) - * [CT6](./supported-vehicles/cadillac/ct6.md) -* [Chevrolet](./supported-vehicles/chevrolet/README.md) - * [Volt](./supported-vehicles/chevrolet/volt.md) -* [Honda](./supported-vehicles/honda/README.md) - * [Accord](./supported-vehicles/honda/accord.md) - * [Civic](./supported-vehicles/honda/civic.md) - * [CR-V](./supported-vehicles/honda/cr-v.md) - * [Odyssey](./supported-vehicles/honda/odyssey.md) - * [Pilot](./supported-vehicles/honda/pilot.md) - * [Ridgeline](./supported-vehicles/honda/ridgeline.md) -* [Lexus](./supported-vehicles/lexus/README.md) - * [RX](./supported-vehicles/lexus/rx.md) -* [Tesla](./supported-vehicles/tesla/README.md) - * [Model S](./supported-vehicles/tesla/model-s.md) -* [Toyota](./supported-vehicles/toyota/README.md) - * [Corolla](./supported-vehicles/toyota/corolla.md) - * [Prius](./supported-vehicles/toyota/prius.md) - * [RAV-4](./supported-vehicles/toyota/rav-4.md) +* [Overview](./vehicles/README.md) +* [Acura](./vehicles/acura/README.md) + * [ILX](./vehicles/acura/ilx.md) + * [RDX](./vehicles/acura/rdx.md) +* [Cadillac](./vehicles/cadillac/README.md) + * [CT6](./vehicles/cadillac/ct6.md) +* [Chevrolet](./vehicles/chevrolet/README.md) + * [Volt](./vehicles/chevrolet/volt.md) +* [Honda](./vehicles/honda/README.md) + * [Accord](./vehicles/honda/accord.md) + * [Civic](./vehicles/honda/civic.md) + * [CR-V](./vehicles/honda/cr-v.md) + * [Odyssey](./vehicles/honda/odyssey.md) + * [Pilot](./vehicles/honda/pilot.md) + * [Ridgeline](./vehicles/honda/ridgeline.md) +* [Lexus](./vehicles/lexus/README.md) + * [RX](./vehicles/lexus/rx.md) +* [Tesla](./vehicles/tesla/README.md) + * [Model S](./vehicles/tesla/model-s.md) +* [Toyota](./vehicles/toyota/README.md) + * [Corolla](./vehicles/toyota/corolla.md) + * [Prius](./vehicles/toyota/prius.md) + * [RAV-4](./vehicles/toyota/rav-4.md) ### Hardware diff --git a/book.json b/book.json index 5a502a3..d4554ba 100644 --- a/book.json +++ b/book.json @@ -6,6 +6,7 @@ "summary": "TABLE_OF_CONTENTS.md" }, "plugins": [ + "anchorjs", "sitemap", "edit-link", "alerts", @@ -15,6 +16,14 @@ "theme-openpilot" ], "pluginsConfig": { + "anchorjs": { + "selector": "h2,h3,h4,h5", + "icon": "#", + "placement": "left", + "class": "heading-anchor fa fa-link", + "truncate": 64, + "ariaLabel": "Anchor" + }, "sitemap": { "hostname": "https://opc.ai/documentation" }, diff --git a/hardware/eon/README.md b/hardware/eon/README.md index 2e25556..b91f120 100644 --- a/hardware/eon/README.md +++ b/hardware/eon/README.md @@ -2,8 +2,6 @@ The EON is sold as a Dashcam by Comma.ai, Inc. However, it is commonly not purchased for that purpose, rather; is used by motivated people to install third-party open source software on it known as [openpilot](). - - ## What is it made of? You'll notice that it looks like a cellphone with a funny case on it. @@ -14,5 +12,4 @@ That's because that is precisely what it is in essence. This is an [OmniPlus 3T Mounted to the back of it, and held on but 3D Printed ABS panels and pieces is a custom PCB board with a fan and large heat sync used to regulate the device from overheating because of how the CPU is clocked to do things it wasn't really ever designed to do. Which although sounds bad, is actually an amazing thing for a smartphone and it's job is very important so that's why it exists. -![Rendering of the EON from the back.](/assets/images/outward-facing%20%281%29.png) - +![Rendering of the EON from the back.](/assets/images/outward-facing%20%281%29.png) \ No newline at end of file diff --git a/hardware/pedal/guides/README.md b/hardware/pedal/guides/README.md index ddb6e46..d62846f 100644 --- a/hardware/pedal/guides/README.md +++ b/hardware/pedal/guides/README.md @@ -1 +1,5 @@ -# Pedal Guides \ No newline at end of file +# Pedal Guides + +{% for article in summary.parts[3].articles[2].articles %} +- [{{ article.title }}](/{{ article.path }}) +{% endfor %} \ No newline at end of file diff --git a/images/2018-07-12-11-51-20.png b/images/2018-07-12-11-51-20.png new file mode 100644 index 0000000..3e6f714 Binary files /dev/null and b/images/2018-07-12-11-51-20.png differ diff --git a/images/2018-07-12-11-52-29.png b/images/2018-07-12-11-52-29.png new file mode 100644 index 0000000..3e6f714 Binary files /dev/null and b/images/2018-07-12-11-52-29.png differ diff --git a/images/2018-07-12-15-27-42.png b/images/2018-07-12-15-27-42.png new file mode 100644 index 0000000..f94bd46 Binary files /dev/null and b/images/2018-07-12-15-27-42.png differ diff --git a/images/stickers.png b/images/stickers.png new file mode 100644 index 0000000..d485abd Binary files /dev/null and b/images/stickers.png differ diff --git a/images/stickers@0.75x.png b/images/stickers@0.75x.png new file mode 100644 index 0000000..56dc5a5 Binary files /dev/null and b/images/stickers@0.75x.png differ diff --git a/images/stickers@2x.png b/images/stickers@2x.png new file mode 100644 index 0000000..d0a023c Binary files /dev/null and b/images/stickers@2x.png differ diff --git a/images/stickers@3x-1.png b/images/stickers@3x-1.png new file mode 100644 index 0000000..d560e85 Binary files /dev/null and b/images/stickers@3x-1.png differ diff --git a/images/stickers@3x.png b/images/stickers@3x.png new file mode 100644 index 0000000..ce91e39 Binary files /dev/null and b/images/stickers@3x.png differ diff --git a/supported-vehicles/README.md b/supported-vehicles/README.md deleted file mode 100644 index 693ab22..0000000 --- a/supported-vehicles/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Supported Vehicles - -## How do I add support for a vehicle? - -If your car has adaptive cruise control and lane keep assist, you are in luck. Using a [panda](https://comma.ai/shop/products/panda-obd-ii-dongle/) and [cabana](https://community.comma.ai/cabana/), you can understand how to make your car drive by wire. - -Comma.ai, Inc. wrote a [porting guide](https://medium.com/@comma_ai/openpilot-port-guide-for-toyota-models-e5467f4b5fe6) for Toyota that might help you after you have the basics figured out. - -Sadly, BMW, Audi, Volvo, and Mercedes all use [FlexRay](https://en.wikipedia.org/wiki/FlexRay) and are unlikely to be supported any time soon. We also put time into a Ford port, but the steering has a 10 second cutout limitation that makes it unusable. - diff --git a/supported-vehicles/acura/README.md b/supported-vehicles/acura/README.md deleted file mode 100644 index 0357a78..0000000 --- a/supported-vehicles/acura/README.md +++ /dev/null @@ -1 +0,0 @@ -# Acura diff --git a/supported-vehicles/cadillac/README.md b/supported-vehicles/cadillac/README.md deleted file mode 100644 index 092783a..0000000 --- a/supported-vehicles/cadillac/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Cadillac - -Support for Cadillac is extremely limited. - -Only confirmed support we have at the moment is of the 2018 CT6. - -Checkout the [CT6 page](./ct6.html) for more information. \ No newline at end of file diff --git a/supported-vehicles/chevrolet/README.md b/supported-vehicles/chevrolet/README.md deleted file mode 100644 index 4ab491e..0000000 --- a/supported-vehicles/chevrolet/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Chevrolet - -Support for Chevrolet is limited to the Volt at the moment but has made great strides over the past year. Checkout the [Volt page](./volt.html) for more information. \ No newline at end of file diff --git a/supported-vehicles/honda/README.md b/supported-vehicles/honda/README.md deleted file mode 100644 index 7ac9980..0000000 --- a/supported-vehicles/honda/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# Honda - -Most modern Honda vehicles are supported as long as they have Honda Sensing package. - -The [Civic](./civic.html) seems to have the most support and works the best from our experiences. - diff --git a/supported-vehicles/honda/pilot.md b/supported-vehicles/honda/pilot.md deleted file mode 100644 index 95c2717..0000000 --- a/supported-vehicles/honda/pilot.md +++ /dev/null @@ -1,10 +0,0 @@ -# Pilot - -## 2016+ Honda Pilot with Honda Sensing - -* Alpha level support as of July 5th, 2018 -* Can only be enabled above 27 mph - -## Videos - -{{ 'https://youtu.be/PySMKW3tbDs' | video }} \ No newline at end of file diff --git a/supported-vehicles/lexus/README.md b/supported-vehicles/lexus/README.md deleted file mode 100644 index ffd4c45..0000000 --- a/supported-vehicles/lexus/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Lexus - -Lexus support is limited to the [RX](./rx.html) at the moment. Find details about the [RX here](./rx.html). \ No newline at end of file diff --git a/supported-vehicles/tesla/README.md b/supported-vehicles/tesla/README.md deleted file mode 100644 index a9f68e5..0000000 --- a/supported-vehicles/tesla/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# Tesla - diff --git a/supported-vehicles/toyota/README.md b/supported-vehicles/toyota/README.md deleted file mode 100644 index 27410b8..0000000 --- a/supported-vehicles/toyota/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Toyota - -Many great modern Toyota models have received support in the past year. - -They must have at least the TSS-P package. - -Browse the models to find out more details. \ No newline at end of file diff --git a/vehicles/.base/vehicle-make.md b/vehicles/.base/vehicle-make.md new file mode 100644 index 0000000..9b5650f --- /dev/null +++ b/vehicles/.base/vehicle-make.md @@ -0,0 +1,26 @@ +# {{ page.title }} + +{% block preIntroMessage %} + +{% endblock %} + +{% block introMessage %} +The goal is to always support as many vehicles as possible. + +Openpilot is compatible with *some* **{{ page.title }}** model(s) so feel free to browse the support pages for these models below for additional specifics. + +## Models + +This is the current list of {{page.title}} models being tested and/or actively supported by either community members or Comma.ai. Varying levels of support / testing are being done on the listed models below so please follow the links below to keep up to date on individual model progress. + +{% for article in summary.parts[page.level.split('.')[0]-1].articles[page.level.split('.')[1]-1].articles %} + - [{{ article.title }}](/{{ article.path }}) +{% endfor %} +{% endblock %} + +## How to add support for a vehicle + +If you own an unsupported vehicle but are interested in discussing porting it to openpilot, join us in the *NEW* [openpilot community chat support system](https://spectrum.chat/openpilot) and the always popular [Comma.ai Slack](https://slack.comma.ai/) if you prefer it. + +There will also be some great info on porting models in [Development Guides](../../development/guides/). + diff --git a/vehicles/.base/vehicle-model-header.md b/vehicles/.base/vehicle-model-header.md new file mode 100644 index 0000000..fc68f16 --- /dev/null +++ b/vehicles/.base/vehicle-model-header.md @@ -0,0 +1,5 @@ +# {{ page.title }} + +The goal is to always support as many vehicles as possible. + +Openpilot is compatible with *some* **{{ page.title }}** trims so see below for more specifics. \ No newline at end of file diff --git a/vehicles/README.md b/vehicles/README.md new file mode 100644 index 0000000..932ec20 --- /dev/null +++ b/vehicles/README.md @@ -0,0 +1,58 @@ +# Vehicles + +The goal is to always support as many vehicles as possible. + +Openpilot is compatible with several vehicle makes already so feel free to browse the pages below for more info. + +## Makes + +This is the current list of makes being tested and/or actively supported by either community members or Comma.ai. + +Varying levels of support and/or testing are being done on these makes so please follow the links below to keep up to date on individual progress. + +A data source for our pages heavily comes from this maintained Google Sheet which we will continue to check and keep this up to date. + +You can find that sheet [here](https://docs.google.com/spreadsheets/d/1yDj2PqF-q9vcqpuMI9mnEmXTo-c056MQEaZUHmqGFnc/edit?usp=sharing). + +{% for article in summary.parts[page.level.split('.')[0]-1].articles %} +{% if (article.title !== "Overview") %} + - [{{ article.title }}](/{{ article.path }}) +{% endif %} +{% endfor %} + +### Notes on Ford Vehicles + +There is a port of openpilot for Ford, but the steering has a 10 second +cutout limitation that makes it virtually unusable. + +Unless there is some real interest in hacking on Ford there won't be solid support +for awhile. + +### Notes on Flexray Vehicles + +Unfortunately, vehicle makes that use [FlexRay](https://en.wikipedia.org/wiki/FlexRay) are +unlikely to be supported any time soon. + +These makes include (but are not limited to): + +- Audi +- BMW +- Mercedes +- Volvo + +## How to add support for a vehicle + +If you own an vehicle not currently listed +but are interested in discussing porting it to openpilot, +join us in the *NEW* [openpilot community chat support system](https://spectrum.chat/openpilot) and the +always popular [Comma.ai Slack](https://slack.comma.ai/) if you prefer it. + +There *will* be some great info on porting vehicles in [Development Guides](../development/guides/). + +If your car has adaptive cruise control and lane keep assist, you are in luck. +Using a [panda](https://comma.ai/shop/products/panda-obd-ii-dongle/) and +[cabana](https://community.comma.ai/cabana/), you can understand how to +make your car drive by wire. + +Comma.ai, Inc. wrote a [porting guide](https://medium.com/@comma_ai/openpilot-port-guide-for-toyota-models-e5467f4b5fe6) for +Toyota that might help you after you have the basics figured out. \ No newline at end of file diff --git a/vehicles/acura/README.md b/vehicles/acura/README.md new file mode 100644 index 0000000..eab706c --- /dev/null +++ b/vehicles/acura/README.md @@ -0,0 +1 @@ +{% extends "../.base/vehicle-make.md" %} \ No newline at end of file diff --git a/supported-vehicles/acura/ilx.md b/vehicles/acura/ilx.md similarity index 81% rename from supported-vehicles/acura/ilx.md rename to vehicles/acura/ilx.md index 5490f5e..467154d 100644 --- a/supported-vehicles/acura/ilx.md +++ b/vehicles/acura/ilx.md @@ -1,4 +1,4 @@ -# ILX +{% include "../.base/vehicle-model-header.md" %} ## Supported Models diff --git a/supported-vehicles/acura/mdx.md b/vehicles/acura/mdx.md similarity index 71% rename from supported-vehicles/acura/mdx.md rename to vehicles/acura/mdx.md index 335793e..a168fdb 100644 --- a/supported-vehicles/acura/mdx.md +++ b/vehicles/acura/mdx.md @@ -1,7 +1,8 @@ -# MDX +{% include "../.base/vehicle-model-header.md" %} + As of right now, we're not sure if anyone in the community has Openpilot working on the MDX but we have heard a few bits of chatter around the Slack channel related to MDX. The MDX has a specific steering type that causes it to not be as easy to work with. -We will keep you posted as we learn more about this. \ No newline at end of file +We will keep you posted as we learn more about this. diff --git a/supported-vehicles/acura/rdx.md b/vehicles/acura/rdx.md similarity index 57% rename from supported-vehicles/acura/rdx.md rename to vehicles/acura/rdx.md index 4d0f534..eaad31a 100644 --- a/supported-vehicles/acura/rdx.md +++ b/vehicles/acura/rdx.md @@ -1,4 +1,5 @@ -# RDX +{% include "../.base/vehicle-model-header.md" %} + ## Supported Models @@ -9,4 +10,4 @@ ## Videos -{{ 'https://www.youtube.com/watch?v=9IFvn-hIqZw' | video }} \ No newline at end of file +{{ 'https://www.youtube.com/watch?v=9IFvn-hIqZw' | video }} diff --git a/vehicles/cadillac/README.md b/vehicles/cadillac/README.md new file mode 100644 index 0000000..2fd43c8 --- /dev/null +++ b/vehicles/cadillac/README.md @@ -0,0 +1,7 @@ +{% extends "../.base/vehicle-make.md" %} + +{% block preIntroMessage %} +GM and Cadillac (specifically with the CT6 as of July 2018) have a great offering known as SuperCruise which offers similar functionality as openpilot built-in to the vehicles. + +It's definitely the most sophisticated we've seen to date, but the team at Comma.ai, Inc. plans to match this quality if not exceed it by the end of 2018. So this will be an interesting year for sure. +{% endblock %} \ No newline at end of file diff --git a/supported-vehicles/cadillac/ct6.md b/vehicles/cadillac/ct6.md similarity index 64% rename from supported-vehicles/cadillac/ct6.md rename to vehicles/cadillac/ct6.md index d011004..e8ffa88 100644 --- a/supported-vehicles/cadillac/ct6.md +++ b/vehicles/cadillac/ct6.md @@ -1,4 +1,5 @@ -# CT6 +{% include "../.base/vehicle-model-header.md" %} + ## Supported Models @@ -9,4 +10,5 @@ This is very alpha, not necessarily even officially released yet we don't think. ## Videos {{ 'https://www.youtube.com/watch?v=dPTBbI3LHA8' | video }} -{{ 'https://www.youtube.com/watch?v=UJyMB6u5sHM' | video }} \ No newline at end of file +{{ 'https://www.youtube.com/watch?v=UJyMB6u5sHM' | video }} + diff --git a/vehicles/chevrolet/README.md b/vehicles/chevrolet/README.md new file mode 100644 index 0000000..eab706c --- /dev/null +++ b/vehicles/chevrolet/README.md @@ -0,0 +1 @@ +{% extends "../.base/vehicle-make.md" %} \ No newline at end of file diff --git a/supported-vehicles/chevrolet/volt.md b/vehicles/chevrolet/volt.md similarity index 71% rename from supported-vehicles/chevrolet/volt.md rename to vehicles/chevrolet/volt.md index b911da8..bcc853e 100644 --- a/supported-vehicles/chevrolet/volt.md +++ b/vehicles/chevrolet/volt.md @@ -1,4 +1,5 @@ -# Volt +{% include "../.base/vehicle-model-header.md" %} + ## Supported Models @@ -12,4 +13,5 @@ {{ 'https://www.youtube.com/watch?v=HltIRXw_Ql4' | video }} -{{ 'https://www.youtube.com/watch?v=O6qe24ILFL0' | video }} \ No newline at end of file +{{ 'https://www.youtube.com/watch?v=O6qe24ILFL0' | video }} + diff --git a/vehicles/honda/README.md b/vehicles/honda/README.md new file mode 100644 index 0000000..eab706c --- /dev/null +++ b/vehicles/honda/README.md @@ -0,0 +1 @@ +{% extends "../.base/vehicle-make.md" %} \ No newline at end of file diff --git a/supported-vehicles/honda/accord.md b/vehicles/honda/accord.md similarity index 63% rename from supported-vehicles/honda/accord.md rename to vehicles/honda/accord.md index 970a323..2606784 100644 --- a/supported-vehicles/honda/accord.md +++ b/vehicles/honda/accord.md @@ -1,4 +1,5 @@ -# Accord +{% include "../.base/vehicle-model-header.md" %} + ## Supported Models @@ -9,4 +10,4 @@ ## Videos -{{ 'https://www.youtube.com/watch?v=1zCtj3ckGFo' | video }} \ No newline at end of file +{{ 'https://www.youtube.com/watch?v=1zCtj3ckGFo' | video }} diff --git a/supported-vehicles/honda/civic.md b/vehicles/honda/civic.md similarity index 84% rename from supported-vehicles/honda/civic.md rename to vehicles/honda/civic.md index 64db81c..f0833b2 100644 --- a/supported-vehicles/honda/civic.md +++ b/vehicles/honda/civic.md @@ -1,4 +1,5 @@ -# Civic +{% include "../.base/vehicle-model-header.md" %} + ## Supported Models @@ -21,4 +22,5 @@ {{ 'https://www.youtube.com/watch?v=XaVs__Bmhms' | video }} -{{ 'https://www.youtube.com/watch?v=IHjEqAKDqjM' | video }} \ No newline at end of file +{{ 'https://www.youtube.com/watch?v=IHjEqAKDqjM' | video }} + diff --git a/supported-vehicles/honda/cr-v.md b/vehicles/honda/cr-v.md similarity index 85% rename from supported-vehicles/honda/cr-v.md rename to vehicles/honda/cr-v.md index f46a2cd..fbe112c 100644 --- a/supported-vehicles/honda/cr-v.md +++ b/vehicles/honda/cr-v.md @@ -1,6 +1,6 @@ -# CR-V +{% include "../.base/vehicle-model-header.md" %} -## Supported Models +\n## Supported Models ### 2017-2018 Honda CR-V w/ Honda Sensing diff --git a/supported-vehicles/honda/odyssey.md b/vehicles/honda/odyssey.md similarity index 73% rename from supported-vehicles/honda/odyssey.md rename to vehicles/honda/odyssey.md index 278789f..2aa7764 100644 --- a/supported-vehicles/honda/odyssey.md +++ b/vehicles/honda/odyssey.md @@ -1,6 +1,6 @@ -# Odyssey +{% include "../.base/vehicle-model-header.md" %} -## Supported Models +\n## Supported Models ### 2018 Honda Odyssey w/ Honda Sensing diff --git a/vehicles/honda/pilot.md b/vehicles/honda/pilot.md new file mode 100644 index 0000000..b2095b0 --- /dev/null +++ b/vehicles/honda/pilot.md @@ -0,0 +1,14 @@ +{% include "../.base/vehicle-model-header.md" %} + + +## Supported Models + +### 2016+ Honda Pilot with Honda Sensing + +* Alpha level support as of July 5th, 2018 +* Can only be enabled above 27 mph + +## Videos + +{{ 'https://youtu.be/PySMKW3tbDs' | video }} + diff --git a/supported-vehicles/honda/ridgeline.md b/vehicles/honda/ridgeline.md similarity index 79% rename from supported-vehicles/honda/ridgeline.md rename to vehicles/honda/ridgeline.md index 1981d0f..7eb8422 100644 --- a/supported-vehicles/honda/ridgeline.md +++ b/vehicles/honda/ridgeline.md @@ -1,4 +1,4 @@ -# Ridgeline +{% include "../.base/vehicle-model-header.md" %} ## 2016+ Honda Ridgeline with Honda Sensing diff --git a/vehicles/lexus/README.md b/vehicles/lexus/README.md new file mode 100644 index 0000000..eab706c --- /dev/null +++ b/vehicles/lexus/README.md @@ -0,0 +1 @@ +{% extends "../.base/vehicle-make.md" %} \ No newline at end of file diff --git a/supported-vehicles/lexus/rx.md b/vehicles/lexus/rx.md similarity index 80% rename from supported-vehicles/lexus/rx.md rename to vehicles/lexus/rx.md index 5d3c6d3..856eed7 100644 --- a/supported-vehicles/lexus/rx.md +++ b/vehicles/lexus/rx.md @@ -1,4 +1,4 @@ -# RX +{% include "../.base/vehicle-model-header.md" %} ## Supported Models @@ -14,4 +14,5 @@ {{ 'https://www.youtube.com/watch?v=vK2bMxMXVLM' | video }} -{{ 'https://www.youtube.com/watch?v=F8OwdVbwps4' | video }} \ No newline at end of file +{{ 'https://www.youtube.com/watch?v=F8OwdVbwps4' | video }} + diff --git a/vehicles/tesla/README.md b/vehicles/tesla/README.md new file mode 100644 index 0000000..eab706c --- /dev/null +++ b/vehicles/tesla/README.md @@ -0,0 +1 @@ +{% extends "../.base/vehicle-make.md" %} \ No newline at end of file diff --git a/supported-vehicles/tesla/model-s.md b/vehicles/tesla/model-s.md similarity index 72% rename from supported-vehicles/tesla/model-s.md rename to vehicles/tesla/model-s.md index 168b9c6..79571de 100644 --- a/supported-vehicles/tesla/model-s.md +++ b/vehicles/tesla/model-s.md @@ -1,4 +1,5 @@ -# Model S +{% include "../.base/vehicle-model-header.md" %} + ## Supported Models @@ -12,4 +13,5 @@ Pre-autopilot 2013, 2014's. {{ 'https://www.youtube.com/watch?v=v3jjzRYBsJI' | video }} {{ 'https://www.youtube.com/watch?v=iRkz7FuJsA8' | video }} {{ 'https://www.youtube.com/watch?v=UkS-iJ5auD4' | video }} -{{ 'https://www.youtube.com/watch?v=F8OwdVbwps4' | video }} \ No newline at end of file +{{ 'https://www.youtube.com/watch?v=F8OwdVbwps4' | video }} + diff --git a/vehicles/toyota/README.md b/vehicles/toyota/README.md new file mode 100644 index 0000000..eab706c --- /dev/null +++ b/vehicles/toyota/README.md @@ -0,0 +1 @@ +{% extends "../.base/vehicle-make.md" %} \ No newline at end of file diff --git a/supported-vehicles/toyota/corolla.md b/vehicles/toyota/corolla.md similarity index 84% rename from supported-vehicles/toyota/corolla.md rename to vehicles/toyota/corolla.md index 302d109..a5b00a2 100644 --- a/supported-vehicles/toyota/corolla.md +++ b/vehicles/toyota/corolla.md @@ -1,6 +1,6 @@ -# Corolla +{% include "../.base/vehicle-model-header.md" %} -## Supported Models +\n## Supported Models ### 2017+ Toyota Corolla diff --git a/supported-vehicles/toyota/prius.md b/vehicles/toyota/prius.md similarity index 83% rename from supported-vehicles/toyota/prius.md rename to vehicles/toyota/prius.md index 2e4bd32..af99273 100644 --- a/supported-vehicles/toyota/prius.md +++ b/vehicles/toyota/prius.md @@ -1,6 +1,6 @@ -# Prius +{% include "../.base/vehicle-model-header.md" %} -## Supported Models +\n## Supported Models ### 2017+ Toyota Prius diff --git a/supported-vehicles/toyota/rav-4.md b/vehicles/toyota/rav-4.md similarity index 90% rename from supported-vehicles/toyota/rav-4.md rename to vehicles/toyota/rav-4.md index 89cf875..e1c2cb9 100644 --- a/supported-vehicles/toyota/rav-4.md +++ b/vehicles/toyota/rav-4.md @@ -1,6 +1,6 @@ -# RAV-4 +{% include "../.base/vehicle-model-header.md" %} -## Supported Models +\n## Supported Models ### 2016+ Toyota RAV-4 Non-Hybrid w/ TSS-P