-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathendpoints_5m_3.2.7.yaml
More file actions
821 lines (819 loc) · 21.9 KB
/
endpoints_5m_3.2.7.yaml
File metadata and controls
821 lines (819 loc) · 21.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
paths:
/checkCode:
post:
description: >-
Validate serialNumber + checkCode for LAN access. Returns code/message.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- serialNumber
- checkCode
properties:
serialNumber:
type: string
checkCode:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CodeMessageResponse'
/detail:
post:
description: >-
Gets info on the current status and config of the printer.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- serialNumber
- checkCode
properties:
serialNumber:
type: string
checkCode:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/DetailResponse'
/product:
post:
description: >-
Returns product capability/control state flags.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- serialNumber
- checkCode
properties:
serialNumber:
type: string
checkCode:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ProductResponse'
/control:
post:
description: >-
Send a command to the printer.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- serialNumber
- checkCode
- payload
properties:
serialNumber:
type: string
checkCode:
type: string
payload:
oneOf:
- $ref: "#/components/schemas/LightControlCmd"
- $ref: "#/components/schemas/CirculateCtlCmd"
- $ref: "#/components/schemas/TemperatureCtlCmd"
- $ref: "#/components/schemas/PrinterCtlCmd"
- $ref: "#/components/schemas/JobCtlCmd"
- $ref: "#/components/schemas/DelayCloseCmd"
- $ref: "#/components/schemas/ReNameCmd"
- $ref: "#/components/schemas/CalibrationCmd"
- $ref: "#/components/schemas/StreamCtrlCmd"
- $ref: "#/components/schemas/UserProfileCmd"
- $ref: "#/components/schemas/StateCtrlCmd"
- $ref: "#/components/schemas/DeviceUnregisterCmd"
- $ref: "#/components/schemas/DeviceUpdateDetailCmd"
- $ref: "#/components/schemas/NewJobCmd"
- $ref: "#/components/schemas/NewLocalJobCmd"
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CodeMessageResponse'
/gcodeList:
post:
description: >-
Returns a list of printable files from /data (extensions: .g, .gx, .gcode, .3mf).
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- serialNumber
- checkCode
properties:
serialNumber:
type: string
checkCode:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GcodeListResponse'
/gcodeThumb:
post:
description: >-
Returns a base64 thumbnail for a given fileName.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- serialNumber
- checkCode
- fileName
properties:
serialNumber:
type: string
checkCode:
type: string
fileName:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GcodeThumbResponse'
/printGcode:
post:
description: >-
Start printing a file from /data. Returns code/message.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- serialNumber
- checkCode
- fileName
- levelingBeforePrint
properties:
serialNumber:
type: string
checkCode:
type: string
fileName:
type: string
levelingBeforePrint:
type: boolean
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CodeMessageResponse'
/getThum:
get:
description: >-
Returns current print thumbnail as image/bmp. On error returns JSON code/message.
responses:
'200':
content:
image/bmp:
schema:
type: string
format: binary
application/json:
schema:
$ref: '#/components/schemas/CodeMessageResponse'
/notifyWanBind:
post:
description: >-
Notify WAN bind. Validates serialNumber and triggers a bind event on success.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- serialNumber
properties:
serialNumber:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CodeMessageResponse'
/uploadGcode:
post:
description: >-
Upload a gcode/3mf file to local storage via multipart/form-data.
Requires headers for serialNumber/checkCode/fileSize/printNow/levelingBeforePrint.
parameters:
- in: header
name: serialNumber
required: true
schema:
type: string
- in: header
name: checkCode
required: true
schema:
type: string
- in: header
name: fileSize
required: true
schema:
type: integer
description: File size in bytes
- in: header
name: printNow
required: true
schema:
type: string
description: String boolean, typically "0" or "1"
- in: header
name: levelingBeforePrint
required: true
schema:
type: string
description: String boolean, typically "0" or "1"
requestBody:
required: true
content:
multipart/form-data:
schema:
type: object
required:
- gcodeFile
properties:
gcodeFile:
type: string
format: binary
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CodeMessageResponse'
components:
schemas:
DetailResponse:
type: object
properties:
code:
type: integer
message:
type: string
detail:
$ref: '#/components/schemas/Details'
IsOpenEnum:
type: string
enum:
- open
- close
CodeMessageResponse:
type: object
properties:
code:
type: integer
message:
type: string
ProductResponse:
type: object
properties:
code:
type: integer
message:
type: string
product:
type: object
properties:
nozzleTempCtrlState:
type: integer
chamberTempCtrlState:
type: integer
platformTempCtrlState:
type: integer
lightCtrlState:
type: integer
internalFanCtrlState:
type: integer
externalFanCtrlState:
type: integer
GcodeListResponse:
type: object
properties:
code:
type: integer
message:
type: string
gcodeList:
type: array
items:
type: string
GcodeThumbResponse:
type: object
properties:
code:
type: integer
message:
type: string
imageData:
type: string
description: Base64-encoded thumbnail image
Details:
type: object
description: Verified in 3.2.7 (request_detail).
properties:
autoShutdown:
$ref: "#/components/schemas/IsOpenEnum"
autoShutdownTime:
type: integer
cameraStreamUrl:
type: string
description: Empty if camera disabled; otherwise http://<ip>:8080/?action=stream.
chamberFanSpeed:
type: integer
chamberTargetTemp:
type: number
chamberTemp:
type: number
coolingFanSpeed:
type: integer
cumulativeFilament:
type: number
cumulativePrintTime:
type: integer
currentPrintSpeed:
type: integer
doorStatus:
$ref: "#/components/schemas/IsOpenEnum"
errorCode:
type: string
estimatedLeftLen:
type: number
estimatedLeftWeight:
type: number
estimatedRightLen:
type: number
estimatedRightWeight:
type: number
estimatedTime:
type: number
externalFanStatus:
$ref: "#/components/schemas/IsOpenEnum"
fillAmount:
type: integer
firmwareVersion:
type: string
flashRegisterCode:
type: string
internalFanStatus:
$ref: "#/components/schemas/IsOpenEnum"
ipAddr:
type: string
leftFilamentType:
type: string
leftTargetTemp:
type: number
leftTemp:
type: number
lightStatus:
$ref: "#/components/schemas/IsOpenEnum"
location:
type: string
macAddr:
type: string
measure:
type: string
name:
type: string
nozzleCnt:
type: integer
nozzleModel:
type: string
nozzleStyle:
type: integer
pid:
type: integer
platTargetTemp:
type: number
platTemp:
type: number
polarRegisterCode:
type: string
printDuration:
type: integer
printFileName:
type: string
printFileThumbUrl:
type: string
description: Empty if no thumb; otherwise http://<ip>:8898/getThum. Base file dir is /data/.
printLayer:
type: integer
printProgress:
type: number
printSpeedAdjust:
type: number
remainingDiskSpace:
type: number
rightFilamentType:
type: string
rightTargetTemp:
type: number
rightTemp:
type: number
status:
type: string
targetPrintLayer:
type: integer
tvoc:
type: integer
zAxisCompensation:
type: number
JobInfo:
type: array
description: |
Array of job tuples. Structure: `[[deviceSN, jobID, filepath], ...]`.
Firmware iterates this array looking for a `deviceSN` (index 0) match with the local printer.
items:
type: array
items:
type: string
NewJobCmd:
type: object
description: Start a cloud/multi-device job.
required:
- cmd
- args
properties:
cmd:
type: string
enum: [newJob_cmd]
args:
type: object
required:
- jobInfo
properties:
jobRouter:
type: boolean
description: |
**Presence Flag**: The value (true/false) is ignored. If this key is *present* in the JSON,
the firmware extracts the filepath from `jobInfo` tuple index 2.
If *absent*, it uses the root `filepath` property.
jobInfo:
type: array
items:
- $ref: "#/components/schemas/JobInfo"
filepath:
type: string
description: only read if jobRouter is not declared
filename:
type: string
thumbPath:
type: string
fileMd5:
type: string
printNow:
type: boolean
leveling:
type: boolean
LightControlCmd:
type: object
description: set light states
required:
- cmd
- args
properties:
cmd:
type: string
enum: [lightControl_cmd]
args:
type: object
required:
- status
properties:
status:
type: string
CirculateCtlCmd:
type: object
description: set fan states
required:
- cmd
- args
properties:
cmd:
type: string
enum: [circulateCtl_cmd]
args:
type: object
required:
- internal
- external
properties:
internal:
type: string
external:
type: string
TemperatureCtlCmd:
type: object
description: Set nozzle, bed, and chamber temperatures
required:
- cmd
- args
properties:
cmd:
type: string
enum: [temperatureCtl_cmd]
args:
type: object
properties:
platform:
type: integer
default: -200
description: Bed temperature (°C). -100 = off (0), -200 = no change.
rightNozzle:
type: integer
default: -200
description: Right/main nozzle temperature (°C). -100 = off (0), -200 = no change.
leftNozzle:
type: integer
default: -200
description: Left nozzle temperature (°C). -100 = off (0), -200 = no change.
chamber:
type: integer
default: -200
description: Chamber temperature (°C). -100 = off (0), -200 = no change.
PrinterCtlCmd:
type: object
description: |
Set speeds, fans, and z-axis compensation.
**Partial Update Behavior:** This command supports partial updates. Fields omitted from the payload
are ignored by the firmware (using internal sentinel values, e.g., -200).
**Important:** Do NOT send default values (like 0) for fields you do not intend to change,
as this will overwrite the user's current settings.
required:
- cmd
- args
properties:
cmd:
type: string
enum: [printerCtl_cmd]
args:
type: object
properties:
zAxisCompensation:
type: number
default: -200.0
description: |
Z-offset in mm. Maps to `SET_GCODE_OFFSET Z=<val> MOVE=1`.
Range: -5.0 to +5.0. Values outside this range are ignored.
Sentinel: -200.0 (ignore).
speed:
type: integer
default: -200
description: |
Print speed percentage. Maps to `M220 S<val>`.
Clamped range: 50-150.
Sentinel: -200 (ignore).
chamberFan:
type: integer
default: -200
description: Chamber fan speed (0-255, 0=off). Sentinel -200 (ignore).
coolingFan:
type: integer
default: -200
description: Cooling fan speed (0-255, 0=off). Sentinel -200 (ignore).
JobCtlCmd:
type: object
description: Control print jobs (pause, resume, cancel)
required:
- cmd
- args
properties:
cmd:
type: string
enum: [jobCtl_cmd]
args:
type: object
required:
- jobID
- action
properties:
jobID:
type: string
description: Job identifier
action:
type: string
description: Control action
enum: [pause, continue, resume, cancel, stop]
DelayCloseCmd:
type: object
description: configure automatic power-off
required:
- cmd
- args
properties:
cmd:
type: string
enum: [delayClose_cmd]
args:
type: object
required:
- automaticShutdown
- shutdownAfterTime
properties:
automaticShutdown:
type: string
shutdownAfterTime:
type: integer
ReNameCmd:
type: object
description: give your printer a nickname
required:
- cmd
- args
properties:
cmd:
type: string
enum: [reName_cmd]
args:
type: object
required:
- name
properties:
name:
type: string
CalibrationCmd:
type: object
description: configure leveling and vibration compensation
required:
- cmd
- args
properties:
cmd:
type: string
enum: [calibration_cmd]
args:
type: object
required:
- levelingDetection
- vibrationCompensation
properties:
levelingDetection:
type: string
vibrationCompensation:
type: string
StreamCtrlCmd:
type: object
description: control the camera state
required:
- cmd
- args
properties:
cmd:
type: string
enum: [streamCtrl_cmd]
args:
type: object
required:
- action
properties:
action:
type: string
UserProfileCmd:
type: object
description: best guess... cloud account management
required:
- cmd
- args
properties:
cmd:
type: string
enum: [userProfile_cmd]
args:
type: object
required:
- name
- avatar
properties:
name:
type: string
avatar:
type: string
DeviceUnregisterCmd:
type: object
description: best guess... disables cloud account
required:
- cmd
properties:
cmd:
type: string
enum: [deviceUnregister_cmd]
StateCtrlCmd:
type: object
description: control the printer state
required:
- cmd
- args
properties:
cmd:
type: string
enum: [stateCtrl_cmd]
args:
type: object
required:
- action
properties:
action:
type: string
DeviceUpdateDetailCmd:
type: object
description: |
Check for firmware updates from FlashForge update server.
Despite the name, this command does NOT update local device details.
It queries the remote update server for firmware version information.
This command will:
- Query all 4 firmware packages (kernel, control, library, software)
- Check for available updates on update.flashforge.com
- Retrieve version information, download URLs, and changelogs
- Return update availability without installing anything
This command will NOT:
- Modify any local printer state
- Install firmware updates
- Update device information cache
required:
- cmd
- args
properties:
cmd:
type: string
enum: [deviceUpdateDetail_cmd]
args:
type: object
description: Empty args object (no parameters required)
NewLocalJobCmd:
type: object
description: submit a new job to the print
required:
- cmd
- args
properties:
cmd:
type: string
enum: [newLocalJob_cmd]
args:
type: object
required:
- jobId
- fileName
- printNow
- leveling
properties:
jobId:
type: string
fileName:
type: string
thumbPath:
type: string
printNow:
type: boolean
description: Start printing immediately
leveling:
type: boolean
description: Perform bed leveling before print
flowCalibration:
type: boolean
description: Perform flow calibration (AD5X only)
useMs:
type: boolean
description: Use material station (AD5X only)
tCount:
type: integer
description: Material/tool count (AD5X only)