Documentation
Important
Documenting your project is just as important as what you're building.
In 12 months time do you think you'll remember where you were at?
Location and Customisation
All project documentation lives in the projects 'docs' directory and written in mark-down format that's easy to update, especially with tools like VSCode.
Feel free to change navigation and headings as required to suit your personal style.
See mkdocs-material documentation for more information.
Viewing Locally
To view or update locally
make serve
http://localhost:8000
Making changes
Any changes to the document files or mkdocs.yml will be automatically updated, with a page refresh, on the local server view each time you save, so allows you to see the changes as you mae them.
Github pages
Project documentation will automatically be pushed to the projects github pages when updates / merges are applied to the Master branch only if the projects pages is enabled in the github panel.
Diagrams using Mermaid
```mermaid
graph LR
A[12VDC] --> B[DCDC]
B --> C[5v]
B --> D[3.3v]
```