Thomas Buck 1 год назад
Родитель
Сommit
9016f88788
15 измененных файлов: 34 добавлений и 5 удалений
  1. 34
    5
      input/projects/3d-printing/i3-am8.md
  2. Двоичные данные
      static/img/am8_back_cables.jpg
  3. Двоичные данные
      static/img/am8_back_cables_small.jpg
  4. Двоичные данные
      static/img/am8_front_bottom.jpg
  5. Двоичные данные
      static/img/am8_front_bottom_small.jpg
  6. Двоичные данные
      static/img/am8_front_top.jpg
  7. Двоичные данные
      static/img/am8_front_top_small.jpg
  8. Двоичные данные
      static/img/am8_lcd_cable.jpg
  9. Двоичные данные
      static/img/am8_lcd_cable_small.jpg
  10. Двоичные данные
      static/img/am8_left_cables.jpg
  11. Двоичные данные
      static/img/am8_left_cables_small.jpg
  12. Двоичные данные
      static/img/am8_mainboard.jpg
  13. Двоичные данные
      static/img/am8_mainboard_small.jpg
  14. Двоичные данные
      static/img/am8_right_cables.jpg
  15. Двоичные данные
      static/img/am8_right_cables_small.jpg

+ 34
- 5
input/projects/3d-printing/i3-am8.md Просмотреть файл

10
 <!--% backToParent() %-->
10
 <!--% backToParent() %-->
11
 
11
 
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.
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
 The following are the new integral components:
21
 The following are the new integral components:
14
 
22
 
15
  * ["AM8 - Metal Frame for Anet A8" by pheneeny](https://www.thingiverse.com/thing:2263216) on Thingiverse
23
  * ["AM8 - Metal Frame for Anet A8" by pheneeny](https://www.thingiverse.com/thing:2263216) on Thingiverse
16
      * 2040 extrusions and nuts from [Dold Mechatronik](https://www.dold-mechatronik.de/Aluminiumprofil-20x40-I-Typ-Nut-5)
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
  * [Sherpa Mini Extruder](https://github.com/Annex-Engineering/Sherpa_Mini-Extruder) on GitHub
26
  * [Sherpa Mini Extruder](https://github.com/Annex-Engineering/Sherpa_Mini-Extruder) on GitHub
19
      * Sourced from [AliExpress](https://de.aliexpress.com/item/1005003671542821.html?gatewayAdapt=glo2deu&mp=1)
27
      * Sourced from [AliExpress](https://de.aliexpress.com/item/1005003671542821.html?gatewayAdapt=glo2deu&mp=1)
20
  * [NF Crazy Hotend](https://3dprintbeginner.com/nf-crazy-hotend-a-mosqutio-hotend-alternative/)
28
  * [NF Crazy Hotend](https://3dprintbeginner.com/nf-crazy-hotend-a-mosqutio-hotend-alternative/)
115
 ])
123
 ])
116
 %-->
124
 %-->
117
 
125
 
118
-TODO problems with encoder, kill button pullups?!
119
 TODO display no longer showing anything
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
 lightgallery([
131
 lightgallery([
125
     [ "img/am8_lcd_assy.jpg", "LCD mounted on printer" ],
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
 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).
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
 Here is my current printer config file.
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
 [include mainsail.cfg]
169
 [include mainsail.cfg]
141
 
170
 
142
 ##########################################
171
 ##########################################

Двоичные данные
static/img/am8_back_cables.jpg Просмотреть файл


Двоичные данные
static/img/am8_back_cables_small.jpg Просмотреть файл


Двоичные данные
static/img/am8_front_bottom.jpg Просмотреть файл


Двоичные данные
static/img/am8_front_bottom_small.jpg Просмотреть файл


Двоичные данные
static/img/am8_front_top.jpg Просмотреть файл


Двоичные данные
static/img/am8_front_top_small.jpg Просмотреть файл


Двоичные данные
static/img/am8_lcd_cable.jpg Просмотреть файл


Двоичные данные
static/img/am8_lcd_cable_small.jpg Просмотреть файл


Двоичные данные
static/img/am8_left_cables.jpg Просмотреть файл


Двоичные данные
static/img/am8_left_cables_small.jpg Просмотреть файл


Двоичные данные
static/img/am8_mainboard.jpg Просмотреть файл


Двоичные данные
static/img/am8_mainboard_small.jpg Просмотреть файл


Двоичные данные
static/img/am8_right_cables.jpg Просмотреть файл


Двоичные данные
static/img/am8_right_cables_small.jpg Просмотреть файл


Загрузка…
Отмена
Сохранить