-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.go
More file actions
75 lines (74 loc) · 3.41 KB
/
types.go
File metadata and controls
75 lines (74 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package main
type InitalWSResponse struct {
TotalLayer int `json:"TotalLayer"`
AccelToDecelLimits int `json:"accelToDecelLimits"`
AccelerationLimits int `json:"accelerationLimits"`
AiDetection int `json:"aiDetection"`
AiFirstFloor int `json:"aiFirstFloor"`
AiPausePrint int `json:"aiPausePrint"`
AiSw int `json:"aiSw"`
AutoLevelResult string `json:"autoLevelResult"`
Autohome string `json:"autohome"`
AuxiliaryFanPct int `json:"auxiliaryFanPct"`
BedTemp0 string `json:"bedTemp0"`
BedTemp1 string `json:"bedTemp1"`
BedTemp2 string `json:"bedTemp2"`
BedTempAutoPid int `json:"bedTempAutoPid"`
BoxTemp int `json:"boxTemp"`
CaseFanPct int `json:"caseFanPct"`
Connect int `json:"connect"`
CornerVelocityLimits int `json:"cornerVelocityLimits"`
CurFeedratePct int `json:"curFeedratePct"`
CurFlowratePct int `json:"curFlowratePct"`
CurPosition string `json:"curPosition"`
DProgress int `json:"dProgress"`
DeviceState int `json:"deviceState"`
EnableSelfTest int `json:"enableSelfTest"`
Err struct {
Errcode int `json:"errcode"`
Key int `json:"key"`
} `json:"err"`
Fan int `json:"fan"`
FanAuxiliary int `json:"fanAuxiliary"`
FanCase int `json:"fanCase"`
Hostname string `json:"hostname"`
Layer int `json:"layer"`
LightSw int `json:"lightSw"`
MaterialDetect int `json:"materialDetect"`
MaterialStatus int `json:"materialStatus"`
MaxBedTemp int `json:"maxBedTemp"`
MaxNozzleTemp int `json:"maxNozzleTemp"`
Model string `json:"model"`
ModelFanPct int `json:"modelFanPct"`
ModelVersion string `json:"modelVersion"`
NozzleMoveSnapshot int `json:"nozzleMoveSnapshot"`
NozzleTemp string `json:"nozzleTemp"`
NozzleTempAutoPid int `json:"nozzleTempAutoPid"`
PowerLoss int `json:"powerLoss"`
PressureAdvance string `json:"pressureAdvance"`
PrintFileName string `json:"printFileName"`
PrintID string `json:"printId"`
PrintJobTime int `json:"printJobTime"`
PrintLeftTime int `json:"printLeftTime"`
PrintProgress int `json:"printProgress"`
PrintStartTime int `json:"printStartTime"`
RealTimeFlow string `json:"realTimeFlow"`
RealTimeSpeed string `json:"realTimeSpeed"`
RepoPlrStatus int `json:"repoPlrStatus"`
SmoothTime string `json:"smoothTime"`
State int `json:"state"`
TargetBedTemp0 int `json:"targetBedTemp0"`
TargetBedTemp1 int `json:"targetBedTemp1"`
TargetBedTemp2 int `json:"targetBedTemp2"`
TargetNozzleTemp int `json:"targetNozzleTemp"`
TfCard int `json:"tfCard"`
UpgradeStatus int `json:"upgradeStatus"`
UsedMaterialLength int `json:"usedMaterialLength"`
VelocityLimits int `json:"velocityLimits"`
Video int `json:"video"`
Video1 int `json:"video1"`
VideoElapse int `json:"videoElapse"`
VideoElapseFrame int `json:"videoElapseFrame"`
VideoElapseInterval int `json:"videoElapseInterval"`
WithSelfTest int `json:"withSelfTest"`
}