-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathOctoFusion.py
42 lines (29 loc) · 1.01 KB
/
OctoFusion.py
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
# Author-Patrick Rainsberry
# Description-Directly publish to OctoPrint
# Referenced heavily from: https://github.com/boboman/Octonomous/blob/master/Octonomous.py
from .octoFusionCommand import octoFusionCommand
commands = []
command_defs = []
# Define parameters for command
cmd = {
'commandName': 'OctoFusion',
'commandDescription': 'Export model to OctoPrint',
'commandResources': './Resources/OctoFusion',
'cmdId': 'OctoFusion_CmdId',
'workspace': 'FusionSolidEnvironment',
'toolbarPanelID': 'SolidMakePanel',
'class' : octoFusionCommand
}
command_defs.append(cmd)
# Set to True to display various useful messages when debugging your app
debug = False
for cmd_def in command_defs:
# Creates the commands for use in the Fusion 360 UI
command = cmd_def['class'](cmd_def, debug)
commands.append(command)
def run(context):
for command in commands:
command.onRun()
def stop(context):
for command in commands:
command.onStop()