.gitignore update, etc
[hw/altusmetrum] / packages / lipo-pad.5c
1 /*
2  * Copyright © 2014 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 load "footprint.5c";
19 import Footprint;
20
21 /* Battery geometry */
22 if (dim(argv) < 3) {
23         File::fprintf(stderr, "Usage: %s <height> <width>\n", argv[0]);
24         exit(1);
25 }
26
27 File::sscanf(argv[1], "%f", &(real battery_width));
28 File::sscanf(argv[2], "%f", &(real battery_height));
29
30 /* Size of solder pad */
31 real tab_height = 4.0;
32 real tab_width = 4.0;
33
34 /* inset from edge of battery to tab solder pad */
35 real tab_off = 1.0;
36
37 /* Spacing between solder pads */
38 real tab_space = 7.0;
39
40 element_start(sprintf("lipo-%fx%f", battery_width, battery_height));
41
42 pad_mm (-tab_space/2, 0, tab_width, tab_height, "-", "2");
43 pad_mm (tab_space/2, 0, tab_width, tab_height, "+", "1");
44
45 rect (-battery_width/2, -tab_height/2 - tab_off, battery_width, battery_height);
46
47 element_end();