diff --git a/README.md b/README.md index 5c698f4..85acc8b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,25 @@ # learn -Documentation, Tutorials & Findings regarding 3D printing, DIY production \ No newline at end of file +Documentation, Tutorials & Findings regarding 3D printing, DIY production + + +## Contributing + + +Project uses [mkdocs] and [mkdocs-material] to render and serve documentation. + +### Project layout + + mkdocs.yml # The configuration file for [mkdocs]. + docs/ + index.md # The documentation homepage. + ... # Other markdown pages, images and other files. + +### Commands + +* `mkdocs new [dir-name]` - Create a new project. +* `mkdocs serve` - Start the live-reloading docs server. +* `mkdocs build` - Build the documentation site. +* `mkdocs help` - Print this help message. + +[mkdocs]:http://mkdocs.org diff --git a/docs/fillaments/ABS.md b/docs/fillaments/ABS.md new file mode 100644 index 0000000..e69de29 diff --git a/docs/fillaments/PLA.md b/docs/fillaments/PLA.md new file mode 100644 index 0000000..e69de29 diff --git a/docs/fillaments/bronzefill.md b/docs/fillaments/bronzefill.md new file mode 100644 index 0000000..e32f6b0 --- /dev/null +++ b/docs/fillaments/bronzefill.md @@ -0,0 +1,16 @@ +# ColorFabb bronzeFill + + +Property | Value +---------|------ +Weight per meter | +Hotend T | 210C +Bed T | 50C + + +## Resources +[ColorFabb e-shop](http://colorfabb.com/bronzefill) + + +Foo: Bar +Bar: Baz diff --git a/docs/images/logo.png b/docs/images/logo.png new file mode 100644 index 0000000..5ad5555 Binary files /dev/null and b/docs/images/logo.png differ diff --git a/docs/images/logo.svg b/docs/images/logo.svg new file mode 100644 index 0000000..8c52c65 --- /dev/null +++ b/docs/images/logo.svg @@ -0,0 +1,156 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/prusa-i3-mk2.md b/docs/prusa-i3-mk2.md new file mode 100644 index 0000000..a4eb902 --- /dev/null +++ b/docs/prusa-i3-mk2.md @@ -0,0 +1,14 @@ +# Original Prusa i3 Mk2 + + +## G-Code instructions +Instruction | Short Description | Description +----------- | ----------- | ------- +`M220 Snnn` | **Print Speed override** | Overrides speed in percents, eg. `M220 S100` for normal speed +`M600` | **Change Fillament** | Custom command of *Original Prusa i3* to change fillament during print + + +``` +G90; +G1 X220 F2000; +``` diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..4bf1999 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,39 @@ +site_name: learn@makereal +site_description: 'Knowledge base & Tutorials for 3D Printing effort at makeeral' +site_author: 'Tony Tkáčik' + + +# Copyright +copyright: 'Copyright (c) 2016 Tony Tkáčik' + +theme: 'material' + +# Options +extra: +# version: '0.1.0' + logo: 'images/logo.png' + palette: + primary: 'teal' + accent: 'cyan' + font: + text: 'Roboto' + code: 'Roboto Mono' + i18n: + prev: 'Previous' + next: 'Next' +# author: +# github: 'my-github-handle' +# twitter: 'my-twitter-handle' + +# Google Analytics +# google_analytics: +# - 'UA-XXXXXXXX-X' +# - 'auto' + +# Extensions +markdown_extensions: + - codehilite(css_class=code) + - admonition + - def_list + - toc: + permalink: '#'