Merge branch 'pwncnc-patch' into 1.3.0-alpha1
This commit is contained in:
@@ -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");
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
@@ -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
|
||||
}
|
||||
],
|
||||
};
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user