Configuration files for Sunderland Innovation Lab's HE3D printer
To modify the firmware of the Delta style printer for the first time, follow the steps below to get started (modified from the official Marlin documentation).
- Install Python
- Make sure to include Python on the path
- Install Git
- Leave everything at the default options
- Install VS Code
- Open the Extensions tab on the left side of the VScode UI
- Search for PlatformIO and download
- Let PlatformIO finish installing completely and fix any errors it issues
- Search the Extensions for Marlin
- Install AutoBuildMarlin
- Open the Version Control tab on the left side of the VSCode UI
- Click Clone Repo
- Use the HTTPs link in the upper right-hand corner of this page to connect to this repo
- Open a new Git terminal by:
- Clicking on the terminal window at the bottom of the VS code UI
- Clicking the large plus button on the right side of the terminal window
- Selecting the Git bash option
- Configure your name and email by entering the following lines where John Doe is your name and [email protected] is your email address associated with your Github account
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
You have now configured your computer to work with the firmware!
Before you push any changes to the remote repo, make sure that the current configuration you are working on is not broken.
If you want to push your changes to the remote repo when the configuration is broken, look up how to make a branch in Git to keep your changes separate from the reliable version.
To edit the printer configuration, browse to Marlin_Config_for_K280\Marlin-2.0.9.2\Marlin
and modify the Configuration.h and the Configuation_adv.h files.
Make sure to research what changes to make, as these parameters can have a damaging impact on the printer if not set up correctly.
Once you have made changes to the configuration and would like to push the changes to the printer, follow the steps below:
- Open the AutoBuild Marlin extension tab
- Verify that you are in the Marlin 2.0.9.2 Folder (or whatever version is currently applicable)
- Click the "Build" button for the mega2560
- Verify that the build is successful; solve issues if not (this can take up to a minute)
- Plug in the printer
- Connect to the printer via the blue USB cord
- Click the "Upload" button for the mega2560
- Verify that the firmware has been uploaded and then reset the machine using the reset button on the bottom of the display board
If you have any questions about this process, please contact me at (620) 899-8028 or [email protected] (current as of 5/13/2022).