EM60 in tool-view.js

This commit is contained in:
saifullah-N
2023-01-10 16:10:27 +05:30
parent a342fef0c9
commit d88f6c7fd0

View File

@@ -10,79 +10,83 @@ module.exports = {
data: function() { data: function() {
return { return {
address: 0, address: 0,
value: 0, value: 0,
toolList: [ toolList: [
{ {
id: "disabled", id: "disabled",
name: "Disabled" name: "Disabled",
}, },
{ {
id: "router", id: "router",
type: "PWM Spindle", type: "PWM Spindle",
name: "Router (Makita, etc)" name: "Router (Makita, etc)",
}, },
{ {
id: "laser", id: "laser",
type: "PWM Spindle", type: "PWM Spindle",
name: "Laser (J Tech, etc)" name: "Laser (J Tech, etc)",
}, },
{ {
id: "pwm", id: "pwm",
name: "PWM Spindle" name: "PWM Spindle",
}, },
{ {
id: "unsupported-separator", id: "unsupported-separator",
name: "Unsupported Tools", name: "Unsupported Tools",
disabled: true, disabled: true,
unsupported: true unsupported: true,
}, },
{ {
id: "huanyang-vfd", id: "huanyang-vfd",
name: "Huanyang VFD", name: "Huanyang VFD",
unsupported: true unsupported: true,
}, },
{ {
id: "custom-modbus-vfd", id: "custom-modbus-vfd",
name: "Custom Modbus VFD", name: "Custom Modbus VFD",
unsupported: true unsupported: true,
}, },
{ {
id: "ac-tech-vfd", id: "ac-tech-vfd",
name: "AC-Tech VFD", name: "AC-Tech VFD",
unsupported: true unsupported: true,
}, },
{ {
id: "nowforever-vfd", id: "nowforever-vfd",
name: "Nowforever VFD", name: "Nowforever VFD",
unsupported: true unsupported: true,
}, },
{ {
id: "delta-vfd", id: "delta-vfd",
name: "Delta VFD015M21A (Beta)", name: "Delta VFD015M21A (Beta)",
unsupported: true unsupported: true,
}, },
{ {
id: "yl600-vfd", id: "yl600-vfd",
name: "YL600, YL620, YL620-A VFD (Beta)", name: "YL600, YL620, YL620-A VFD (Beta)",
unsupported: true unsupported: true,
}, },
{ {
id: "fr-d700-vfd", id: "fr-d700-vfd",
name: "FR-D700 (Beta)", name: "FR-D700 (Beta)",
unsupported: true unsupported: true,
}, },
{ {
id: "sunfar-e300-vfd", id: "sunfar-e300-vfd",
name: "Sunfar E300 (Beta)", name: "Sunfar E300 (Beta)",
unsupported: true unsupported: true,
}, },
{ {
id: "omron-mx2-vfd", id: "omron-mx2-vfd",
name: "OMRON MX2", name: "OMRON MX2",
unsupported: true unsupported: true,
} },
] {
id: "EM60",
name: "EM60",
},
],
}; };
}, },