You need to use EasyEDA editor to create some projects before publishing
Auto create tool for pads in PCB Lib Editor
1230 2
sonyvaioman 8 years ago
Having to align pads by mouse or by inputting x/y values for each pad is not very productive. I should be able to place a single pad, then select a tool and input number of rows and columns of pads and horizonal and vertical pitch and have the pads copied, placed and auto-numbered. Pitch should support negative pitch to have the pads create above or to the left instead of below and to the right.
Comments
dillon 8 years ago
In this case, if you can use https://easyeda.com/Doc/Tutorial/API.htm#EasyEDAAPIPlug, you will find it is easy. You can use script to create pads.
Reply
sonyvaioman 7 years ago
FYI this is the script I use. I still think this would be a useful built-in tool to create PCB libs. Select the first pad, numbered 0, then run the script to create the given number of rows/colums, works well for grids/SIP/DIP but not for QFP. // SET THESE (units are canvas units) var columns = 8; var rows = 8; var hpitch = 16; var vpitch = 16; // LEAVE THIS var count = 1; var selected = api('getSelectedIds'); var newObjs = [selected]; for(var h=1; h<columns; h++){ var newId = api('clone', {ids:[selected]}); count = count + 1; api('updateShape', { "shapeType": "PAD", "jsonCache": { "gId": newId[0], "number": count }}); api('moveObjs', {objs:newId, addX: api('valConvert', {type:'real2canvas',val:(h*hpitch)})}); newObjs.push(newId); } for(var v=1; v<rows; v++){ var newRow = api('clone', {ids:newObjs}); api('moveObjs', {objs:newRow, addY: api('valConvert', {type:'real2canvas',val:(v*vpitch)})}); for(var i=0; i<newRow.length; i++){ count = count + 1; api('updateShape', { "shapeType": "PAD", "jsonCache": { "gId": newRow[i], "number": count }}); } }
Reply
Login or Register to add a comment
goToTop
你现在访问的是EasyEDA海外版,使用建立访问速度更快的国内版 https://lceda.cn(需要重新注册)
如果需要转移工程请在个人中心 - 工程 - 工程高级设置 - 下载工程,下载后在https://lceda.cn/editor 打开保存即可。
有问题联系QQ 3001956291 不再提醒
svg-battery svg-battery-wifi svg-books svg-more svg-paste svg-pencil svg-plant svg-ruler svg-share svg-user svg-logo-cn svg-double-arrow -mockplus- -mockplus- -mockplus- -mockplus- -mockplus- -mockplus- -mockplus- -mockplus-@1x -mockplus-

Cookie Notice

Our website uses essential cookies to help us ensure that it is working as expected, and uses optional analytics cookies to offer you a better browsing experience. To find out more, read our Cookie Notice