Buildbotics CNC Controller Firmware Changelog
==============================================
+## v0.3.29
+ - Increased display precision of position and motor config.
+
## v0.3.28
- Show step rate on motor configuration page.
- Limit motor max-velocity such that step rate cannot exceed 250k.
{
"name": "bbctrl",
- "version": "0.3.28",
+ "version": "0.3.29",
"homepage": "http://buildbotics.com/",
"repository": "https://github.com/buildbotics/bbctrl-firmware",
"license": "GPL-3.0+",
th.name #{axis}
td.position
unit-value(:value="state.#{axis}p + get_offset('#{axis}')",
- precision="3")
+ precision="4")
td.absolute: unit-value(:value="state.#{axis}p", precision="3")
td.offset: unit-value(:value="get_offset('#{axis}')", precision="3")
th.actions
methods: {
set_view: function () {
if (this.template.scale && !this.metric)
- this.view = (this.model / this.template.scale).toFixed(2);
+ this.view = (this.model / this.template.scale).toFixed(3);
else this.view = this.model;
},
change: function () {
if (this.template.scale && !this.metric)
- this.model = 1 * (this.view * this.template.scale).toFixed(3);
+ this.model = 1 * (this.view * this.template.scale).toFixed(4);
else this.model = this.view;
this.$dispatch('input-changed');