Skip to content

Commit

Permalink
save babystepZ to eeprom (UnchartedBull#1621)
Browse files Browse the repository at this point in the history
* save babystepZ to eeprom

* add semilcolon

Co-authored-by: Timon G. <[email protected]>

Co-authored-by: Timon G. <[email protected]>
  • Loading branch information
pciavald and UnchartedBull committed May 12, 2021
1 parent e8f71b4 commit 015156c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/print-control/print-control.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export class PrintControlComponent implements OnInit, OnDestroy {
this.zOffset = Math.round((this.zOffset + value) * 100) / 100;
this.printerService.executeGCode(`${this.configService.getZBabystepGCode()}${value}`);
// save babystepZ to EEPROM
this.printerService.executeGCode('M500')
this.printerService.executeGCode('M500');
}
}

Expand Down

0 comments on commit 015156c

Please sign in to comment.