#!/usr/bin/python # AUTHOR: # Carlosgs (http://carlosgs.es) # LICENSE: # Attribution - Share Alike - Creative Commons (http://creativecommons.org/licenses/by-sa/3.0/) # # DISCLAIMER: # This software is provided "as is", and you use the software at your own risk. Under no # circumstances shall Carlosgs be liable for direct, indirect, special, incidental, or # consequential damages resulting from the use, misuse, or inability to use this software, # even if Carlosgs has been advised of the possibility of such damages. # Begin configuration from configuration import * # load settings # End configuration # Begin modules from misc import * import CycloneHost.GcodeViewer as gcv # End modules # Gcode generation import os from subprocess import call original_dir = os.getcwd() os.chdir("./GcodeGenerators/pyGerber2Gcode_CUI/") call(["python","./pygerber2gcode_cui_MOD.py"]) # call(["pypy","./pygerber2gcode_cui_MOD.py"]) # If you have "pypy" installed go ahead! os.chdir(original_dir) Z_PROBING_FILE = "Z_probing_data.p" plt.ion() # IMPORTANT: Enable real-time plotting gcodeviewer = pltNewFig() # Define a new figure, this doesnt open a window by itself (real-time plotting disabled) filePath = "./GcodeGenerators/pyGerber2Gcode_CUI/out/" fileName = "GNBoard" # sys.argv[1] (etch_moves, travel_moves, gcode_minXY_global, gcode_maxXY_global) = gcv.view(filePath,fileName,showAll=1) # Save the dimensions for the Z probing Z_probing_data = {} Z_probing_data['grid_origin'] = gcode_minXY_global (grid_len_X,grid_len_Y) = (gcode_maxXY_global[0]-gcode_minXY_global[0], gcode_maxXY_global[1]-gcode_minXY_global[1]) # We take in account panelizing grid_len_X *= N_copies_X grid_len_X += N_copies_X*margin_copies_X grid_len_Y *= N_copies_Y grid_len_Y += N_copies_Y*margin_copies_Y print "PANELIZING: There will be",str(N_copies_X)+"x"+str(N_copies_Y),"copies of this board" Z_probing_data['grid_len'] = (grid_len_X,grid_len_Y) saveToFile(Z_probing_data,Z_PROBING_FILE) pltRefresh(gcodeviewer) # Draw the figure contents, still no window pltShow() # Open the window showing our figure raw_input("Press enter to exit...")