An open API service indexing awesome lists of open source software.

https://github.com/machinekoder/machinekit-fff

modular configuration base for Machinekit FFF 3D printers
https://github.com/machinekoder/machinekit-fff

Last synced: 3 months ago
JSON representation

modular configuration base for Machinekit FFF 3D printers

Awesome Lists containing this project

README

          

* Machinekit FFF

Modular configuration base for Machinekit [[http://reprap.org/wiki/Fused_filament_fabrication][FFF]] 3D printers.

The primary goal of this repository is to work on a common base for
Machinekit based FFF 3D printers. This repository should simplify
the process of creating new device configurations.

** Using this repository

First start by forking this repository on GitHub. Then add it to your
Machinekit configuration repository:
#+BEGIN_SRC shell
git remote add fff-upstream https://github.com/strahlex/machinekit-fff.git
git subtree add --prefix fff fff-upstream master --squash
#+END_SRC

Make sure to check for upstream updates every once in a while.
#+BEGIN_SRC shell
git fetch fff master
git subtree pull --prefix fff fff-upstream master --squash
#+END_SRC

If you made some changes first fork the [[https://github.com/strahlex/machinekit-fff][machinekit-fff repository on
GitHub]]. Then add the new repository to git and push the changes to a new branch.
#+BEGIN_SRC shell
git remote add fff git@github.com:/machinekit-fff.git
git subtree push --prefix fff fff
#+END_SRC
Now you can create a PR on GitHub to push the changes upstream.