This patch adds support for pwncnc
This commit is contained in:
@@ -43,7 +43,7 @@ script#tool-view-template(type="text/x-template")
|
||||
label.units RPM
|
||||
|
||||
fieldset.modbus-program(
|
||||
v-if="is_modbus && this.tool_type != 'HUANYANG VFD'")
|
||||
v-if="is_modbus && tool_type != 'HUANYANG VFD' && tool_type != 'PWNCNC VFD'")
|
||||
h2 Active Modbus Program
|
||||
p(v-if="$root.modified")
|
||||
| (Click #[tt(class="save") Save] to activate the selected
|
||||
@@ -81,9 +81,7 @@ script#tool-view-template(type="text/x-template")
|
||||
tr(v-for="(index, reg) in config['modbus-spindle'].regs",
|
||||
is="modbus-reg", :index="index", :model.sync="reg",
|
||||
:template="template['modbus-spindle'].regs.template",
|
||||
v-if="!index || reg['reg-type'] != 'disabled' || " +
|
||||
"config['modbus-spindle'].regs[index - 1]['reg-type'] != " +
|
||||
"'disabled'")
|
||||
v-if="!index || reg['reg-type'] != 'disabled' || config['modbus-spindle'].regs[index - 1]['reg-type'] != 'disabled'")
|
||||
|
||||
.notes(v-if="tool_type == 'HUANYANG VFD'")
|
||||
h2 Notes
|
||||
@@ -379,4 +377,66 @@ script#tool-view-template(type="text/x-template")
|
||||
target="_blank") OMRON MX2 VFD manual
|
||||
|
|
||||
| and spindle type. The VFD must be rebooted after changing
|
||||
| the above settings.
|
||||
| the above settings.
|
||||
|
||||
|
||||
.notes(v-if="tool_type.startsWith('V70')")
|
||||
h2 Notes
|
||||
p Set the following using the VFD's front panel.
|
||||
table.modbus-regs.fixed-regs
|
||||
tr
|
||||
th Address
|
||||
th Value
|
||||
th Meaning
|
||||
th Description
|
||||
tr
|
||||
td.reg-addr F001
|
||||
td.reg-value 2
|
||||
td Communication port
|
||||
td Control mode
|
||||
tr
|
||||
td.reg-addr P0.0.04
|
||||
td.reg-value 9
|
||||
td Modbus
|
||||
td Frequency source A
|
||||
tr
|
||||
td.reg-addr P0.1.00
|
||||
td.reg-value 0
|
||||
td Source A
|
||||
td Frequency source
|
||||
tr
|
||||
td.reg-addr P4.1.00
|
||||
td.reg-value 3
|
||||
td 9600 BAUD
|
||||
td Must match #[tt baud] above
|
||||
tr
|
||||
td.reg-addr F002
|
||||
td.reg-value 2
|
||||
td Communication port
|
||||
td Frequency setting selection
|
||||
tr
|
||||
td.reg-addr F163
|
||||
td.reg-value 1
|
||||
td Slave address
|
||||
td Must match #[tt bus-id] above
|
||||
tr
|
||||
td.reg-addr F164
|
||||
td.reg-value 1
|
||||
td 9600 BAUD
|
||||
td Must match #[tt baud] above
|
||||
tr
|
||||
td.reg-addr F165
|
||||
td.reg-value 3
|
||||
td 8 data, no parity, 1 stop, RTU
|
||||
td Must match #[tt parity] above
|
||||
p
|
||||
| Other settings according to the
|
||||
|
|
||||
a(href="https://buildbotics.com/upload/vfd/stepperonline-v70.pdf",
|
||||
target="_blank") Stepper Online V70 VFD manual
|
||||
|
||||
.notes(v-if="tool_type.startsWith('PWNCNC')")
|
||||
h2 Notes
|
||||
p For support and more information about the PwnCNC Spindle Kit, please visit #{''}
|
||||
a(href="https://pwncnc.com/onefinity-controller", target="_blank")
|
||||
| https://pwncnc.com/onefinity-controller
|
||||
Reference in New Issue
Block a user