# -*- coding: utf-8 -*- # # A script to check for annular ring violations # both for TH pads and vias # requirements: KiCAD pcbnew >= 4.0 # annular.py release "1.5.1" # # annular.py checking PCB for Annular Ring in Vias and TH Pads # (SMD, Connector and NPTH are skipped) # default Annular Ring >= 0.15 both for TH Pads and Vias # to change values modify: # # AR_SET = 0.150 #minimum annular accepted for pads # AR_SET_V = 0.150 #minimum annular accepted for vias # annular.py ___version___="1.5.7" global mm_ius, DRL_EXTRA, AR_SET, AR_SET_V, DRL_EXTRA_ius, MIN_AR_SIZE, MIN_AR_SIZE_V, found_violations #wx.LogMessage("My message") mm_ius = 1000000.0 # (consider always drill +0.1) DRL_EXTRA=0.1 DRL_EXTRA_ius=DRL_EXTRA * mm_ius AR_SET = 0.125 #minimum annular accepted for pads MIN_AR_SIZE = AR_SET * mm_ius AR_SET_V = 0.125 #minimum annular accepted for vias MIN_AR_SIZE_V = AR_SET_V * mm_ius import sys import wx import wx.html import subprocess import os import pcbnew from pcbnew import * import base64 from wx.lib.embeddedimage import PyEmbeddedImage sys.path.append(os.path.dirname(__file__)) class annular_check( pcbnew.ActionPlugin ): """ A script to check for annular ring violations both for TH pads and vias requirements: KiCAD pcbnew >= 4.0 annular.py release "1.5.1" annular.py checking PCB for Annular Ring in Vias and TH Pads (SMD, Connector and NPTH are skipped) default Annular Ring >= 0.15 both for TH Pads and Vias to change values modify: AR_SET = 0.150 #minimum annular accepted for pads AR_SET_V = 0.150 #minimum annular accepted for vias """ def defaults( self ): """ Method defaults must be redefined self.name should be the menu label to use self.category should be the category (not yet used) self.description should be a comprehensive description of the plugin """ self.name = "Annular check" self.category = "Checking PCB" self.description = "Automaticaly check annular on an existing PCB" def Run( self ): ########################################################################### ## Class AR_Prm ########################################################################### class AR_Prm ( wx.Dialog ): def __init__( self, parent ): wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = "AR parameters", pos = wx.DefaultPosition, size = wx.Size( 320,193 ), style = wx.DEFAULT_DIALOG_STYLE ) self.SetSizeHints( 500,500 ) self.SetIcon(PyEmbeddedImage(annular_ico_b64_data).GetIcon()) bSizer1 = wx.BoxSizer( wx.VERTICAL ) gSizer2 = wx.GridSizer( 0, 2, 0, 0 ) self.m_staticText11 = wx.StaticText( self, wx.ID_ANY, u"PHD margin", wx.Point( -1,-1 ), wx.DefaultSize, 0 ) self.m_staticText11.Wrap( -1 ) gSizer2.Add( self.m_staticText11, 0, wx.ALL, 5 ) self.m_textPHD = wx.TextCtrl( self, wx.ID_ANY, str(DRL_EXTRA), wx.DefaultPosition, wx.DefaultSize, 0 ) gSizer2.Add( self.m_textPHD, 0, wx.ALL, 5 ) self.m_staticText1 = wx.StaticText( self, wx.ID_ANY, u"AR for pads", wx.Point( -1,-1 ), wx.DefaultSize, 0 ) self.m_staticText1.Wrap( -1 ) gSizer2.Add( self.m_staticText1, 0, wx.ALL, 5 ) self.m_textAR_SET = wx.TextCtrl( self, wx.ID_ANY, str(AR_SET), wx.DefaultPosition, wx.DefaultSize, 0 ) gSizer2.Add( self.m_textAR_SET, 0, wx.ALL, 5 ) self.m_staticText12 = wx.StaticText( self, wx.ID_ANY, u"AR for vias", wx.Point( -1,-1 ), wx.DefaultSize, 0 ) self.m_staticText12.Wrap( -1 ) gSizer2.Add( self.m_staticText12, 0, wx.ALL, 5 ) self.m_textAR_SET_V = wx.TextCtrl( self, wx.ID_ANY, str(AR_SET_V), wx.DefaultPosition, wx.DefaultSize, 0 ) gSizer2.Add( self.m_textAR_SET_V, 0, wx.ALL, 5 ) bSizer1.Add( gSizer2, 1, wx.EXPAND, 5 ) gSizer1 = wx.GridSizer( 0, 2, 0, 0 ) self.m_ok_btn = wx.Button( self, wx.ID_ANY, u"OK", wx.DefaultPosition, wx.DefaultSize, 0 ) gSizer1.Add( self.m_ok_btn, 0, wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 5 ) # self.m_cancel_btn = wx.Button( self, wx.ID_ANY, u"Cancel", wx.DefaultPosition, wx.DefaultSize, 0 ) # gSizer1.Add( self.m_cancel_btn, 0, wx.ALL, 5 ) bSizer1.Add( gSizer1, 1, wx.EXPAND, 5 ) self.SetSizer( bSizer1 ) self.Layout() self.Centre( wx.BOTH ) #### ----- connections # Connect Events self.Bind(wx.EVT_BUTTON, self.OnClickOK, self.m_ok_btn) # self.Bind(wx.EVT_BUTTON, self.OnClickCancel, self.m_cancel_btn) # Tooltips #self.m_cancel_btn.SetToolTip( wx.ToolTip(u"Cancel" )) self.m_ok_btn.SetToolTip( wx.ToolTip(u"Confirm" )) self.m_staticText1.SetToolTip( wx.ToolTip(u"Annular Ring for Pads (mm)" )) self.m_textAR_SET.SetToolTip( wx.ToolTip(u"Annular Ring for Pads (mm)" )) self.m_textAR_SET_V.SetToolTip( wx.ToolTip(u"Annular Ring for Vias (mm)" )) self.m_staticText12.SetToolTip( wx.ToolTip(u"Annular Ring for Vias (mm)" )) self.m_textPHD.SetToolTip( wx.ToolTip(u"Drill extra margin (mm)" )) self.m_staticText11.SetToolTip( wx.ToolTip(u"Drill extra margin (mm)" )) def __del__( self ): pass def OnClickOK(self, event): global mm_ius, DRL_EXTRA, AR_SET, AR_SET_V, DRL_EXTRA_ius, MIN_AR_SIZE, MIN_AR_SIZE_V self.m_ok_btn.SetLabel("Clicked") phd = float(self.m_textPHD.GetValue().replace(',','.')) ar = float(self.m_textAR_SET.GetValue().replace(',','.')) arv = float(self.m_textAR_SET_V.GetValue().replace(',','.')) DRL_EXTRA=phd DRL_EXTRA_ius=DRL_EXTRA * mm_ius AR_SET = ar #minimum annular accepted for pads MIN_AR_SIZE = AR_SET * mm_ius AR_SET_V = arv #minimum annular accepted for vias MIN_AR_SIZE_V = AR_SET_V * mm_ius self.Destroy() def OnClickCancel(self, event): self.m_cancel_btn.SetLabel("Clicked") self.Destroy() #wx.MessageDialog(self.frame,"ciao") #subprocess.check_call(["C:\pathToYourProgram\yourProgram.exe", "your", "arguments", "comma", "separated"]) #http://stackoverflow.com/questions/1811691/running-an-outside-program-executable-in-python class displayDialog(wx.Dialog): """ The default frame http://stackoverflow.com/questions/3566603/how-do-i-make-wx-textctrl-multi-line-text-update-smoothly """ global mm_ius, DRL_EXTRA, AR_SET, AR_SET_V, DRL_EXTRA_ius, MIN_AR_SIZE, MIN_AR_SIZE_V, found_violations #---------------------------------------------------------------------- #def __init__(self): # """Constructor""" # wx.Frame.__init__(self, None, title="Display Frame", style=wx.DEFAULT_FRAME_STYLE, wx.ICON_INFORMATION) # panel = wx.Panel(self) def __init__(self, parent): wx.Dialog.__init__(self, parent, id=-1, title="Annular Checker")# #, style=wx.DEFAULT_DIALOG_STYLE, wx.ICON_INFORMATION) #, style=wx.DEFAULT_DIALOG_STYLE, wx.ICON_INFORMATION) #, pos=DefaultPosition, size=DefaultSize, style = wx.DEFAULT_FRAME_STYLE & (~wx.MAXIMIZE_BOX), name="fname") #, wx.ICON_INFORMATION) #, title="Annular Check", style=wx.DEFAULT_FRAME_STYLE, wx.ICON_INFORMATION) # self.SetIcon(PyEmbeddedImage(annular_ico_b64_data).GetIcon()) #wx.IconFromBitmap(wx.Bitmap("icon.ico", wx.BITMAP_TYPE_ANY))) self.panel = wx.Panel(self) if found_violations: self.title = wx.StaticText(self.panel, label="Check result: (Violations found)") #self.title.SetForegroundColour('#FF0000') self.title.SetBackgroundColour('#FF0000') font = wx.Font(wx.DEFAULT, wx.DECORATIVE, wx.ITALIC, wx.BOLD) self.title.SetFont(font) else: self.title = wx.StaticText(self.panel, label="Annular Check result: OK") self.title.SetBackgroundColour('#00FF00') #self.result = wx.StaticText(self.panel, label="") #self.result.SetForegroundColour('#FF0000') #self.button = wx.Button(self.panel, label="Save") #self.lblname = wx.StaticText(self.panel, label="Your name:") #self.editname = wx.TextCtrl(self.panel, size=(140, -1)) self.editname = wx.TextCtrl(self.panel, size = (400, 400), style = wx.TE_MULTILINE|wx.TE_READONLY) self.m_htmlWin1 = wx.html.HtmlWindow( self.panel, wx.ID_ANY, wx.DefaultPosition, wx.Size( 400,400 ), wx.html.HW_SCROLLBAR_AUTO ) #bSizer1.Add( self.m_htmlWin1, 0, wx.ALL, 5 ) # Set sizer for the frame, so we can change frame size to match widgets self.windowSizer = wx.BoxSizer() #self.windowSizer.Add(self.m_htmlWin1, 1, wx.ALL | wx.EXPAND) self.windowSizer.Add(self.panel, 1, wx.ALL | wx.EXPAND) # Set sizer for the panel content self.sizer = wx.GridBagSizer(5, 0) self.sizer.Add(self.title, (0, 0)) #self.sizer.Add(self.result, (1, 0)) #self.sizer.Add(self.lblname, (1, 0)) ##self.sizer.Add(self.m_htmlWin1, (1, 0)) self.sizer.Add(self.editname, (1, 0)) #self.sizer.Add(self.button, (2, 0), (1, 2), flag=wx.EXPAND) # Set simple sizer for a nice border self.border = wx.BoxSizer() self.border.Add(self.sizer, 1, wx.ALL | wx.EXPAND, 5) # Use the sizers self.panel.SetSizerAndFit(self.border) self.SetSizerAndFit(self.windowSizer) #self.result.SetLabel(msg) # Set event handlers #self.button.Bind(wx.EVT_BUTTON, self.OnButton) #self.Show() #self.Bind(wx.EVT_CLOSE,self.OnClose) #def OnClose(self,e): # #wx.LogMessage("c") # e.Skip() #self.Close() #def OnButton(self, e): # self.result.SetLabel(self.editname.GetValue()) def setMsg(self, t_msg): self.editname.SetValue(t_msg) self.m_htmlWin1.SetPage(t_msg) def annring_size(pad): # valid for oval pad/drills annrX=(pad.GetSize()[0] - (pad.GetDrillSize()[0]+DRL_EXTRA_ius))/2 annrY=(pad.GetSize()[1] - (pad.GetDrillSize()[1]+DRL_EXTRA_ius))/2 #annr=min(pad.GetSize()) - max(pad.GetDrillSize()) #if annr < MIN_AR_SIZE: #print annrX #print annrY #print pad.GetSize()[0]/mm_ius #print pad.GetSize()[0]#/mm_ius #print pad.GetDrillSize()[0]#/mm_ius #print DRL_EXTRA_ius #print pad.GetDrillSize()[0]/mm_ius #print (pad.GetDrillSize()[0]+DRL_EXTRA_ius)/mm_ius #print annrX/mm_ius return min(annrX,annrY) def annringNP_size(pad): # valid for oval pad/drills annrX=(pad.GetSize()[0] - (pad.GetDrillSize()[0]))/2 annrY=(pad.GetSize()[1] - (pad.GetDrillSize()[1]))/2 #annr=min(pad.GetSize()) - max(pad.GetDrillSize()) #if annr < MIN_AR_SIZE: #print annrX #print annrY #print pad.GetSize()[0]/mm_ius #print pad.GetSize()[0]#/mm_ius #print pad.GetDrillSize()[0]#/mm_ius #print DRL_EXTRA_ius #print pad.GetDrillSize()[0]/mm_ius #print (pad.GetDrillSize()[0]+DRL_EXTRA_ius)/mm_ius #print annrX/mm_ius #return min(annrX,annrY) return annrX,annrY def vias_annring_size(via): # calculating via annular annr=(via.GetWidth() - (via.GetDrillValue()+DRL_EXTRA_ius))/2 #print via.GetWidth() #print via.GetDrillValue() return annr def f_mm(raw): return repr(raw/mm_ius) board = pcbnew.GetBoard() PassC=FailC=0 PassCV=FailCV=0 PassCN=FailCN=0 PassCVN=FailCVN=0 fileName = GetBoard().GetFileName() if len(fileName)==0: wx.LogMessage("a board needs to be saved/loaded!") else: frame = AR_Prm(None) #frame = wx.Frame(None) frame.Center() #frame.setMsg(LogMsg) frame.ShowModal() frame.Destroy() LogMsg="
Hello, world!