mirror of
https://github.com/whowechina/popn_pico.git
synced 2025-01-18 23:54:04 +01:00
Archive Gen 1 Files
This commit is contained in:
parent
8257d917c2
commit
1594cf9be2
12
.vscode/settings.json
vendored
Normal file
12
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"files.associations": {
|
||||
"ws2812.pio.h": "c",
|
||||
"gpio.h": "c",
|
||||
"buttons.h": "c",
|
||||
"stdbool.h": "c",
|
||||
"debounce.h": "c",
|
||||
"clocks.h": "c",
|
||||
"rgb.h": "c",
|
||||
"pio.h": "c"
|
||||
}
|
||||
}
|
6
.gitignore → Gen1Archive/.gitignore
vendored
6
.gitignore → Gen1Archive/.gitignore
vendored
@ -1,3 +1,3 @@
|
||||
.DS_Store
|
||||
popn_pico-backups
|
||||
popn_pico_plate-backups
|
||||
.DS_Store
|
||||
popn_pico-backups
|
||||
popn_pico_plate-backups
|
@ -1,76 +1,76 @@
|
||||
gap_w = 1.16; // socket cross width
|
||||
gap_h = 3.98; // socket cross height
|
||||
gap_r = 0.15; // radius of round corner in cross
|
||||
stem_l = 4.3; // socket stem length
|
||||
stem_d = 5.6; // socket stem diameter
|
||||
|
||||
|
||||
difference() {
|
||||
union() {
|
||||
cap();
|
||||
stem();
|
||||
}
|
||||
socket();
|
||||
//bevel();
|
||||
}
|
||||
|
||||
//color("green", 0.3) translate([0,0,0]) cylinder(d=28,h=8);
|
||||
//color("red", 0.6) translate([0,0,0]) cylinder(d=8,h=3);
|
||||
//color("blue", 0.6) translate([0,0,3]) cylinder(d=9,h=stem_l);
|
||||
|
||||
module cap() {
|
||||
difference() {
|
||||
translate([0,0,3]) difference() {
|
||||
translate([0,0,0]) bean([28,28,10]);
|
||||
translate([0,0,-1.5]) bean([25,25,10]);
|
||||
}
|
||||
translate([-50,-50,-100]) cube([100,100,100]);
|
||||
}
|
||||
}
|
||||
|
||||
module bean(x) {
|
||||
resize(x) minkowski() {
|
||||
difference() {
|
||||
translate([0,0,-1.8]) resize([30,30,5]) sphere(d=50,$fn=96);
|
||||
translate([-50,-50,-100]) cube([100,100,100]);
|
||||
}
|
||||
sphere(d=7,$fn=64);
|
||||
}
|
||||
}
|
||||
|
||||
module stem() {
|
||||
translate([0,0,6.5-stem_l]) {
|
||||
cylinder(d=stem_d,h=stem_l+1,$fn=64);
|
||||
translate([0,0,stem_l-0.3]) cylinder(d1=5.5,d2=8.5,h=1,$fn=64);
|
||||
}
|
||||
}
|
||||
|
||||
module socket()
|
||||
{
|
||||
translate([0,0,6.5-stem_l-0.01]) difference() {
|
||||
l=stem_l+1;
|
||||
union() {
|
||||
translate([0,0,l/2]) cube([gap_h,gap_w,l], center=true);
|
||||
translate([0,0,l/2]) cube([gap_w,gap_h,l], center=true);
|
||||
translate([0,0,l/2]) cube([gap_w+gap_r*2,gap_w+gap_r*2,l], center=true);
|
||||
}
|
||||
|
||||
r = gap_w/2 + gap_r;
|
||||
for (i=[-1,1]) {
|
||||
for (j=[-1,1]) {
|
||||
translate([i*r,j*r,-1]) cylinder(r=gap_r,h=l+2,$fn=24);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module bevel() {
|
||||
color("red", 0.5) translate([0,0,6.5-stem_l]) hull() {
|
||||
translate([0,0,-0.01]) cube([gap_w+0.4, gap_h+0.4, 0.01],center=true);
|
||||
translate([0,0,0.3]) cube([gap_w, gap_h, 0.01],center=true);
|
||||
}
|
||||
color("red", 0.5) hull() {
|
||||
translate([0,0,-0.01]) cube([gap_h+0.4, gap_w+0.4, 0.01],center=true);
|
||||
translate([0,0,0.3]) cube([gap_h, gap_w, 0.01],center=true);
|
||||
}
|
||||
}
|
||||
gap_w = 1.16; // socket cross width
|
||||
gap_h = 3.98; // socket cross height
|
||||
gap_r = 0.15; // radius of round corner in cross
|
||||
stem_l = 4.3; // socket stem length
|
||||
stem_d = 5.6; // socket stem diameter
|
||||
|
||||
|
||||
difference() {
|
||||
union() {
|
||||
cap();
|
||||
stem();
|
||||
}
|
||||
socket();
|
||||
//bevel();
|
||||
}
|
||||
|
||||
//color("green", 0.3) translate([0,0,0]) cylinder(d=28,h=8);
|
||||
//color("red", 0.6) translate([0,0,0]) cylinder(d=8,h=3);
|
||||
//color("blue", 0.6) translate([0,0,3]) cylinder(d=9,h=stem_l);
|
||||
|
||||
module cap() {
|
||||
difference() {
|
||||
translate([0,0,3]) difference() {
|
||||
translate([0,0,0]) bean([28,28,10]);
|
||||
translate([0,0,-1.5]) bean([25,25,10]);
|
||||
}
|
||||
translate([-50,-50,-100]) cube([100,100,100]);
|
||||
}
|
||||
}
|
||||
|
||||
module bean(x) {
|
||||
resize(x) minkowski() {
|
||||
difference() {
|
||||
translate([0,0,-1.8]) resize([30,30,5]) sphere(d=50,$fn=96);
|
||||
translate([-50,-50,-100]) cube([100,100,100]);
|
||||
}
|
||||
sphere(d=7,$fn=64);
|
||||
}
|
||||
}
|
||||
|
||||
module stem() {
|
||||
translate([0,0,6.5-stem_l]) {
|
||||
cylinder(d=stem_d,h=stem_l+1,$fn=64);
|
||||
translate([0,0,stem_l-0.3]) cylinder(d1=5.5,d2=8.5,h=1,$fn=64);
|
||||
}
|
||||
}
|
||||
|
||||
module socket()
|
||||
{
|
||||
translate([0,0,6.5-stem_l-0.01]) difference() {
|
||||
l=stem_l+1;
|
||||
union() {
|
||||
translate([0,0,l/2]) cube([gap_h,gap_w,l], center=true);
|
||||
translate([0,0,l/2]) cube([gap_w,gap_h,l], center=true);
|
||||
translate([0,0,l/2]) cube([gap_w+gap_r*2,gap_w+gap_r*2,l], center=true);
|
||||
}
|
||||
|
||||
r = gap_w/2 + gap_r;
|
||||
for (i=[-1,1]) {
|
||||
for (j=[-1,1]) {
|
||||
translate([i*r,j*r,-1]) cylinder(r=gap_r,h=l+2,$fn=24);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module bevel() {
|
||||
color("red", 0.5) translate([0,0,6.5-stem_l]) hull() {
|
||||
translate([0,0,-0.01]) cube([gap_w+0.4, gap_h+0.4, 0.01],center=true);
|
||||
translate([0,0,0.3]) cube([gap_w, gap_h, 0.01],center=true);
|
||||
}
|
||||
color("red", 0.5) hull() {
|
||||
translate([0,0,-0.01]) cube([gap_h+0.4, gap_w+0.4, 0.01],center=true);
|
||||
translate([0,0,0.3]) cube([gap_h, gap_w, 0.01],center=true);
|
||||
}
|
||||
}
|
@ -1,79 +1,79 @@
|
||||
wall=2;
|
||||
clearance=0.25;
|
||||
thickness=9;
|
||||
bottom=2.4;
|
||||
|
||||
the_case();
|
||||
|
||||
module the_case() {
|
||||
difference() {
|
||||
body();
|
||||
body_cut();
|
||||
screws();
|
||||
|
||||
gateron([-54,33,0]);
|
||||
gateron([-18,33,0]);
|
||||
gateron([18,33,0]);
|
||||
gateron([54,33,0]);
|
||||
|
||||
gateron([-72,0,0]);
|
||||
gateron([-36,0,0]);
|
||||
gateron([-0,0,0]);
|
||||
gateron([36,0,0]);
|
||||
gateron([72,0,0]);
|
||||
|
||||
pico([-24.5,43.5,0]);
|
||||
usbc();
|
||||
}
|
||||
}
|
||||
|
||||
module body() {
|
||||
color("silver") hull() {
|
||||
main_shape(wall+clearance, thickness-1);
|
||||
main_shape(wall-1+clearance, thickness);
|
||||
}
|
||||
}
|
||||
|
||||
module body_cut() {
|
||||
color("silver") translate([0,0,bottom]) main_shape(clearance, thickness + 10);
|
||||
}
|
||||
|
||||
module main_shape(extend, height) {
|
||||
hull($fn=128) {
|
||||
translate([-84,-9,0]) cylinder(r=6+extend, h=height,$fn=64);
|
||||
translate([84,-9,0]) cylinder(r=6+extend, h=height,$fn=64);
|
||||
difference() {
|
||||
union() {
|
||||
translate([-40,20,0]) cylinder(r=50+extend,h=height,$fn=128);
|
||||
translate([40,20,0]) cylinder(r=50+extend,h=height,$fn=128);
|
||||
}
|
||||
translate([-200,-180,-5]) cube([400,200,200]);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module gateron(pos) {
|
||||
translate([-9,-2.5,0.6]) translate(pos) color("gold") cube([17,10.5,5]);
|
||||
}
|
||||
|
||||
module pico(pos) {
|
||||
translate([0,0,0.6]) translate(pos) color("gold") cube([53,23,5]);
|
||||
translate([-1.2,7.5,-1]) translate(pos) color("red") cube([6.75,8.5,6]);
|
||||
translate([10.1,12.7,-1]) translate(pos) color("blue") cube([6,5,6]);
|
||||
}
|
||||
|
||||
module screws() {
|
||||
$fn=64;
|
||||
translate([-60,60,-1]) color("gray") cylinder(d=3.5, h=10);
|
||||
translate([60,60,-1]) color("gray") cylinder(d=3.5, h=10);
|
||||
translate([-85,-10,-1]) color("gray") cylinder(d=3.5, h=10);
|
||||
translate([85,-10,-1]) color("gray") cylinder(d=3.5, h=10);
|
||||
}
|
||||
|
||||
module usbc() {
|
||||
hull() {
|
||||
translate([-37.5, 80, 5.9]) rotate([90,0,0]) cylinder(d=3.4,h=20,$fn=32);
|
||||
translate([-30.75, 80, 5.9]) rotate([90,0,0]) cylinder(d=3.4,h=20,$fn=32);
|
||||
}
|
||||
}
|
||||
wall=2;
|
||||
clearance=0.25;
|
||||
thickness=9;
|
||||
bottom=2.4;
|
||||
|
||||
the_case();
|
||||
|
||||
module the_case() {
|
||||
difference() {
|
||||
body();
|
||||
body_cut();
|
||||
screws();
|
||||
|
||||
gateron([-54,33,0]);
|
||||
gateron([-18,33,0]);
|
||||
gateron([18,33,0]);
|
||||
gateron([54,33,0]);
|
||||
|
||||
gateron([-72,0,0]);
|
||||
gateron([-36,0,0]);
|
||||
gateron([-0,0,0]);
|
||||
gateron([36,0,0]);
|
||||
gateron([72,0,0]);
|
||||
|
||||
pico([-24.5,43.5,0]);
|
||||
usbc();
|
||||
}
|
||||
}
|
||||
|
||||
module body() {
|
||||
color("silver") hull() {
|
||||
main_shape(wall+clearance, thickness-1);
|
||||
main_shape(wall-1+clearance, thickness);
|
||||
}
|
||||
}
|
||||
|
||||
module body_cut() {
|
||||
color("silver") translate([0,0,bottom]) main_shape(clearance, thickness + 10);
|
||||
}
|
||||
|
||||
module main_shape(extend, height) {
|
||||
hull($fn=128) {
|
||||
translate([-84,-9,0]) cylinder(r=6+extend, h=height,$fn=64);
|
||||
translate([84,-9,0]) cylinder(r=6+extend, h=height,$fn=64);
|
||||
difference() {
|
||||
union() {
|
||||
translate([-40,20,0]) cylinder(r=50+extend,h=height,$fn=128);
|
||||
translate([40,20,0]) cylinder(r=50+extend,h=height,$fn=128);
|
||||
}
|
||||
translate([-200,-180,-5]) cube([400,200,200]);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module gateron(pos) {
|
||||
translate([-9,-2.5,0.6]) translate(pos) color("gold") cube([17,10.5,5]);
|
||||
}
|
||||
|
||||
module pico(pos) {
|
||||
translate([0,0,0.6]) translate(pos) color("gold") cube([53,23,5]);
|
||||
translate([-1.2,7.5,-1]) translate(pos) color("red") cube([6.75,8.5,6]);
|
||||
translate([10.1,12.7,-1]) translate(pos) color("blue") cube([6,5,6]);
|
||||
}
|
||||
|
||||
module screws() {
|
||||
$fn=64;
|
||||
translate([-60,60,-1]) color("gray") cylinder(d=3.5, h=10);
|
||||
translate([60,60,-1]) color("gray") cylinder(d=3.5, h=10);
|
||||
translate([-85,-10,-1]) color("gray") cylinder(d=3.5, h=10);
|
||||
translate([85,-10,-1]) color("gray") cylinder(d=3.5, h=10);
|
||||
}
|
||||
|
||||
module usbc() {
|
||||
hull() {
|
||||
translate([-37.5, 80, 5.9]) rotate([90,0,0]) cylinder(d=3.4,h=20,$fn=32);
|
||||
translate([-30.75, 80, 5.9]) rotate([90,0,0]) cylinder(d=3.4,h=20,$fn=32);
|
||||
}
|
||||
}
|
@ -1,16 +1,16 @@
|
||||
$fn=64;
|
||||
|
||||
for (i=[0:6]) {
|
||||
spacer([i*9,0,0]);
|
||||
}
|
||||
|
||||
module spacer(pos)
|
||||
{
|
||||
translate(pos) union() {
|
||||
difference() {
|
||||
cylinder(d=7,h=3.5);
|
||||
translate([0,0,-1]) cylinder(d=3.5,h=10);
|
||||
}
|
||||
translate([2,-1,]) cube([4,2,0.3]);
|
||||
}
|
||||
}
|
||||
$fn=64;
|
||||
|
||||
for (i=[0:6]) {
|
||||
spacer([i*9,0,0]);
|
||||
}
|
||||
|
||||
module spacer(pos)
|
||||
{
|
||||
translate(pos) union() {
|
||||
difference() {
|
||||
cylinder(d=7,h=3.5);
|
||||
translate([0,0,-1]) cylinder(d=3.5,h=10);
|
||||
}
|
||||
translate([2,-1,]) cube([4,2,0.3]);
|
||||
}
|
||||
}
|
@ -1,11 +1,11 @@
|
||||
cmake_minimum_required(VERSION 3.12)
|
||||
|
||||
# Pull in SDK (must set be before project)
|
||||
include(pico_sdk_import.cmake)
|
||||
|
||||
project(pico_popn C CXX ASM)
|
||||
set(CMAKE_C_STANDARD 11)
|
||||
|
||||
pico_sdk_init()
|
||||
|
||||
add_subdirectory(src)
|
||||
cmake_minimum_required(VERSION 3.12)
|
||||
|
||||
# Pull in SDK (must set be before project)
|
||||
include(pico_sdk_import.cmake)
|
||||
|
||||
project(pico_popn C CXX ASM)
|
||||
set(CMAKE_C_STANDARD 11)
|
||||
|
||||
pico_sdk_init()
|
||||
|
||||
add_subdirectory(src)
|
@ -1,2 +1,2 @@
|
||||
Firmware for Popn Pico now has a separate repository, go check it out.
|
||||
https://github.com/whowechina/popn_pico_firmware
|
||||
Firmware for Popn Pico now has a separate repository, go check it out.
|
||||
https://github.com/whowechina/popn_pico_firmware
|
@ -1,437 +1,437 @@
|
||||
Attribution-NonCommercial-ShareAlike 4.0 International
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
||||
does not provide legal services or legal advice. Distribution of
|
||||
Creative Commons public licenses does not create a lawyer-client or
|
||||
other relationship. Creative Commons makes its licenses and related
|
||||
information available on an "as-is" basis. Creative Commons gives no
|
||||
warranties regarding its licenses, any material licensed under their
|
||||
terms and conditions, or any related information. Creative Commons
|
||||
disclaims all liability for damages resulting from their use to the
|
||||
fullest extent possible.
|
||||
|
||||
Using Creative Commons Public Licenses
|
||||
|
||||
Creative Commons public licenses provide a standard set of terms and
|
||||
conditions that creators and other rights holders may use to share
|
||||
original works of authorship and other material subject to copyright
|
||||
and certain other rights specified in the public license below. The
|
||||
following considerations are for informational purposes only, are not
|
||||
exhaustive, and do not form part of our licenses.
|
||||
|
||||
Considerations for licensors: Our public licenses are
|
||||
intended for use by those authorized to give the public
|
||||
permission to use material in ways otherwise restricted by
|
||||
copyright and certain other rights. Our licenses are
|
||||
irrevocable. Licensors should read and understand the terms
|
||||
and conditions of the license they choose before applying it.
|
||||
Licensors should also secure all rights necessary before
|
||||
applying our licenses so that the public can reuse the
|
||||
material as expected. Licensors should clearly mark any
|
||||
material not subject to the license. This includes other CC-
|
||||
licensed material, or material used under an exception or
|
||||
limitation to copyright. More considerations for licensors:
|
||||
wiki.creativecommons.org/Considerations_for_licensors
|
||||
|
||||
Considerations for the public: By using one of our public
|
||||
licenses, a licensor grants the public permission to use the
|
||||
licensed material under specified terms and conditions. If
|
||||
the licensor's permission is not necessary for any reason--for
|
||||
example, because of any applicable exception or limitation to
|
||||
copyright--then that use is not regulated by the license. Our
|
||||
licenses grant only permissions under copyright and certain
|
||||
other rights that a licensor has authority to grant. Use of
|
||||
the licensed material may still be restricted for other
|
||||
reasons, including because others have copyright or other
|
||||
rights in the material. A licensor may make special requests,
|
||||
such as asking that all changes be marked or described.
|
||||
Although not required by our licenses, you are encouraged to
|
||||
respect those requests where reasonable. More considerations
|
||||
for the public:
|
||||
wiki.creativecommons.org/Considerations_for_licensees
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
|
||||
Public License
|
||||
|
||||
By exercising the Licensed Rights (defined below), You accept and agree
|
||||
to be bound by the terms and conditions of this Creative Commons
|
||||
Attribution-NonCommercial-ShareAlike 4.0 International Public License
|
||||
("Public License"). To the extent this Public License may be
|
||||
interpreted as a contract, You are granted the Licensed Rights in
|
||||
consideration of Your acceptance of these terms and conditions, and the
|
||||
Licensor grants You such rights in consideration of benefits the
|
||||
Licensor receives from making the Licensed Material available under
|
||||
these terms and conditions.
|
||||
|
||||
|
||||
Section 1 -- Definitions.
|
||||
|
||||
a. Adapted Material means material subject to Copyright and Similar
|
||||
Rights that is derived from or based upon the Licensed Material
|
||||
and in which the Licensed Material is translated, altered,
|
||||
arranged, transformed, or otherwise modified in a manner requiring
|
||||
permission under the Copyright and Similar Rights held by the
|
||||
Licensor. For purposes of this Public License, where the Licensed
|
||||
Material is a musical work, performance, or sound recording,
|
||||
Adapted Material is always produced where the Licensed Material is
|
||||
synched in timed relation with a moving image.
|
||||
|
||||
b. Adapter's License means the license You apply to Your Copyright
|
||||
and Similar Rights in Your contributions to Adapted Material in
|
||||
accordance with the terms and conditions of this Public License.
|
||||
|
||||
c. BY-NC-SA Compatible License means a license listed at
|
||||
creativecommons.org/compatiblelicenses, approved by Creative
|
||||
Commons as essentially the equivalent of this Public License.
|
||||
|
||||
d. Copyright and Similar Rights means copyright and/or similar rights
|
||||
closely related to copyright including, without limitation,
|
||||
performance, broadcast, sound recording, and Sui Generis Database
|
||||
Rights, without regard to how the rights are labeled or
|
||||
categorized. For purposes of this Public License, the rights
|
||||
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
||||
Rights.
|
||||
|
||||
e. Effective Technological Measures means those measures that, in the
|
||||
absence of proper authority, may not be circumvented under laws
|
||||
fulfilling obligations under Article 11 of the WIPO Copyright
|
||||
Treaty adopted on December 20, 1996, and/or similar international
|
||||
agreements.
|
||||
|
||||
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
||||
any other exception or limitation to Copyright and Similar Rights
|
||||
that applies to Your use of the Licensed Material.
|
||||
|
||||
g. License Elements means the license attributes listed in the name
|
||||
of a Creative Commons Public License. The License Elements of this
|
||||
Public License are Attribution, NonCommercial, and ShareAlike.
|
||||
|
||||
h. Licensed Material means the artistic or literary work, database,
|
||||
or other material to which the Licensor applied this Public
|
||||
License.
|
||||
|
||||
i. Licensed Rights means the rights granted to You subject to the
|
||||
terms and conditions of this Public License, which are limited to
|
||||
all Copyright and Similar Rights that apply to Your use of the
|
||||
Licensed Material and that the Licensor has authority to license.
|
||||
|
||||
j. Licensor means the individual(s) or entity(ies) granting rights
|
||||
under this Public License.
|
||||
|
||||
k. NonCommercial means not primarily intended for or directed towards
|
||||
commercial advantage or monetary compensation. For purposes of
|
||||
this Public License, the exchange of the Licensed Material for
|
||||
other material subject to Copyright and Similar Rights by digital
|
||||
file-sharing or similar means is NonCommercial provided there is
|
||||
no payment of monetary compensation in connection with the
|
||||
exchange.
|
||||
|
||||
l. Share means to provide material to the public by any means or
|
||||
process that requires permission under the Licensed Rights, such
|
||||
as reproduction, public display, public performance, distribution,
|
||||
dissemination, communication, or importation, and to make material
|
||||
available to the public including in ways that members of the
|
||||
public may access the material from a place and at a time
|
||||
individually chosen by them.
|
||||
|
||||
m. Sui Generis Database Rights means rights other than copyright
|
||||
resulting from Directive 96/9/EC of the European Parliament and of
|
||||
the Council of 11 March 1996 on the legal protection of databases,
|
||||
as amended and/or succeeded, as well as other essentially
|
||||
equivalent rights anywhere in the world.
|
||||
|
||||
n. You means the individual or entity exercising the Licensed Rights
|
||||
under this Public License. Your has a corresponding meaning.
|
||||
|
||||
|
||||
Section 2 -- Scope.
|
||||
|
||||
a. License grant.
|
||||
|
||||
1. Subject to the terms and conditions of this Public License,
|
||||
the Licensor hereby grants You a worldwide, royalty-free,
|
||||
non-sublicensable, non-exclusive, irrevocable license to
|
||||
exercise the Licensed Rights in the Licensed Material to:
|
||||
|
||||
a. reproduce and Share the Licensed Material, in whole or
|
||||
in part, for NonCommercial purposes only; and
|
||||
|
||||
b. produce, reproduce, and Share Adapted Material for
|
||||
NonCommercial purposes only.
|
||||
|
||||
2. Exceptions and Limitations. For the avoidance of doubt, where
|
||||
Exceptions and Limitations apply to Your use, this Public
|
||||
License does not apply, and You do not need to comply with
|
||||
its terms and conditions.
|
||||
|
||||
3. Term. The term of this Public License is specified in Section
|
||||
6(a).
|
||||
|
||||
4. Media and formats; technical modifications allowed. The
|
||||
Licensor authorizes You to exercise the Licensed Rights in
|
||||
all media and formats whether now known or hereafter created,
|
||||
and to make technical modifications necessary to do so. The
|
||||
Licensor waives and/or agrees not to assert any right or
|
||||
authority to forbid You from making technical modifications
|
||||
necessary to exercise the Licensed Rights, including
|
||||
technical modifications necessary to circumvent Effective
|
||||
Technological Measures. For purposes of this Public License,
|
||||
simply making modifications authorized by this Section 2(a)
|
||||
(4) never produces Adapted Material.
|
||||
|
||||
5. Downstream recipients.
|
||||
|
||||
a. Offer from the Licensor -- Licensed Material. Every
|
||||
recipient of the Licensed Material automatically
|
||||
receives an offer from the Licensor to exercise the
|
||||
Licensed Rights under the terms and conditions of this
|
||||
Public License.
|
||||
|
||||
b. Additional offer from the Licensor -- Adapted Material.
|
||||
Every recipient of Adapted Material from You
|
||||
automatically receives an offer from the Licensor to
|
||||
exercise the Licensed Rights in the Adapted Material
|
||||
under the conditions of the Adapter's License You apply.
|
||||
|
||||
c. No downstream restrictions. You may not offer or impose
|
||||
any additional or different terms or conditions on, or
|
||||
apply any Effective Technological Measures to, the
|
||||
Licensed Material if doing so restricts exercise of the
|
||||
Licensed Rights by any recipient of the Licensed
|
||||
Material.
|
||||
|
||||
6. No endorsement. Nothing in this Public License constitutes or
|
||||
may be construed as permission to assert or imply that You
|
||||
are, or that Your use of the Licensed Material is, connected
|
||||
with, or sponsored, endorsed, or granted official status by,
|
||||
the Licensor or others designated to receive attribution as
|
||||
provided in Section 3(a)(1)(A)(i).
|
||||
|
||||
b. Other rights.
|
||||
|
||||
1. Moral rights, such as the right of integrity, are not
|
||||
licensed under this Public License, nor are publicity,
|
||||
privacy, and/or other similar personality rights; however, to
|
||||
the extent possible, the Licensor waives and/or agrees not to
|
||||
assert any such rights held by the Licensor to the limited
|
||||
extent necessary to allow You to exercise the Licensed
|
||||
Rights, but not otherwise.
|
||||
|
||||
2. Patent and trademark rights are not licensed under this
|
||||
Public License.
|
||||
|
||||
3. To the extent possible, the Licensor waives any right to
|
||||
collect royalties from You for the exercise of the Licensed
|
||||
Rights, whether directly or through a collecting society
|
||||
under any voluntary or waivable statutory or compulsory
|
||||
licensing scheme. In all other cases the Licensor expressly
|
||||
reserves any right to collect such royalties, including when
|
||||
the Licensed Material is used other than for NonCommercial
|
||||
purposes.
|
||||
|
||||
|
||||
Section 3 -- License Conditions.
|
||||
|
||||
Your exercise of the Licensed Rights is expressly made subject to the
|
||||
following conditions.
|
||||
|
||||
a. Attribution.
|
||||
|
||||
1. If You Share the Licensed Material (including in modified
|
||||
form), You must:
|
||||
|
||||
a. retain the following if it is supplied by the Licensor
|
||||
with the Licensed Material:
|
||||
|
||||
i. identification of the creator(s) of the Licensed
|
||||
Material and any others designated to receive
|
||||
attribution, in any reasonable manner requested by
|
||||
the Licensor (including by pseudonym if
|
||||
designated);
|
||||
|
||||
ii. a copyright notice;
|
||||
|
||||
iii. a notice that refers to this Public License;
|
||||
|
||||
iv. a notice that refers to the disclaimer of
|
||||
warranties;
|
||||
|
||||
v. a URI or hyperlink to the Licensed Material to the
|
||||
extent reasonably practicable;
|
||||
|
||||
b. indicate if You modified the Licensed Material and
|
||||
retain an indication of any previous modifications; and
|
||||
|
||||
c. indicate the Licensed Material is licensed under this
|
||||
Public License, and include the text of, or the URI or
|
||||
hyperlink to, this Public License.
|
||||
|
||||
2. You may satisfy the conditions in Section 3(a)(1) in any
|
||||
reasonable manner based on the medium, means, and context in
|
||||
which You Share the Licensed Material. For example, it may be
|
||||
reasonable to satisfy the conditions by providing a URI or
|
||||
hyperlink to a resource that includes the required
|
||||
information.
|
||||
3. If requested by the Licensor, You must remove any of the
|
||||
information required by Section 3(a)(1)(A) to the extent
|
||||
reasonably practicable.
|
||||
|
||||
b. ShareAlike.
|
||||
|
||||
In addition to the conditions in Section 3(a), if You Share
|
||||
Adapted Material You produce, the following conditions also apply.
|
||||
|
||||
1. The Adapter's License You apply must be a Creative Commons
|
||||
license with the same License Elements, this version or
|
||||
later, or a BY-NC-SA Compatible License.
|
||||
|
||||
2. You must include the text of, or the URI or hyperlink to, the
|
||||
Adapter's License You apply. You may satisfy this condition
|
||||
in any reasonable manner based on the medium, means, and
|
||||
context in which You Share Adapted Material.
|
||||
|
||||
3. You may not offer or impose any additional or different terms
|
||||
or conditions on, or apply any Effective Technological
|
||||
Measures to, Adapted Material that restrict exercise of the
|
||||
rights granted under the Adapter's License You apply.
|
||||
|
||||
|
||||
Section 4 -- Sui Generis Database Rights.
|
||||
|
||||
Where the Licensed Rights include Sui Generis Database Rights that
|
||||
apply to Your use of the Licensed Material:
|
||||
|
||||
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
||||
to extract, reuse, reproduce, and Share all or a substantial
|
||||
portion of the contents of the database for NonCommercial purposes
|
||||
only;
|
||||
|
||||
b. if You include all or a substantial portion of the database
|
||||
contents in a database in which You have Sui Generis Database
|
||||
Rights, then the database in which You have Sui Generis Database
|
||||
Rights (but not its individual contents) is Adapted Material,
|
||||
including for purposes of Section 3(b); and
|
||||
|
||||
c. You must comply with the conditions in Section 3(a) if You Share
|
||||
all or a substantial portion of the contents of the database.
|
||||
|
||||
For the avoidance of doubt, this Section 4 supplements and does not
|
||||
replace Your obligations under this Public License where the Licensed
|
||||
Rights include other Copyright and Similar Rights.
|
||||
|
||||
|
||||
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
||||
|
||||
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
||||
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
||||
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
||||
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
||||
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
||||
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
||||
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
||||
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
||||
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
||||
|
||||
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
||||
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
||||
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
||||
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
||||
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
||||
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
||||
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
||||
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
||||
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
||||
|
||||
c. The disclaimer of warranties and limitation of liability provided
|
||||
above shall be interpreted in a manner that, to the extent
|
||||
possible, most closely approximates an absolute disclaimer and
|
||||
waiver of all liability.
|
||||
|
||||
|
||||
Section 6 -- Term and Termination.
|
||||
|
||||
a. This Public License applies for the term of the Copyright and
|
||||
Similar Rights licensed here. However, if You fail to comply with
|
||||
this Public License, then Your rights under this Public License
|
||||
terminate automatically.
|
||||
|
||||
b. Where Your right to use the Licensed Material has terminated under
|
||||
Section 6(a), it reinstates:
|
||||
|
||||
1. automatically as of the date the violation is cured, provided
|
||||
it is cured within 30 days of Your discovery of the
|
||||
violation; or
|
||||
|
||||
2. upon express reinstatement by the Licensor.
|
||||
|
||||
For the avoidance of doubt, this Section 6(b) does not affect any
|
||||
right the Licensor may have to seek remedies for Your violations
|
||||
of this Public License.
|
||||
|
||||
c. For the avoidance of doubt, the Licensor may also offer the
|
||||
Licensed Material under separate terms or conditions or stop
|
||||
distributing the Licensed Material at any time; however, doing so
|
||||
will not terminate this Public License.
|
||||
|
||||
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
||||
License.
|
||||
|
||||
|
||||
Section 7 -- Other Terms and Conditions.
|
||||
|
||||
a. The Licensor shall not be bound by any additional or different
|
||||
terms or conditions communicated by You unless expressly agreed.
|
||||
|
||||
b. Any arrangements, understandings, or agreements regarding the
|
||||
Licensed Material not stated herein are separate from and
|
||||
independent of the terms and conditions of this Public License.
|
||||
|
||||
|
||||
Section 8 -- Interpretation.
|
||||
|
||||
a. For the avoidance of doubt, this Public License does not, and
|
||||
shall not be interpreted to, reduce, limit, restrict, or impose
|
||||
conditions on any use of the Licensed Material that could lawfully
|
||||
be made without permission under this Public License.
|
||||
|
||||
b. To the extent possible, if any provision of this Public License is
|
||||
deemed unenforceable, it shall be automatically reformed to the
|
||||
minimum extent necessary to make it enforceable. If the provision
|
||||
cannot be reformed, it shall be severed from this Public License
|
||||
without affecting the enforceability of the remaining terms and
|
||||
conditions.
|
||||
|
||||
c. No term or condition of this Public License will be waived and no
|
||||
failure to comply consented to unless expressly agreed to by the
|
||||
Licensor.
|
||||
|
||||
d. Nothing in this Public License constitutes or may be interpreted
|
||||
as a limitation upon, or waiver of, any privileges and immunities
|
||||
that apply to the Licensor or You, including from the legal
|
||||
processes of any jurisdiction or authority.
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons is not a party to its public
|
||||
licenses. Notwithstanding, Creative Commons may elect to apply one of
|
||||
its public licenses to material it publishes and in those instances
|
||||
will be considered the “Licensor.” The text of the Creative Commons
|
||||
public licenses is dedicated to the public domain under the CC0 Public
|
||||
Domain Dedication. Except for the limited purpose of indicating that
|
||||
material is shared under a Creative Commons public license or as
|
||||
otherwise permitted by the Creative Commons policies published at
|
||||
creativecommons.org/policies, Creative Commons does not authorize the
|
||||
use of the trademark "Creative Commons" or any other trademark or logo
|
||||
of Creative Commons without its prior written consent including,
|
||||
without limitation, in connection with any unauthorized modifications
|
||||
to any of its public licenses or any other arrangements,
|
||||
understandings, or agreements concerning use of licensed material. For
|
||||
the avoidance of doubt, this paragraph does not form part of the
|
||||
public licenses.
|
||||
|
||||
Creative Commons may be contacted at creativecommons.org.
|
||||
Attribution-NonCommercial-ShareAlike 4.0 International
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
||||
does not provide legal services or legal advice. Distribution of
|
||||
Creative Commons public licenses does not create a lawyer-client or
|
||||
other relationship. Creative Commons makes its licenses and related
|
||||
information available on an "as-is" basis. Creative Commons gives no
|
||||
warranties regarding its licenses, any material licensed under their
|
||||
terms and conditions, or any related information. Creative Commons
|
||||
disclaims all liability for damages resulting from their use to the
|
||||
fullest extent possible.
|
||||
|
||||
Using Creative Commons Public Licenses
|
||||
|
||||
Creative Commons public licenses provide a standard set of terms and
|
||||
conditions that creators and other rights holders may use to share
|
||||
original works of authorship and other material subject to copyright
|
||||
and certain other rights specified in the public license below. The
|
||||
following considerations are for informational purposes only, are not
|
||||
exhaustive, and do not form part of our licenses.
|
||||
|
||||
Considerations for licensors: Our public licenses are
|
||||
intended for use by those authorized to give the public
|
||||
permission to use material in ways otherwise restricted by
|
||||
copyright and certain other rights. Our licenses are
|
||||
irrevocable. Licensors should read and understand the terms
|
||||
and conditions of the license they choose before applying it.
|
||||
Licensors should also secure all rights necessary before
|
||||
applying our licenses so that the public can reuse the
|
||||
material as expected. Licensors should clearly mark any
|
||||
material not subject to the license. This includes other CC-
|
||||
licensed material, or material used under an exception or
|
||||
limitation to copyright. More considerations for licensors:
|
||||
wiki.creativecommons.org/Considerations_for_licensors
|
||||
|
||||
Considerations for the public: By using one of our public
|
||||
licenses, a licensor grants the public permission to use the
|
||||
licensed material under specified terms and conditions. If
|
||||
the licensor's permission is not necessary for any reason--for
|
||||
example, because of any applicable exception or limitation to
|
||||
copyright--then that use is not regulated by the license. Our
|
||||
licenses grant only permissions under copyright and certain
|
||||
other rights that a licensor has authority to grant. Use of
|
||||
the licensed material may still be restricted for other
|
||||
reasons, including because others have copyright or other
|
||||
rights in the material. A licensor may make special requests,
|
||||
such as asking that all changes be marked or described.
|
||||
Although not required by our licenses, you are encouraged to
|
||||
respect those requests where reasonable. More considerations
|
||||
for the public:
|
||||
wiki.creativecommons.org/Considerations_for_licensees
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
|
||||
Public License
|
||||
|
||||
By exercising the Licensed Rights (defined below), You accept and agree
|
||||
to be bound by the terms and conditions of this Creative Commons
|
||||
Attribution-NonCommercial-ShareAlike 4.0 International Public License
|
||||
("Public License"). To the extent this Public License may be
|
||||
interpreted as a contract, You are granted the Licensed Rights in
|
||||
consideration of Your acceptance of these terms and conditions, and the
|
||||
Licensor grants You such rights in consideration of benefits the
|
||||
Licensor receives from making the Licensed Material available under
|
||||
these terms and conditions.
|
||||
|
||||
|
||||
Section 1 -- Definitions.
|
||||
|
||||
a. Adapted Material means material subject to Copyright and Similar
|
||||
Rights that is derived from or based upon the Licensed Material
|
||||
and in which the Licensed Material is translated, altered,
|
||||
arranged, transformed, or otherwise modified in a manner requiring
|
||||
permission under the Copyright and Similar Rights held by the
|
||||
Licensor. For purposes of this Public License, where the Licensed
|
||||
Material is a musical work, performance, or sound recording,
|
||||
Adapted Material is always produced where the Licensed Material is
|
||||
synched in timed relation with a moving image.
|
||||
|
||||
b. Adapter's License means the license You apply to Your Copyright
|
||||
and Similar Rights in Your contributions to Adapted Material in
|
||||
accordance with the terms and conditions of this Public License.
|
||||
|
||||
c. BY-NC-SA Compatible License means a license listed at
|
||||
creativecommons.org/compatiblelicenses, approved by Creative
|
||||
Commons as essentially the equivalent of this Public License.
|
||||
|
||||
d. Copyright and Similar Rights means copyright and/or similar rights
|
||||
closely related to copyright including, without limitation,
|
||||
performance, broadcast, sound recording, and Sui Generis Database
|
||||
Rights, without regard to how the rights are labeled or
|
||||
categorized. For purposes of this Public License, the rights
|
||||
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
||||
Rights.
|
||||
|
||||
e. Effective Technological Measures means those measures that, in the
|
||||
absence of proper authority, may not be circumvented under laws
|
||||
fulfilling obligations under Article 11 of the WIPO Copyright
|
||||
Treaty adopted on December 20, 1996, and/or similar international
|
||||
agreements.
|
||||
|
||||
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
||||
any other exception or limitation to Copyright and Similar Rights
|
||||
that applies to Your use of the Licensed Material.
|
||||
|
||||
g. License Elements means the license attributes listed in the name
|
||||
of a Creative Commons Public License. The License Elements of this
|
||||
Public License are Attribution, NonCommercial, and ShareAlike.
|
||||
|
||||
h. Licensed Material means the artistic or literary work, database,
|
||||
or other material to which the Licensor applied this Public
|
||||
License.
|
||||
|
||||
i. Licensed Rights means the rights granted to You subject to the
|
||||
terms and conditions of this Public License, which are limited to
|
||||
all Copyright and Similar Rights that apply to Your use of the
|
||||
Licensed Material and that the Licensor has authority to license.
|
||||
|
||||
j. Licensor means the individual(s) or entity(ies) granting rights
|
||||
under this Public License.
|
||||
|
||||
k. NonCommercial means not primarily intended for or directed towards
|
||||
commercial advantage or monetary compensation. For purposes of
|
||||
this Public License, the exchange of the Licensed Material for
|
||||
other material subject to Copyright and Similar Rights by digital
|
||||
file-sharing or similar means is NonCommercial provided there is
|
||||
no payment of monetary compensation in connection with the
|
||||
exchange.
|
||||
|
||||
l. Share means to provide material to the public by any means or
|
||||
process that requires permission under the Licensed Rights, such
|
||||
as reproduction, public display, public performance, distribution,
|
||||
dissemination, communication, or importation, and to make material
|
||||
available to the public including in ways that members of the
|
||||
public may access the material from a place and at a time
|
||||
individually chosen by them.
|
||||
|
||||
m. Sui Generis Database Rights means rights other than copyright
|
||||
resulting from Directive 96/9/EC of the European Parliament and of
|
||||
the Council of 11 March 1996 on the legal protection of databases,
|
||||
as amended and/or succeeded, as well as other essentially
|
||||
equivalent rights anywhere in the world.
|
||||
|
||||
n. You means the individual or entity exercising the Licensed Rights
|
||||
under this Public License. Your has a corresponding meaning.
|
||||
|
||||
|
||||
Section 2 -- Scope.
|
||||
|
||||
a. License grant.
|
||||
|
||||
1. Subject to the terms and conditions of this Public License,
|
||||
the Licensor hereby grants You a worldwide, royalty-free,
|
||||
non-sublicensable, non-exclusive, irrevocable license to
|
||||
exercise the Licensed Rights in the Licensed Material to:
|
||||
|
||||
a. reproduce and Share the Licensed Material, in whole or
|
||||
in part, for NonCommercial purposes only; and
|
||||
|
||||
b. produce, reproduce, and Share Adapted Material for
|
||||
NonCommercial purposes only.
|
||||
|
||||
2. Exceptions and Limitations. For the avoidance of doubt, where
|
||||
Exceptions and Limitations apply to Your use, this Public
|
||||
License does not apply, and You do not need to comply with
|
||||
its terms and conditions.
|
||||
|
||||
3. Term. The term of this Public License is specified in Section
|
||||
6(a).
|
||||
|
||||
4. Media and formats; technical modifications allowed. The
|
||||
Licensor authorizes You to exercise the Licensed Rights in
|
||||
all media and formats whether now known or hereafter created,
|
||||
and to make technical modifications necessary to do so. The
|
||||
Licensor waives and/or agrees not to assert any right or
|
||||
authority to forbid You from making technical modifications
|
||||
necessary to exercise the Licensed Rights, including
|
||||
technical modifications necessary to circumvent Effective
|
||||
Technological Measures. For purposes of this Public License,
|
||||
simply making modifications authorized by this Section 2(a)
|
||||
(4) never produces Adapted Material.
|
||||
|
||||
5. Downstream recipients.
|
||||
|
||||
a. Offer from the Licensor -- Licensed Material. Every
|
||||
recipient of the Licensed Material automatically
|
||||
receives an offer from the Licensor to exercise the
|
||||
Licensed Rights under the terms and conditions of this
|
||||
Public License.
|
||||
|
||||
b. Additional offer from the Licensor -- Adapted Material.
|
||||
Every recipient of Adapted Material from You
|
||||
automatically receives an offer from the Licensor to
|
||||
exercise the Licensed Rights in the Adapted Material
|
||||
under the conditions of the Adapter's License You apply.
|
||||
|
||||
c. No downstream restrictions. You may not offer or impose
|
||||
any additional or different terms or conditions on, or
|
||||
apply any Effective Technological Measures to, the
|
||||
Licensed Material if doing so restricts exercise of the
|
||||
Licensed Rights by any recipient of the Licensed
|
||||
Material.
|
||||
|
||||
6. No endorsement. Nothing in this Public License constitutes or
|
||||
may be construed as permission to assert or imply that You
|
||||
are, or that Your use of the Licensed Material is, connected
|
||||
with, or sponsored, endorsed, or granted official status by,
|
||||
the Licensor or others designated to receive attribution as
|
||||
provided in Section 3(a)(1)(A)(i).
|
||||
|
||||
b. Other rights.
|
||||
|
||||
1. Moral rights, such as the right of integrity, are not
|
||||
licensed under this Public License, nor are publicity,
|
||||
privacy, and/or other similar personality rights; however, to
|
||||
the extent possible, the Licensor waives and/or agrees not to
|
||||
assert any such rights held by the Licensor to the limited
|
||||
extent necessary to allow You to exercise the Licensed
|
||||
Rights, but not otherwise.
|
||||
|
||||
2. Patent and trademark rights are not licensed under this
|
||||
Public License.
|
||||
|
||||
3. To the extent possible, the Licensor waives any right to
|
||||
collect royalties from You for the exercise of the Licensed
|
||||
Rights, whether directly or through a collecting society
|
||||
under any voluntary or waivable statutory or compulsory
|
||||
licensing scheme. In all other cases the Licensor expressly
|
||||
reserves any right to collect such royalties, including when
|
||||
the Licensed Material is used other than for NonCommercial
|
||||
purposes.
|
||||
|
||||
|
||||
Section 3 -- License Conditions.
|
||||
|
||||
Your exercise of the Licensed Rights is expressly made subject to the
|
||||
following conditions.
|
||||
|
||||
a. Attribution.
|
||||
|
||||
1. If You Share the Licensed Material (including in modified
|
||||
form), You must:
|
||||
|
||||
a. retain the following if it is supplied by the Licensor
|
||||
with the Licensed Material:
|
||||
|
||||
i. identification of the creator(s) of the Licensed
|
||||
Material and any others designated to receive
|
||||
attribution, in any reasonable manner requested by
|
||||
the Licensor (including by pseudonym if
|
||||
designated);
|
||||
|
||||
ii. a copyright notice;
|
||||
|
||||
iii. a notice that refers to this Public License;
|
||||
|
||||
iv. a notice that refers to the disclaimer of
|
||||
warranties;
|
||||
|
||||
v. a URI or hyperlink to the Licensed Material to the
|
||||
extent reasonably practicable;
|
||||
|
||||
b. indicate if You modified the Licensed Material and
|
||||
retain an indication of any previous modifications; and
|
||||
|
||||
c. indicate the Licensed Material is licensed under this
|
||||
Public License, and include the text of, or the URI or
|
||||
hyperlink to, this Public License.
|
||||
|
||||
2. You may satisfy the conditions in Section 3(a)(1) in any
|
||||
reasonable manner based on the medium, means, and context in
|
||||
which You Share the Licensed Material. For example, it may be
|
||||
reasonable to satisfy the conditions by providing a URI or
|
||||
hyperlink to a resource that includes the required
|
||||
information.
|
||||
3. If requested by the Licensor, You must remove any of the
|
||||
information required by Section 3(a)(1)(A) to the extent
|
||||
reasonably practicable.
|
||||
|
||||
b. ShareAlike.
|
||||
|
||||
In addition to the conditions in Section 3(a), if You Share
|
||||
Adapted Material You produce, the following conditions also apply.
|
||||
|
||||
1. The Adapter's License You apply must be a Creative Commons
|
||||
license with the same License Elements, this version or
|
||||
later, or a BY-NC-SA Compatible License.
|
||||
|
||||
2. You must include the text of, or the URI or hyperlink to, the
|
||||
Adapter's License You apply. You may satisfy this condition
|
||||
in any reasonable manner based on the medium, means, and
|
||||
context in which You Share Adapted Material.
|
||||
|
||||
3. You may not offer or impose any additional or different terms
|
||||
or conditions on, or apply any Effective Technological
|
||||
Measures to, Adapted Material that restrict exercise of the
|
||||
rights granted under the Adapter's License You apply.
|
||||
|
||||
|
||||
Section 4 -- Sui Generis Database Rights.
|
||||
|
||||
Where the Licensed Rights include Sui Generis Database Rights that
|
||||
apply to Your use of the Licensed Material:
|
||||
|
||||
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
||||
to extract, reuse, reproduce, and Share all or a substantial
|
||||
portion of the contents of the database for NonCommercial purposes
|
||||
only;
|
||||
|
||||
b. if You include all or a substantial portion of the database
|
||||
contents in a database in which You have Sui Generis Database
|
||||
Rights, then the database in which You have Sui Generis Database
|
||||
Rights (but not its individual contents) is Adapted Material,
|
||||
including for purposes of Section 3(b); and
|
||||
|
||||
c. You must comply with the conditions in Section 3(a) if You Share
|
||||
all or a substantial portion of the contents of the database.
|
||||
|
||||
For the avoidance of doubt, this Section 4 supplements and does not
|
||||
replace Your obligations under this Public License where the Licensed
|
||||
Rights include other Copyright and Similar Rights.
|
||||
|
||||
|
||||
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
||||
|
||||
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
||||
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
||||
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
||||
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
||||
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
||||
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
||||
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
||||
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
||||
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
||||
|
||||
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
||||
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
||||
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
||||
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
||||
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
||||
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
||||
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
||||
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
||||
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
||||
|
||||
c. The disclaimer of warranties and limitation of liability provided
|
||||
above shall be interpreted in a manner that, to the extent
|
||||
possible, most closely approximates an absolute disclaimer and
|
||||
waiver of all liability.
|
||||
|
||||
|
||||
Section 6 -- Term and Termination.
|
||||
|
||||
a. This Public License applies for the term of the Copyright and
|
||||
Similar Rights licensed here. However, if You fail to comply with
|
||||
this Public License, then Your rights under this Public License
|
||||
terminate automatically.
|
||||
|
||||
b. Where Your right to use the Licensed Material has terminated under
|
||||
Section 6(a), it reinstates:
|
||||
|
||||
1. automatically as of the date the violation is cured, provided
|
||||
it is cured within 30 days of Your discovery of the
|
||||
violation; or
|
||||
|
||||
2. upon express reinstatement by the Licensor.
|
||||
|
||||
For the avoidance of doubt, this Section 6(b) does not affect any
|
||||
right the Licensor may have to seek remedies for Your violations
|
||||
of this Public License.
|
||||
|
||||
c. For the avoidance of doubt, the Licensor may also offer the
|
||||
Licensed Material under separate terms or conditions or stop
|
||||
distributing the Licensed Material at any time; however, doing so
|
||||
will not terminate this Public License.
|
||||
|
||||
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
||||
License.
|
||||
|
||||
|
||||
Section 7 -- Other Terms and Conditions.
|
||||
|
||||
a. The Licensor shall not be bound by any additional or different
|
||||
terms or conditions communicated by You unless expressly agreed.
|
||||
|
||||
b. Any arrangements, understandings, or agreements regarding the
|
||||
Licensed Material not stated herein are separate from and
|
||||
independent of the terms and conditions of this Public License.
|
||||
|
||||
|
||||
Section 8 -- Interpretation.
|
||||
|
||||
a. For the avoidance of doubt, this Public License does not, and
|
||||
shall not be interpreted to, reduce, limit, restrict, or impose
|
||||
conditions on any use of the Licensed Material that could lawfully
|
||||
be made without permission under this Public License.
|
||||
|
||||
b. To the extent possible, if any provision of this Public License is
|
||||
deemed unenforceable, it shall be automatically reformed to the
|
||||
minimum extent necessary to make it enforceable. If the provision
|
||||
cannot be reformed, it shall be severed from this Public License
|
||||
without affecting the enforceability of the remaining terms and
|
||||
conditions.
|
||||
|
||||
c. No term or condition of this Public License will be waived and no
|
||||
failure to comply consented to unless expressly agreed to by the
|
||||
Licensor.
|
||||
|
||||
d. Nothing in this Public License constitutes or may be interpreted
|
||||
as a limitation upon, or waiver of, any privileges and immunities
|
||||
that apply to the Licensor or You, including from the legal
|
||||
processes of any jurisdiction or authority.
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons is not a party to its public
|
||||
licenses. Notwithstanding, Creative Commons may elect to apply one of
|
||||
its public licenses to material it publishes and in those instances
|
||||
will be considered the “Licensor.” The text of the Creative Commons
|
||||
public licenses is dedicated to the public domain under the CC0 Public
|
||||
Domain Dedication. Except for the limited purpose of indicating that
|
||||
material is shared under a Creative Commons public license or as
|
||||
otherwise permitted by the Creative Commons policies published at
|
||||
creativecommons.org/policies, Creative Commons does not authorize the
|
||||
use of the trademark "Creative Commons" or any other trademark or logo
|
||||
of Creative Commons without its prior written consent including,
|
||||
without limitation, in connection with any unauthorized modifications
|
||||
to any of its public licenses or any other arrangements,
|
||||
understandings, or agreements concerning use of licensed material. For
|
||||
the avoidance of doubt, this paragraph does not form part of the
|
||||
public licenses.
|
||||
|
||||
Creative Commons may be contacted at creativecommons.org.
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,9 @@
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
$CMP K2-1102SP-C4SC-04
|
||||
D 1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol
|
||||
K dip switch
|
||||
F ~
|
||||
$ENDCMP
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
$CMP K2-1102SP-C4SC-04
|
||||
D 1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol
|
||||
K dip switch
|
||||
F ~
|
||||
$ENDCMP
|
||||
#
|
||||
#End Doc Library
|
@ -1,27 +1,27 @@
|
||||
(module K2-1102SP-C4SC-04 (layer F.Cu) (tedit 5F884944)
|
||||
(descr "Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf")
|
||||
(tags "Tactile Switch")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -4.3) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value K2-1102SP-C4SC-04 (at 0 4.2) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -7.7 -3.3) (end -6.7 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -7.7 -2.3) (end -7.7 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_circle (center 0 0) (end 1.5 0) (layer F.SilkS) (width 0.1))
|
||||
(fp_line (start -3 -3) (end 3 -3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 3 -3) (end 3 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 3 3) (end -3 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3 3) (end -3 -3) (layer F.SilkS) (width 0.12))
|
||||
(pad 1 smd rect (at -5.5 -2.3 180) (size 3.8 1.5) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 2 smd rect (at 5.5 -2.3 180) (size 3.8 1.5) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 4 smd rect (at 5.5 2.2 180) (size 3.8 1.5) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 3 smd rect (at -5.5 2.2 180) (size 3.8 1.5) (layers F.Cu F.Paste F.Mask))
|
||||
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_Omron_B3FS-100xP.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
||||
(module K2-1102SP-C4SC-04 (layer F.Cu) (tedit 5F884944)
|
||||
(descr "Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf")
|
||||
(tags "Tactile Switch")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -4.3) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value K2-1102SP-C4SC-04 (at 0 4.2) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -7.7 -3.3) (end -6.7 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -7.7 -2.3) (end -7.7 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_circle (center 0 0) (end 1.5 0) (layer F.SilkS) (width 0.1))
|
||||
(fp_line (start -3 -3) (end 3 -3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 3 -3) (end 3 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 3 3) (end -3 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3 3) (end -3 -3) (layer F.SilkS) (width 0.12))
|
||||
(pad 1 smd rect (at -5.5 -2.3 180) (size 3.8 1.5) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 2 smd rect (at 5.5 -2.3 180) (size 3.8 1.5) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 4 smd rect (at 5.5 2.2 180) (size 3.8 1.5) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 3 smd rect (at -5.5 2.2 180) (size 3.8 1.5) (layers F.Cu F.Paste F.Mask))
|
||||
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_Omron_B3FS-100xP.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
@ -1,28 +1,28 @@
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# K2-1102SP-C4SC-04
|
||||
#
|
||||
DEF K2-1102SP-C4SC-04 SW 0 0 Y N 1 F N
|
||||
F0 "SW" 150 0 50 V V C CNN
|
||||
F1 "K2-1102SP-C4SC-04" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 V I C CNN
|
||||
F3 "" 0 0 50 V I C CNN
|
||||
$FPLIST
|
||||
SW?DIP?x1*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 -80 20 0 0 0 N
|
||||
C 0 80 20 0 0 0 N
|
||||
C 0 80 20 0 0 0 N
|
||||
P 2 0 0 0 5 60 46 -93 N
|
||||
P 2 0 1 0 0 -100 0 -150 N
|
||||
P 2 0 1 0 0 150 0 100 N
|
||||
X ~ 1 -200 150 200 R 50 50 1 1 P
|
||||
X ~ 2 200 150 200 L 50 50 1 1 P
|
||||
X ~ 3 -200 -150 200 R 50 50 1 1 P
|
||||
X ~ 4 200 -150 200 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# K2-1102SP-C4SC-04
|
||||
#
|
||||
DEF K2-1102SP-C4SC-04 SW 0 0 Y N 1 F N
|
||||
F0 "SW" 150 0 50 V V C CNN
|
||||
F1 "K2-1102SP-C4SC-04" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 V I C CNN
|
||||
F3 "" 0 0 50 V I C CNN
|
||||
$FPLIST
|
||||
SW?DIP?x1*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 -80 20 0 0 0 N
|
||||
C 0 80 20 0 0 0 N
|
||||
C 0 80 20 0 0 0 N
|
||||
P 2 0 0 0 5 60 46 -93 N
|
||||
P 2 0 1 0 0 -100 0 -150 N
|
||||
P 2 0 1 0 0 150 0 100 N
|
||||
X ~ 1 -200 150 200 R 50 50 1 1 P
|
||||
X ~ 2 200 150 200 L 50 50 1 1 P
|
||||
X ~ 3 -200 -150 200 R 50 50 1 1 P
|
||||
X ~ 4 200 -150 200 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
@ -1,31 +1,31 @@
|
||||
(footprint "KAN4542-0701C" (version 20211014) (generator pcbnew)
|
||||
(layer "F.Cu")
|
||||
(tedit 611D7BB9)
|
||||
(descr "Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf")
|
||||
(tags "Tactile Switch")
|
||||
(attr smd)
|
||||
(fp_text reference "REF**" (at 0 -4.3) (layer "F.SilkS")
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
(tstamp c0ef9ad1-8ec9-4fac-a801-e5fec4da4173)
|
||||
)
|
||||
(fp_text value "KAN4542-0701C" (at 0 4.2) (layer "F.Fab")
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
(tstamp 05f4b111-c459-46c2-ad43-9465df405043)
|
||||
)
|
||||
(fp_line (start -4.2 -1.6) (end -4.2 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 254eb779-23d0-40c8-81ae-5d1f3c30a65f))
|
||||
(fp_line (start -4.2 -2.6) (end -3.2 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 3e90fc21-c6ed-459c-8a5e-cdb378ee2b51))
|
||||
(fp_line (start -2 2.25) (end -2 -2.25) (layer "F.SilkS") (width 0.12) (tstamp 4414cb2b-4842-4a38-97a3-417c8312ae50))
|
||||
(fp_line (start 2 2.25) (end -2 2.25) (layer "F.SilkS") (width 0.12) (tstamp 5b3f8b4f-1f88-41e8-abe7-ad172557e322))
|
||||
(fp_line (start 2 -2.242259) (end 2 2.257741) (layer "F.SilkS") (width 0.12) (tstamp d25bf30a-76c3-4627-ad52-276effb1dea3))
|
||||
(fp_line (start -2 -2.25) (end 2 -2.25) (layer "F.SilkS") (width 0.12) (tstamp db5c7738-9d70-4326-8cff-901336a2d9ec))
|
||||
(fp_circle (center 0 0) (end 1.1 0) (layer "F.SilkS") (width 0.1) (fill none) (tstamp 3be4b7ec-d0cb-4063-b59f-7b5f6ff2462b))
|
||||
(pad "1" smd rect (at -2.925 -1.5 180) (size 1.65 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0e72d5c8-ea2f-4468-a14c-e0b25cb2f5b6))
|
||||
(pad "2" smd rect (at 2.925 -1.5 180) (size 1.65 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2e3a015e-4ac7-4f74-b14e-a945ac3e66e7))
|
||||
(pad "3" smd rect (at -2.925 1.5 180) (size 1.65 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 994f45a1-0ba0-460f-b1ac-1e659353d16b))
|
||||
(pad "4" smd rect (at 2.925 1.5 180) (size 1.65 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 93164cab-ca66-4ed3-baa0-e67889d633ed))
|
||||
(model "${KIPRJMOD}/3dmodels/User Library-PTS645SL95SMTR92-LFS.STEP"
|
||||
(offset (xyz 0 0 0))
|
||||
(scale (xyz 0.75 0.75 0.75))
|
||||
(rotate (xyz 0.75 0 0))
|
||||
)
|
||||
)
|
||||
(footprint "KAN4542-0701C" (version 20211014) (generator pcbnew)
|
||||
(layer "F.Cu")
|
||||
(tedit 611D7BB9)
|
||||
(descr "Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf")
|
||||
(tags "Tactile Switch")
|
||||
(attr smd)
|
||||
(fp_text reference "REF**" (at 0 -4.3) (layer "F.SilkS")
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
(tstamp c0ef9ad1-8ec9-4fac-a801-e5fec4da4173)
|
||||
)
|
||||
(fp_text value "KAN4542-0701C" (at 0 4.2) (layer "F.Fab")
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
(tstamp 05f4b111-c459-46c2-ad43-9465df405043)
|
||||
)
|
||||
(fp_line (start -4.2 -1.6) (end -4.2 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 254eb779-23d0-40c8-81ae-5d1f3c30a65f))
|
||||
(fp_line (start -4.2 -2.6) (end -3.2 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 3e90fc21-c6ed-459c-8a5e-cdb378ee2b51))
|
||||
(fp_line (start -2 2.25) (end -2 -2.25) (layer "F.SilkS") (width 0.12) (tstamp 4414cb2b-4842-4a38-97a3-417c8312ae50))
|
||||
(fp_line (start 2 2.25) (end -2 2.25) (layer "F.SilkS") (width 0.12) (tstamp 5b3f8b4f-1f88-41e8-abe7-ad172557e322))
|
||||
(fp_line (start 2 -2.242259) (end 2 2.257741) (layer "F.SilkS") (width 0.12) (tstamp d25bf30a-76c3-4627-ad52-276effb1dea3))
|
||||
(fp_line (start -2 -2.25) (end 2 -2.25) (layer "F.SilkS") (width 0.12) (tstamp db5c7738-9d70-4326-8cff-901336a2d9ec))
|
||||
(fp_circle (center 0 0) (end 1.1 0) (layer "F.SilkS") (width 0.1) (fill none) (tstamp 3be4b7ec-d0cb-4063-b59f-7b5f6ff2462b))
|
||||
(pad "1" smd rect (at -2.925 -1.5 180) (size 1.65 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0e72d5c8-ea2f-4468-a14c-e0b25cb2f5b6))
|
||||
(pad "2" smd rect (at 2.925 -1.5 180) (size 1.65 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2e3a015e-4ac7-4f74-b14e-a945ac3e66e7))
|
||||
(pad "3" smd rect (at -2.925 1.5 180) (size 1.65 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 994f45a1-0ba0-460f-b1ac-1e659353d16b))
|
||||
(pad "4" smd rect (at 2.925 1.5 180) (size 1.65 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 93164cab-ca66-4ed3-baa0-e67889d633ed))
|
||||
(model "${KIPRJMOD}/3dmodels/User Library-PTS645SL95SMTR92-LFS.STEP"
|
||||
(offset (xyz 0 0 0))
|
||||
(scale (xyz 0.75 0.75 0.75))
|
||||
(rotate (xyz 0.75 0 0))
|
||||
)
|
||||
)
|
File diff suppressed because it is too large
Load Diff
@ -1,27 +1,27 @@
|
||||
(module TS-1102S-C-A-B (layer F.Cu) (tedit 611D6F32)
|
||||
(descr "Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf")
|
||||
(tags "Tactile Switch")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -4.3) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value TS-1102S-C-A-B (at 0 4.2) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -3 3) (end -3 -3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 3 3) (end -3 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 3 -3) (end 3 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3 -3) (end 3 -3) (layer F.SilkS) (width 0.12))
|
||||
(fp_circle (center 0 0) (end 1.75 0) (layer F.SilkS) (width 0.1))
|
||||
(fp_line (start -6.7 -2.3) (end -6.7 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -6.7 -3.3) (end -5.7 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(pad 1 smd rect (at -4.7 -2.25 180) (size 2.6 1.3) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 3 smd rect (at 4.7 -2.25 180) (size 2.6 1.4) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 4 smd rect (at 4.7 2.25 180) (size 2.6 1.4) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 2 smd rect (at -4.7 2.25 180) (size 2.6 1.4) (layers F.Cu F.Paste F.Mask))
|
||||
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_Omron_B3FS-100xP.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
||||
(module TS-1102S-C-A-B (layer F.Cu) (tedit 611D6F32)
|
||||
(descr "Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf")
|
||||
(tags "Tactile Switch")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -4.3) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value TS-1102S-C-A-B (at 0 4.2) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -3 3) (end -3 -3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 3 3) (end -3 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 3 -3) (end 3 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3 -3) (end 3 -3) (layer F.SilkS) (width 0.12))
|
||||
(fp_circle (center 0 0) (end 1.75 0) (layer F.SilkS) (width 0.1))
|
||||
(fp_line (start -6.7 -2.3) (end -6.7 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -6.7 -3.3) (end -5.7 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(pad 1 smd rect (at -4.7 -2.25 180) (size 2.6 1.3) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 3 smd rect (at 4.7 -2.25 180) (size 2.6 1.4) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 4 smd rect (at 4.7 2.25 180) (size 2.6 1.4) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 2 smd rect (at -4.7 2.25 180) (size 2.6 1.4) (layers F.Cu F.Paste F.Mask))
|
||||
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_Omron_B3FS-100xP.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-1.25U-LED (layer F.Cu) (tedit 5CF326DA)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-1.25U-LED (layer F.Cu) (tedit 5CF326DA)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-1.25U (layer F.Cu) (tedit 5A9F491D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value Alps-1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-1.25U (layer F.Cu) (tedit 5A9F491D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value Alps-1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-1.5U-LED (layer F.Cu) (tedit 5CF326C9)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-1.5U-LED (layer F.Cu) (tedit 5CF326C9)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-1.5U (layer F.Cu) (tedit 5A9F490F)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-1.5U (layer F.Cu) (tedit 5A9F490F)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-1.75U-LED (layer F.Cu) (tedit 5CF326E6)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-1.75U-LED (layer F.Cu) (tedit 5CF326E6)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-1.75U (layer F.Cu) (tedit 5A9F497B)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-1.75U (layer F.Cu) (tedit 5A9F497B)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-1U-LED (layer F.Cu) (tedit 5CF326F5)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-1U-LED (layer F.Cu) (tedit 5CF326F5)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-1U (layer F.Cu) (tedit 5CF31DEF)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-1U (layer F.Cu) (tedit 5CF31DEF)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-2.25U-LED (layer F.Cu) (tedit 5CF32716)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-2.25U-LED (layer F.Cu) (tedit 5CF32716)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-2.25U (layer F.Cu) (tedit 5A9F49E3)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-2.25U (layer F.Cu) (tedit 5A9F49E3)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-2.5U-LED (layer F.Cu) (tedit 5CF32705)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-2.5U-LED (layer F.Cu) (tedit 5CF32705)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-2.5U (layer F.Cu) (tedit 5A9F4A16)
|
||||
(fp_text reference REF** (at 0 0) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-2.5U (layer F.Cu) (tedit 5A9F4A16)
|
||||
(fp_text reference REF** (at 0 0) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-2.75U-LED (layer F.Cu) (tedit 5CF32724)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-2.75U-LED (layer F.Cu) (tedit 5CF32724)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-2.75U (layer F.Cu) (tedit 5A9F4A3D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-2.75U (layer F.Cu) (tedit 5A9F4A3D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-2U-LED (layer F.Cu) (tedit 5CF3272F)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-2U-LED (layer F.Cu) (tedit 5CF3272F)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-2U (layer F.Cu) (tedit 5A9F49CA)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-2U (layer F.Cu) (tedit 5A9F49CA)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-3U-LED (layer F.Cu) (tedit 5CF3273C)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-3U-LED (layer F.Cu) (tedit 5CF3273C)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-3U (layer F.Cu) (tedit 5CF3247D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-3U (layer F.Cu) (tedit 5CF3247D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-6.25U-LED (layer F.Cu) (tedit 5CF32755)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 6.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 -9.525) (end 59.53125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 59.53125 -9.525) (end 59.53125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 9.525) (end 59.53125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-6.25U-LED (layer F.Cu) (tedit 5CF32755)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 6.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 -9.525) (end 59.53125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 59.53125 -9.525) (end 59.53125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 9.525) (end 59.53125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-6.25U (layer F.Cu) (tedit 5C80C2B4)
|
||||
(fp_text reference REF** (at 0 0) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 6.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 -9.525) (end 59.53125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 59.53125 -9.525) (end 59.53125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 9.525) (end 59.53125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-6.25U (layer F.Cu) (tedit 5C80C2B4)
|
||||
(fp_text reference REF** (at 0 0) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 6.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 -9.525) (end 59.53125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 59.53125 -9.525) (end 59.53125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 9.525) (end 59.53125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -59.53125 9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-6.5U-LED (layer F.Cu) (tedit 5CF32747)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 6.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 -9.525) (end 61.9125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 61.9125 -9.525) (end 61.9125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 9.525) (end 61.9125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 9.525) (end -61.9125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-6.5U-LED (layer F.Cu) (tedit 5CF32747)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 6.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 -9.525) (end 61.9125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 61.9125 -9.525) (end 61.9125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 9.525) (end 61.9125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 9.525) (end -61.9125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module ALPS-6.5U (layer F.Cu) (tedit 5A9F4A63)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 6.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 -9.525) (end 61.9125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 61.9125 -9.525) (end 61.9125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 9.525) (end 61.9125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 9.525) (end -61.9125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-6.5U (layer F.Cu) (tedit 5A9F4A63)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 6.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 -9.525) (end 61.9125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 61.9125 -9.525) (end 61.9125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 9.525) (end 61.9125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -61.9125 9.525) (end -61.9125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,24 +1,24 @@
|
||||
(module ALPS-7U-LED (layer F.Cu) (tedit 5CF3275F)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 7U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 -9.525) (end 66.675 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 66.675 -9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-7U-LED (layer F.Cu) (tedit 5CF3275F)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 7U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 -9.525) (end 66.675 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 66.675 -9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,22 +1,22 @@
|
||||
(module MX_Alps_Hybrid:MX-7U (layer F.Cu) (tedit 5B2135A8)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 7U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 -9.525) (end 66.675 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 66.675 -9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module MX_Alps_Hybrid:MX-7U (layer F.Cu) (tedit 5B2135A8)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 7U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 -9.525) (end 66.675 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 66.675 -9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -66.675 9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,40 +1,40 @@
|
||||
(module ALPS-ISO-2 (layer F.Cu) (tedit 5E9BC7BD)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value ALPS-ISO-2 (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -11.90625 19.05) (end -11.90625 0) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 0) (end -16.66875 0) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -19.05) (end 11.90625 -19.05) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -19.05) (end -16.66875 0) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 5 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 5) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -5) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad "" np_thru_hole circle (at -6.985 11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -6.985 -11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 8.255 11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 8.255 -11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 4 -2.5 270) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 4.5 2.5 270) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-ISO-2 (layer F.Cu) (tedit 5E9BC7BD)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value ALPS-ISO-2 (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -11.90625 19.05) (end -11.90625 0) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 0) (end -16.66875 0) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -19.05) (end 11.90625 -19.05) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -19.05) (end -16.66875 0) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 5 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 5) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -5) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad "" np_thru_hole circle (at -6.985 11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -6.985 -11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 8.255 11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 8.255 -11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 4 -2.5 270) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 4.5 2.5 270) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,18 +1,18 @@
|
||||
(module ALPS-LEDONLY-FLIPPED (layer F.Cu) (tedit 5CF32778)
|
||||
(fp_text reference REF** (at 0 6.604) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value LED (at -5.334 5.842) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(pad 1 thru_hole circle (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole rect (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-LEDONLY-FLIPPED (layer F.Cu) (tedit 5CF32778)
|
||||
(fp_text reference REF** (at 0 6.604) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value LED (at -5.334 5.842) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(pad 1 thru_hole circle (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole rect (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,18 +1,18 @@
|
||||
(module ALPS-LEDONLY (layer F.Cu) (tedit 5CF3276C)
|
||||
(fp_text reference REF** (at 0 6.604) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value LED (at -5.334 5.842) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module ALPS-LEDONLY (layer F.Cu) (tedit 5CF3276C)
|
||||
(fp_text reference REF** (at 0 6.604) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value LED (at -5.334 5.842) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole rect (at -1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at 1.27 4.6) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,28 +1,28 @@
|
||||
(module KailhChoc-1.25U (layer F.Cu) (tedit 5C519AB7)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 0 -5.9) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.4 3.4) (drill 3.4) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 5 -3.8) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.22 4.2) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module KailhChoc-1.25U (layer F.Cu) (tedit 5C519AB7)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 0 -5.9) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.4 3.4) (drill 3.4) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 5 -3.8) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.22 4.2) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,28 +1,28 @@
|
||||
(module KailhChoc-1.5U (layer F.Cu) (tedit 5C519AAD)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 0 -5.9) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.4 3.4) (drill 3.4) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 5 -3.8) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.22 4.2) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module KailhChoc-1.5U (layer F.Cu) (tedit 5C519AAD)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 0 -5.9) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.4 3.4) (drill 3.4) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 5 -3.8) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.22 4.2) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,28 +1,28 @@
|
||||
(module KailhChoc-1.75U (layer F.Cu) (tedit 5C519A9D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 0 -5.9) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.4 3.4) (drill 3.4) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 5 -3.8) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.22 4.2) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module KailhChoc-1.75U (layer F.Cu) (tedit 5C519A9D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 0 -5.9) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.4 3.4) (drill 3.4) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 5 -3.8) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.22 4.2) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,28 +1,28 @@
|
||||
(module KailhChoc-1U (layer F.Cu) (tedit 5C519AC1)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 0 -5.9) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.4 3.4) (drill 3.4) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 5 -3.8) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.22 4.2) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module KailhChoc-1U (layer F.Cu) (tedit 5C519AC1)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole circle (at 0 -5.9) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.4 3.4) (drill 3.4) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at 5 -3.8) (size 2 2) (drill 1.2) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.5 0 48.1) (size 1.9 1.9) (drill 1.9) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.22 4.2) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 4.7) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,21 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 ai03
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 ai03
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -1,29 +1,29 @@
|
||||
(module MX-1.25U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F3BE7)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.25U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F3BE7)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,27 +1,27 @@
|
||||
(module MX-1.25U-NoLED (layer F.Cu) (tedit 5A9F5210)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.25U-NoLED (layer F.Cu) (tedit 5A9F5210)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,29 +1,29 @@
|
||||
(module MX-1.25U-Pretty (layer F.Cu) (tedit 5A9F3BE7)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.25U-Pretty (layer F.Cu) (tedit 5A9F3BE7)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,29 +1,29 @@
|
||||
(module MX-1.5U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F3C23)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.5U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F3C23)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,27 +1,27 @@
|
||||
(module MX-1.5U-NoLED (layer F.Cu) (tedit 5A9F5217)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.5U-NoLED (layer F.Cu) (tedit 5A9F5217)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,29 +1,29 @@
|
||||
(module MX-1.5U-Vertical (layer F.Cu) (tedit 5B8AC584)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -9.525 -14.2875) (end -9.525 14.2875) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -14.2875) (end -9.525 -14.2875) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 14.2875) (end -9.525 14.2875) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -14.2875) (end 9.525 14.2875) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
)
|
||||
(module MX-1.5U-Vertical (layer F.Cu) (tedit 5B8AC584)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -9.525 -14.2875) (end -9.525 14.2875) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -14.2875) (end -9.525 -14.2875) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 14.2875) (end -9.525 14.2875) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -14.2875) (end 9.525 14.2875) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
)
|
@ -1,29 +1,29 @@
|
||||
(module MX-1.5U-Pretty (layer F.Cu) (tedit 5A9F3C23)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.5U-Pretty (layer F.Cu) (tedit 5A9F3C23)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,29 +1,29 @@
|
||||
(module MX-1.75U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F3CCD)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.75U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F3CCD)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,27 +1,27 @@
|
||||
(module MX-1.75U-NoLED (layer F.Cu) (tedit 5A9F5220)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.75U-NoLED (layer F.Cu) (tedit 5A9F5220)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,29 +1,29 @@
|
||||
(module MX-1.75U-Pretty (layer F.Cu) (tedit 5A9F3CCD)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1.75U-Pretty (layer F.Cu) (tedit 5A9F3CCD)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-10U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F51D8)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-10U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F51D8)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-10U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F468E)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-10U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F468E)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-10U-NoLED (layer F.Cu) (tedit 5A9F52F6)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-10U-NoLED (layer F.Cu) (tedit 5A9F52F6)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-10U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5335)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-10U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5335)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-10U-ReversedStabilizers (layer F.Cu) (tedit 5A9F51BC)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-10U-ReversedStabilizers (layer F.Cu) (tedit 5A9F51BC)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-10U-Pretty (layer F.Cu) (tedit 5A9F468E)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-10U-Pretty (layer F.Cu) (tedit 5A9F468E)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 10U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 -9.525) (end 95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 95.25 -9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end 95.25 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -95.25 9.525) (end -95.25 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 66.675 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,29 +1,29 @@
|
||||
(module MX-1U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F3A9A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F3A9A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,27 +1,27 @@
|
||||
(module MX-1U-NoLED (layer F.Cu) (tedit 5A9F5203)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1U-NoLED (layer F.Cu) (tedit 5A9F5203)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,29 +1,29 @@
|
||||
(module MX-1U-Pretty (layer F.Cu) (tedit 5A9F3A9A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-1U-Pretty (layer F.Cu) (tedit 5A9F3A9A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 1U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.25U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F10)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.25U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F10)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.25U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F4181)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.25U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F4181)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-2.25U-NoLED (layer F.Cu) (tedit 5A9F5245)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.25U-NoLED (layer F.Cu) (tedit 5A9F5245)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-2.25U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5259)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.25U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5259)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.25U-ReversedStabilizers (layer F.Cu) (tedit 5A9F4EF8)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.25U-ReversedStabilizers (layer F.Cu) (tedit 5A9F4EF8)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.25U-Pretty (layer F.Cu) (tedit 5A9F4181)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.25U-Pretty (layer F.Cu) (tedit 5A9F4181)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.25U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 -9.525) (end 21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 21.43125 -9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end 21.43125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -21.43125 9.525) (end -21.43125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.5U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F4D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.5U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F4D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.5U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F419A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.5U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F419A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-2.5U-NoLED (layer F.Cu) (tedit 5A9F5268)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.5U-NoLED (layer F.Cu) (tedit 5A9F5268)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-2.5U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5273)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.5U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5273)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.5U-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F33)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.5U-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F33)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.5U-Pretty (layer F.Cu) (tedit 5A9F419A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.5U-Pretty (layer F.Cu) (tedit 5A9F419A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.5U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 -9.525) (end 23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 23.8125 -9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end 23.8125 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -23.8125 9.525) (end -23.8125 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.75U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F91)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.75U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F91)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.75U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F41B2)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.75U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F41B2)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-2.75U-NoLED (layer F.Cu) (tedit 5A9F5299)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.75U-NoLED (layer F.Cu) (tedit 5A9F5299)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-2.75U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F527D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.75U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F527D)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.75U-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F6B)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.75U-ReversedStabilizers (layer F.Cu) (tedit 5A9F4F6B)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2.75U-Pretty (layer F.Cu) (tedit 5A9F41B2)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2.75U-Pretty (layer F.Cu) (tedit 5A9F41B2)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2.75U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 -9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 26.19375 -9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end 26.19375 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4EE0)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4EE0)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F416A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F416A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-2U-NoLED (layer F.Cu) (tedit 5A9F522A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2U-NoLED (layer F.Cu) (tedit 5A9F522A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-2U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5237)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5237)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2U-ReversedStabilizers (layer F.Cu) (tedit 5A9F4EC4)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2U-ReversedStabilizers (layer F.Cu) (tedit 5A9F4EC4)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-2U-Pretty (layer F.Cu) (tedit 5A9F416A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-2U-Pretty (layer F.Cu) (tedit 5A9F416A)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-3U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4FC0)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-3U-FLIPPED-ReversedStabilizers (layer F.Cu) (tedit 5A9F4FC0)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,33 +1,33 @@
|
||||
(module MX-3U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F40A4)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-3U-FLIPPED-Pretty (layer F.Cu) (tedit 5A9F40A4)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 3 thru_hole circle (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad 4 thru_hole rect (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-3U-NoLED (layer F.Cu) (tedit 5A9F52A5)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-3U-NoLED (layer F.Cu) (tedit 5A9F52A5)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
@ -1,31 +1,31 @@
|
||||
(module MX-3U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5286)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
||||
(module MX-3U-ReversedStabilizers-NoLED (layer F.Cu) (tedit 5A9F5286)
|
||||
(fp_text reference REF** (at 0 3.175) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3U (at 0 -7.9375) (layer Dwgs.User)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 -9.525) (end 28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start 28.575 -9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end 28.575 9.525) (layer Dwgs.User) (width 0.15))
|
||||
(fp_line (start -28.575 9.525) (end -28.575 -9.525) (layer Dwgs.User) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu B.Mask))
|
||||
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad 1 thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask))
|
||||
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at -19.05 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 19.05 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
|
||||
)
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user