-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b75dbe5
commit 809bce3
Showing
8 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
- uses: actions/cache@v3 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- run: pip install mkdocs-material | ||
- run: mkdocs gh-deploy --force |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Home | ||
## Intro | ||
Welcome to My Mod Page! | ||
|
||
I decided to make a website to showcase my Kobra Go and the mods I’ve performed to it. | ||
|
||
I'll be keeping this up to date to the best of my ability! | ||
|
||
## Current Status | ||
<img src="assets/setup.jpeg" alt="drawing" width="500"/> | ||
|
||
* Software: | ||
```Stock Marlin (Trying to get klipper working)``` | ||
* Mainboard: | ||
```TriGorilla V_3.0.6 (Stock) + Rpi 4 4GB``` | ||
* Drivers: | ||
```Stock``` | ||
* Stepper Motors: | ||
```Stock``` | ||
* Hotend: | ||
```Stock (maybe update later?)``` | ||
* Extruder: | ||
```Stock (Bowden)``` | ||
* Printhead: | ||
```Stock + eyes ofc (maybe update later?)``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Mods - Introduction | ||
## Welcome | ||
Here i will document, and rate mods. | ||
As you can see, right now there isn't a lot here, but as i make mods to my kobra this section will grow. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Intro | ||
Using third-party software control provides an excellent means to enhance the convenience and versatility of your printing experience. The key aspect of these enhancements is the necessity of obtaining a computer to run them. Traditionally, a Raspberry Pi (>gen3) is the preferred choice, but given the ongoing Pi shortage now entering its third year, alternative solutions or creative approaches may be required. Personally, I used a random Asus Laptop with 8GB of RAM and 4 cores for a period, and it effortlessly managed Octoprint. This highlights that while a Raspberry Pi is often recommended and assumed in many guides, almost any computer has the potential to fulfill this role. | ||
??? info "What is a raspberry pi?" | ||
Raspberry Pi, created by the UK-based Raspberry Pi Foundation, is an affordable, credit card-sized computer designed to promote hands-on computer science education. Despite its compact size, it functions as a fully capable computer, supporting various peripherals and running different operating systems, including Linux-based distributions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Klipper | ||
Still WIP, come back later |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#### [Octoprint](https://octoprint.org/){target=_blank} - 8/10 | ||
|
||
## Description | ||
I use it as a remote control host, Octoprint controls your printer via a web interface while keeping all other software stock. This means little to no improvement in raw performance but big improvements in ease of use. | ||
## Hardware | ||
As mentioned earlier in the "Intro", the go-to option is a Raspberry Pi. Personally, I use the Raspberry Pi 4 with 4GB of RAM, but the 2GB model should work as well. I also connect a 720p webcam to my Pi for creating timelapses and video monitoring. | ||
## Bonus | ||
I recomend using the [OctoApp](https://play.google.com/store/apps/details?id=de.crysxd.octoapp&hl=en) if you want to check your printer status on your phone. It has a super nice UI, and even has push notifications & support for over 30 popular plugins. (Its on ios & android) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
site_name: MKG | ||
theme: | ||
name: material | ||
features: | ||
- navigation.tabs | ||
- navigation.sections | ||
- toc.integrate | ||
- navigation.top | ||
- search.suggest | ||
- search.highlight | ||
- content.tabs.link | ||
- content.code.annotation | ||
- content.code.copy | ||
language: en | ||
palette: | ||
- scheme: default | ||
toggle: | ||
icon: material/toggle-switch-off-outline | ||
name: Switch to dark mode | ||
primary: teal | ||
accent: purple | ||
- scheme: slate | ||
toggle: | ||
icon: material/toggle-switch | ||
name: Switch to light mode | ||
primary: teal | ||
accent: lime | ||
|
||
markdown_extensions: | ||
- pymdownx.highlight: | ||
anchor_linenums: true | ||
- pymdownx.inlinehilite | ||
- pymdownx.snippets | ||
- admonition | ||
- pymdownx.arithmatex: | ||
generic: true | ||
- footnotes | ||
- pymdownx.details | ||
- pymdownx.superfences | ||
- pymdownx.mark | ||
- attr_list | ||
- pymdownx.emoji: | ||
emoji_index: !!python/name:materialx.emoji.twemoji | ||
emoji_generator: !!python/name:materialx.emoji.to_svg | ||
|
||
nav: | ||
- Home: index.md | ||
- Mods: | ||
- Introduction: mods.md | ||
- Software: | ||
- Intro: software/intro.md | ||
- Klipper: software/klipper.md | ||
- Octoprint: software/octoprint.md | ||
|
||
copyright: | | ||
© 2023 <a href="https://github.com/TheFilipcom4607" target="_blank" rel="noopener">TheFilip</a> |