forked from makerbot/conveyor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconveyor-win32.conf
84 lines (84 loc) · 3.02 KB
/
conveyor-win32.conf
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
{ // Basic configuration parameters used by both the conveyor client and
// service.
"common":
{ // The address of the conveyor service.
"address": "tcp:127.0.0.1:9999"
, // The location of the conveyor service PID file.
"pid_file": "conveyord.pid"
}
, // Configuration parameters for the MakerBot driver.
"makerbot_driver":
{ // The directory containing the MakerBot machine profiles.
"profile_dir": "s3g/profiles"
}
, // Configuration parameters for the Miracle Grue slicer.
"miracle_grue":
{ // The path to the Miracle-Grue executable.
"exe": "miracle_grue.exe"
, // The directory containing the default Miracle-Grue slicing profiles.
"profile_dir": "miraclegrue"
}
, // Configuration parameters for the Skeinforge slicer.
"skeinforge":
{ // The path to the Skeinforge application file.
"file": "skeinforge/skeinforge_application/skeinforge.py"
, // The directory containing the default Skeinforge slicing profiles.
"profile_dir": "skeinforge"
, // The default Skeinforge profile.
"profile": "Replicator slicing defaults"
}
, // Configuration parameters for the conveyor service.
"server":
{ // Whether or not the conveyor service should change directory to the
// root directory after launching.
"chdir": false
, // The number of threads available for handling events.
"event_threads": 4
, // The logging configuration for the conveyor service.
"logging":
{ // Whether or not logging is enabled for the conveyor service.
"enabled": true
, // The path for the conveyor service log file.
"file": "conveyord.log"
, // The logging level for the conveyor service.
"level": "INFO"
}
, // The path to the mesh extraction program.
"unified_mesh_hack_exe": "unified_mesh_hack.exe"
}
, // Configuration parameters for the conveyor client.
"client":
{ // The number of threads available for handling events.
"event_threads": 2
, // The logging configuration for the conveyor client.
"logging":
{ // Whether or not logging is enabled for the conveyor client.
"enabled": false
, // The path for the conveyor client log file.
"file": "conveyorc.log"
, // The logging level for the conveyor service.
"level": "INFO"
}
, // Default slicing settings.
"slicing":
{ // Whether or not to print a raft.
"raft": false
, // Whether no not to print support material.
"support": false
, // The infill density.
"infill": 0.1
, // The layer height.
"layer_height": 0.27
, // The number of shells.
"shells": 2
, // The extruder temperature.
"extruder_temperature": 230.0
, // The platform temperature.
"platform_temperature": 110.0
, // The print speed.
"print_speed": 80.0
, // The travel speed.
"travel_speed": 100.0
}
}
}