Skip to content

Commit

Permalink
$Addidng
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFilipcom4607 committed Oct 27, 2023
1 parent b75dbe5 commit 809bce3
Show file tree
Hide file tree
Showing 8 changed files with 124 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
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
Binary file added docs/assets/setup.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions docs/index.md
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?)```
4 changes: 4 additions & 0 deletions docs/mods.md
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.
4 changes: 4 additions & 0 deletions docs/software/intro.md
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.
2 changes: 2 additions & 0 deletions docs/software/klipper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Klipper
Still WIP, come back later
8 changes: 8 additions & 0 deletions docs/software/octoprint.md
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)
56 changes: 56 additions & 0 deletions mkdocs.yml
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: |
&copy; 2023 <a href="https://github.com/TheFilipcom4607" target="_blank" rel="noopener">TheFilip</a>

0 comments on commit 809bce3

Please sign in to comment.