This file contains hidden or 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 ;Relative positioning | |
| G1 E-2 F2700 ;Retract a bit | |
| G1 E-2 Z0.2 F2400 ;Retract and raise Z | |
| G1 X5 Y5 F3000 ;Wipe out | |
| G1 Z10 ;Raise Z more | |
| G90 ;Absolute positionning | |
| G1 X0 Y{machine_depth} ;Present print | |
| M106 S0 ;Turn-off fan | |
| M104 S0 ;Turn-off hotend |
This file contains hidden or 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
| import { gql, useQuery } from '@apollo/client'; | |
| import React, { ReactElement, useEffect, useMemo, useRef } from 'react'; | |
| const ME_QUERY = gql` | |
| query Me { | |
| me { | |
| firstName | |
| } | |
| } |