Skip to content
Snippets Groups Projects
Commit 01f2a20a authored by Natsuka Kamei's avatar Natsuka Kamei
Browse files

Merge branch 'master' of gitlab.fabcloud.org:academany/fabacademy/2022/labs/kannai/site

parents 25ac4806 fe09d671
No related branches found
No related tags found
No related merge requests found
Pipeline #284375 passed
Showing
with 52989 additions and 4 deletions
File added
docs/Instruction/images/stepper/42SHD4002-24B.jpg

18 KiB

docs/Instruction/images/stepper/42SHD_spec.png

112 KiB

docs/Instruction/images/stepper/42SHD_wire.png

48.4 KiB

docs/Instruction/images/stepper/TMC2208_back.jpg

108 KiB

docs/Instruction/images/stepper/TMC2208_front.jpg

201 KiB

docs/Instruction/images/stepper/arduino_tmc2208_lib.png

437 KiB

docs/Instruction/images/stepper/mode_select.jpg

216 KiB

docs/Instruction/images/stepper/modes.png

169 KiB

docs/Instruction/images/stepper/vref_hole.jpg

302 KiB

docs/Instruction/images/stepper/vref_screw.jpg

277 KiB

docs/Instruction/images/week04/mods_feed_rate.png

887 KiB

File added
File added
File added
source diff could not be displayed: it is too large. Options to address this: view the blob.
docs/Instruction/images/week06/ender3_v2.png

249 KiB

docs/Instruction/images/week06/m3_hole_test.png

417 KiB

......@@ -32,7 +32,7 @@ Download: [SVG](../images/proverXL/30x30_40x40mm.svg)
### CAM: [Mods](https://mods.cba.mit.edu/)
!!! Attention
See [Adjust MODS' g-code for this machine](#Adjust MODS' g-code for this machine) first (below)
See [Adjust MODS' g-code for this machine](#adjust-mods-g-code-for-this-machine) first (below)
![](../images/proverXL/mods_pcb_svg.png)
......@@ -308,6 +308,9 @@ Click **Surfacing** (Top-Center)
!!! note
PNG's ```G04 P1``` or SVG's ```G04 P1000``` need to be **commented out** for this machine, otherwise machine will stop on this line.
!!! attention
``T1M06`` may be also need to be commented out. This happened when **wchusbserial1440** did not appear in the device list to connect. Possibly CH340 driver may not be installed successfully.
30x30_40x40mm_96dpi.png.nc |SVG image.nc |Meanig
- |--- |--
......@@ -320,7 +323,7 @@ G54 |G54 |G54 Set Datum
G80 |G80 |G80 Cancel cycles
G90 |G90 |G90 Absolute programming
G94 |G94 |G94 Per minute feed
T1M06 |T1M06 |T1 Tool Number, M06 Tool Change
**T1M06** |**T1M06** |T1 Tool Number, M06 Tool Change
F150.0000 |F150.0000 |F Defines feed rate
S11000 |S11000 |S Defines speed
G00Z2.0000 |G00Z2.0000 |G00 Positioning at rapid travel Z2.0000
......@@ -363,7 +366,7 @@ Ref. [G-gode](https://gcodetutor.com/cnc-machine-training/cnc-g-codes.html),
![](../images/proverXL/node-path_to_G-code.png){width=300}
Comment out ```G04 P1000```
Comment out ```G04 P1000``` and
```
//
......@@ -402,7 +405,7 @@ function make_path() {
str += "G80\n" // cancel canned cycles
str += "G90\n" // absolute coordinates
str += "G94\n" // feed/minute units
str += "T"+tool+"M06\n" // tool selection, tool change
//str += "T"+tool+"M06\n" // tool selection, tool change..................comment out
str += "F"+cut_speed.toFixed(4)+"\n" // feed rate
str += "S"+spindle_speed+"\n" // spindle speed
if (mod.coolanton.checked)
......@@ -457,3 +460,10 @@ Ref. [calculator width-of-cut of a “V” shaped cutting tool](https://woodwork
Depth = 0.2mm
![](../images/proverXL/line_test_v-bit.jpg){width=400}
<video width="400" controls>
<source src="../../images/proverXL/Genmitsu_PROVerXL_4030.mp4" type="video/mp4">
</video>
# In-page links
# Title
go to [Title](#title)
!!! note
Capital letter -> small letter
```
# Title
go to [Title](#title)
```
---
## sharpx2
got to [sharpx2](#sharpx2)
!!! note
always use one "#" even deeper index
```
## sharpx2
got to [sharpx2](#sharpx2)
```
----
# include blank
go to [include blank](#include-blank)
!!! note
blank -> ""-""
```
# include blank
go to [include blank](#include-blank)
```
----
# abc_def!@#$%^&*()+|~=\`[]{};':",./<>?123-456
go to [abc_def!@#$%^&*()+|~=\`[]{};':",./<>?123-456](#abc_def123-456)
!!! note
ignore except alphabet, number, "_" and "-"
```
# abc_def!@#$%^&*()+|~=\`[]{};':",./<>?123-456
go to [abc_def!@#$%^&*()+|~=\`[]{};':",./<>?123-456](#abc_def123-456)
```
Ref.[here](https://qiita.com/hennin/items/7ee58dd7d7c013a23be7#%E5%90%8C%E3%81%98%E3%83%98%E3%83%83%E3%83%80%E3%83%BC)
-----
# Links
```
[text](path/to/link)
// normal syntax
[text][1]
[1]:path/to/link
// other link syntax
![](path/to/image.jpg)
// normal syntax
![image][]
[image]: path/to/image.jpg "text"
// other image syntax
![image][1]
![image][2]
![image][3]
[1]: path/to/image1.jpg "text"
[2]: path/to/image2.jpg "text"
[3]: path/to/image3.jpg "text"
// Use ID
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment