Firmware and software too 固件和軟件工具 http://www.instructables.com/files/orig/F9B/2CM8/IOVPN0PA/F9B2CM8IOVPN0PA.rar
or https://github.com/luc-github/Repetier-Firmware-0.92
Config thefirmware to support three extruder. 配置固件支持 3 個(gè)擠出機(jī)。
This firmwarehave M163 and M164 command, this commands mix color material. 固件支持 M163 和 M164 指令,這些指令混合材料。
How to add the "M163" and "M164" commandautomaticly, use a attch file colormix.py. 如何讓自動(dòng)添加“M163”和“M164”指令,使用附件的 colormix.py。
usage:python.exe mixgcode.py input.gcode output.gcode 使用方法(windows 命令行環(huán)境):python.exe mixgcode.py input.gcode output.gcode
Auther:WangJinLong 王金龍 Data: 2016-07-08
MIX_COLOR_GUIDEin colormix.py file control the changing color.Every item is marked one color.Between two colors, after the compute, py file insert some color value automaticly. 在 colormix.py文件中的 MIX_COLOR_GUIDE 控制變色規(guī)律。每項(xiàng)標(biāo)記為一個(gè)顏色。在 2 個(gè) 顏色之間,經(jīng)過計(jì)算,py 文件自動(dòng)插入顏色值。
# 設(shè)置變色規(guī)律 ((起始顏色-第 0 擠出開始比重, 起始顏色-第 1 擠出開始比重, 起始顏色-第 2 擠出開始比重),
# (第 2 個(gè)顏色-第 0 擠出開始比重, 第 2 個(gè)顏色-第 1 擠出開始比重, 第 2 個(gè)顏色-第 2 擠出開始比重), # (第 3 個(gè)顏色-第 0 擠出開始比重, 第 3 個(gè)顏色-第 1 擠出開始比重, 第 3 個(gè)顏色-第 2 擠出開始比重),
# ...)
# MIX_COLOR_GUIDE = ((0,1,1), (0,1,0),(1,1,0), (1,0,0), (1,0,1),(0,0,1), (0,1,1))
# MIX_COLOR_GUIDE = ((0,1,1), (0,1,0),(1,1,0), (1,0,0))
# MIX_COLOR_GUIDE = ((0,1,1,0), (0,1,0,1), (1,1,0,0)) # 4 extrures
MIX_COLOR_GUIDE= ((0,1,1), (0,1,0), (1,1,0))
# print MIX_COLOR_GUIDE
自動(dòng)插入 254 個(gè)顏色數(shù)值的效果 Ifyou have any question, please email to me. QQ: 26022470 參考: http://www.instructables.com/id/RGB-STEEL-Low-Cost-Steel-Frame-Color-3D-Printer/?ALLSTEPS
http://reprap.org/wiki/Repetier_Color_Mixing
(C) mix color commands (C) 混色命令解釋 M163 S<extruderNum> P<weight> - Set weight for this mixing extruder drive M163S<實(shí)際上擠出的編號(hào)0-n n>2> P<比重> 設(shè)置比重值,比重值大于 0
M164 S<0..15> - Save currentmixing ratio as visrtual extruderS. M164 S<0-15> 將一組比重存入虛擬擠出機(jī),級(jí)虛擬刀具 Tn (n=0-15)
例如上面自動(dòng)插入 254 個(gè)顏色數(shù)值的效果,使用 3 個(gè)實(shí)際的擠出機(jī),虛擬擠出機(jī)(刀具)有 16 個(gè),但只使用默認(rèn)的 T0,每層修改一次顏色值
第 1 層 | M163 S0 P1 M163 S1 P255 M163 S2 P255 M164 S0 | 第 1 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 1 第 2 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 255 第 3 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 255 將 1:255:255 這組比重值賦給 T0 | 第 2 層 | M163 S0 P2 M163 S1 P255 M163 S2 P255 M164 S0 | 第 1 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 2 第 2 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 255 第 3 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 255 將 2:255:255 這組比重值賦給 T0 | 第 3 層 | M163 S0 P3 M163 S1 P255 M163 S2 P255 M164 S0 | 第 1 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 3 第 2 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 255 第 3 個(gè)實(shí)際的擠出機(jī)擠出材料比重為 255 將 3:255:255 這組比重值賦給 T0 | ……. | | |
|
全部評(píng)論8