|
@@ -10,11 +10,19 @@ x-comments: true
|
10
|
10
|
<!--% backToParent() %-->
|
11
|
11
|
|
12
|
12
|
In February 2022 I finally decided to re-build my [CTC i3 Pro B](ctc-i3.html) with an upgraded frame and better parts.
|
|
13
|
+
|
|
14
|
+<!--%
|
|
15
|
+lightgallery([
|
|
16
|
+ [ "img/am8_front_top.jpg", "Front top view, without bed"],
|
|
17
|
+ [ "img/am8_front_bottom.jpg", "Front bottom view, without bed"],
|
|
18
|
+])
|
|
19
|
+%-->
|
|
20
|
+
|
13
|
21
|
The following are the new integral components:
|
14
|
22
|
|
15
|
23
|
* ["AM8 - Metal Frame for Anet A8" by pheneeny](https://www.thingiverse.com/thing:2263216) on Thingiverse
|
16
|
24
|
* 2040 extrusions and nuts from [Dold Mechatronik](https://www.dold-mechatronik.de/Aluminiumprofil-20x40-I-Typ-Nut-5)
|
17
|
|
- * [Core XZ AM8 Conversion by 93djen](https://www.prusaprinters.org/prints/131210-core-xz-anet-am8-conversion) on PrusaPrinters.
|
|
25
|
+ * [Core XZ AM8 Conversion by 93djen](https://www.printables.com/model/131210-core-xz-anet-am8-conversion) on Printables.
|
18
|
26
|
* [Sherpa Mini Extruder](https://github.com/Annex-Engineering/Sherpa_Mini-Extruder) on GitHub
|
19
|
27
|
* Sourced from [AliExpress](https://de.aliexpress.com/item/1005003671542821.html?gatewayAdapt=glo2deu&mp=1)
|
20
|
28
|
* [NF Crazy Hotend](https://3dprintbeginner.com/nf-crazy-hotend-a-mosqutio-hotend-alternative/)
|
|
@@ -115,14 +123,25 @@ lightgallery([
|
115
|
123
|
])
|
116
|
124
|
%-->
|
117
|
125
|
|
118
|
|
-TODO problems with encoder, kill button pullups?!
|
119
|
126
|
TODO display no longer showing anything
|
120
|
127
|
|
121
|
|
-TODO photo(s) of cabling
|
|
128
|
+TODO problems with encoder, kill button pullups?!
|
122
|
129
|
|
123
|
130
|
<!--%
|
124
|
131
|
lightgallery([
|
125
|
132
|
[ "img/am8_lcd_assy.jpg", "LCD mounted on printer" ],
|
|
133
|
+ [ "img/am8_lcd_cable.jpg", "LCD cabling" ],
|
|
134
|
+])
|
|
135
|
+%-->
|
|
136
|
+
|
|
137
|
+For all other cables I tried to route them nicely as well.
|
|
138
|
+
|
|
139
|
+<!--%
|
|
140
|
+lightgallery([
|
|
141
|
+ [ "img/am8_mainboard.jpg", "Mainboard with cabling" ],
|
|
142
|
+ [ "img/am8_right_cables.jpg", "Cables on right side" ],
|
|
143
|
+ [ "img/am8_back_cables.jpg", "Cables on back side" ],
|
|
144
|
+ [ "img/am8_left_cables.jpg", "Cables on left side" ],
|
126
|
145
|
])
|
127
|
146
|
%-->
|
128
|
147
|
|
|
@@ -135,8 +154,18 @@ I'm using [MainsailOS](https://docs.mainsail.xyz/setup/mainsail-os) on a Raspber
|
135
|
154
|
Installation and Configuration was really straight-forward with the configuration guides of [Klipper](https://www.klipper3d.org/Config_Reference.html) and [Mainsail](https://docs.mainsail.xyz/setup/mainsailos/first-boot).
|
136
|
155
|
|
137
|
156
|
Here is my current printer config file.
|
138
|
|
-
|
139
|
|
-<pre class="sh_desktop">
|
|
157
|
+<button type="button" onclick="copyEvent('printercfg')" class="clip-btn">Copy to clipboard</button>
|
|
158
|
+
|
|
159
|
+<!-- https://clay-atlas.com/us/blog/2021/06/30/html-en-copy-text-button/ -->
|
|
160
|
+<script>
|
|
161
|
+function copyEvent(id) {
|
|
162
|
+ var str = document.getElementById(id);
|
|
163
|
+ window.getSelection().selectAllChildren(str);
|
|
164
|
+ document.execCommand("Copy")
|
|
165
|
+}
|
|
166
|
+</script>
|
|
167
|
+
|
|
168
|
+<pre id="printercfg" class="sh_desktop">
|
140
|
169
|
[include mainsail.cfg]
|
141
|
170
|
|
142
|
171
|
##########################################
|