I am designing a package in eaglecad and I got the pin width incorrect. I don't want to change all 100 pads manually. Is there a way to select a group and change the dimensions on all the pads?
Thanks!
I am designing a package in eaglecad and I got the pin width incorrect. I don't want to change all 100 pads manually. Is there a way to select a group and change the dimensions on all the pads?
Thanks!
You should be able to script this up in eagle's scripting language without too much problem. Something like this:
if(library(L)) {
L.packages(P) {
P.contacts(C) {
if(C.smd) {
C.smd.dx = 10; C.smd.dy = 30; /* or whatever */
}
}
}
}