Merge branch 'pwncnc-patch' into 1.3.0-alpha1

This commit is contained in:
saifullah-N
2023-03-19 22:42:31 +05:30
9 changed files with 119 additions and 14 deletions

View File

@@ -8,7 +8,7 @@ module.exports = {
computed: {
has_user_value: function () {
var type = this.model["reg-type"];
return type.indexOf("write") != -1 || type.indexOf("fixed") != -1;
return type.includes("write") || type.includes("fixed") || type.includes("scaled");
},
},

View File

@@ -27,6 +27,10 @@ module.exports = {
type: "PWM Spindle",
name: "Laser (J Tech, etc)",
},
{
id: "pwncnc-vfd",
name: "PwnCNC VFD",
},
{
id: "pwm",
name: "PWM Spindle",
@@ -82,6 +86,11 @@ module.exports = {
name: "OMRON MX2",
unsupported: true,
},
{
id: "v70-vfd",
name: "V70",
unsupported: true
}
],
};
},