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 个挤出机。
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. 如何让自动添加“M163”和“M164”指令,使用附件的 colormix.py。
usage:python.exe mixgcode.py input.gcode output.gcode 使用方法(windows 命令行环境):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 控制变色规律。每项标记为一个颜色。在 2 个 颜色之间,经过计算,py 文件自动插入颜色值。
# 设置变色规律 ((起始颜色-第 0 挤出开始比重, 起始颜色-第 1 挤出开始比重, 起始颜色-第 2 挤出开始比重),
# (第 2 个颜色-第 0 挤出开始比重, 第 2 个颜色-第 1 挤出开始比重, 第 2 个颜色-第 2 挤出开始比重), # (第 3 个颜色-第 0 挤出开始比重, 第 3 个颜色-第 1 挤出开始比重, 第 3 个颜色-第 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
自动插入 254 个颜色数值的效果 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<实际上挤出的编号0-n n>2> P<比重> 设置比重值,比重值大于 0
M164 S<0..15> - Save currentmixing ratio as visrtual extruderS. M164 S<0-15> 将一组比重存入虚拟挤出机,级虚拟刀具 Tn (n=0-15)
例如上面自动插入 254 个颜色数值的效果,使用 3 个实际的挤出机,虚拟挤出机(刀具)有 16 个,但只使用默认的 T0,每层修改一次颜色值
第 1 层 | M163 S0 P1 M163 S1 P255 M163 S2 P255 M164 S0 | 第 1 个实际的挤出机挤出材料比重为 1 第 2 个实际的挤出机挤出材料比重为 255 第 3 个实际的挤出机挤出材料比重为 255 将 1:255:255 这组比重值赋给 T0 | 第 2 层 | M163 S0 P2 M163 S1 P255 M163 S2 P255 M164 S0 | 第 1 个实际的挤出机挤出材料比重为 2 第 2 个实际的挤出机挤出材料比重为 255 第 3 个实际的挤出机挤出材料比重为 255 将 2:255:255 这组比重值赋给 T0 | 第 3 层 | M163 S0 P3 M163 S1 P255 M163 S2 P255 M164 S0 | 第 1 个实际的挤出机挤出材料比重为 3 第 2 个实际的挤出机挤出材料比重为 255 第 3 个实际的挤出机挤出材料比重为 255 将 3:255:255 这组比重值赋给 T0 | ……. | | |
|
全部评论8