--- /dev/null
+#! /usr/bin/python
+#
+# generate lihata footprint for 4ucon 11071 tabbed micro USB connector
+# Copyright 2020 by Bdale Garbee <bdale@gag.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+import math
+from fplht import *
+
+fp = footprint()
+
+fp.name = "11071"
+fp.description = "4ucon 11071 tabbed micro USB connector"
+
+fp.emit()
#! /usr/bin/python
-# Copyright 2020 by Bdale Garbee <bdale@gag.com>. GPLv3
-
# Python library to assist in generating lihata format footprints for pcb-rnd
+# Copyright 2020 by Bdale Garbee <bdale@gag.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
# Each footprint should have a parent Python script that initializes this
# library and provides a high-level description of the primitives required.