This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
${RELATIVE_FILEPATH/(\\\\)/\\//g} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
G91 ; use relative positioning | |
G0 Z5; move Z up 5mm prior to homing | |
M117 Heating bed and hot end... ; Message | |
M140 S[first_layer_bed_temperature] ; set bed temp | |
M104 S80 ; set hot end to a relatively low temp to save time after levelling | |
M190 S[first_layer_bed_temperature] ; wait for bed temp | |
M117 Waiting for bed expansion ; Message | |
G4 S60 ; wait 1 minute for the bed to expand |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const loginMachine = Machine({ | |
id: 'loginMachine', | |
context: { | |
tag: '', | |
token: '' | |
}, | |
initial: 'tagEntry', | |
states: { | |
tagEntry: { | |
on: { |