16 | Back 17 |
18 |├── .dockerignore ├── layouts ├── _default │ ├── terms.html │ ├── archive.html │ ├── summary.html │ ├── list.html │ └── single.html ├── partials │ ├── github_release_link.html │ ├── tags.html │ ├── categories.html │ ├── github_dl_link.html │ ├── latest_blog_posts.html │ ├── breadcrumb.html │ ├── github_lib_table.html │ ├── breadcrumb_blog.html │ ├── breadcrumb_subsection.html │ ├── sidebar.html │ └── navbar.html ├── shortcodes │ ├── repology.html │ ├── aboutlink.html │ ├── klcimg.html │ ├── klcimg_full_width.html │ ├── fp_naming_header.html │ ├── fp_prefix_long.html │ ├── klc_list.html │ ├── fp_standard.html │ └── refdes.html ├── section │ ├── _libraries_v5.html_ │ └── blog.html ├── blog │ └── single.html ├── external-tools │ └── single.html ├── made-with-kicad │ └── single.html ├── klc │ └── single.html ├── 404.html └── download │ └── single.html ├── .gitignore ├── static ├── favicon.ico ├── img │ ├── klc │ │ ├── F4.2.png │ │ ├── F4.5.png │ │ ├── F6.1.png │ │ ├── F7.1.png │ │ ├── F7.2.png │ │ ├── S4.6.png │ │ ├── F2.4a.png │ │ ├── F2.4b.png │ │ ├── F4.2a.png │ │ ├── F4.2b.png │ │ ├── F4.3a.png │ │ ├── F4.6a.png │ │ ├── F5.1a.png │ │ ├── F5.1b.png │ │ ├── F5.2a.png │ │ ├── F5.3a.png │ │ ├── F6.1b.png │ │ ├── F6.2a.png │ │ ├── F6.2b.png │ │ ├── F6.3a.png │ │ ├── F6.3b.png │ │ ├── F6.3c.png │ │ ├── F7.1b.png │ │ ├── F7.3a.png │ │ ├── F7.4a.png │ │ ├── F7.5a.png │ │ ├── F8.1a.png │ │ ├── F9.1a.png │ │ ├── F9.2a.png │ │ ├── F9.3a.png │ │ ├── G2.1a.png │ │ ├── G2.1b.png │ │ ├── G2.1c.png │ │ ├── G2.1d.png │ │ ├── S2.4a.png │ │ ├── S2.4b.png │ │ ├── S2.4c.png │ │ ├── S3.1a.png │ │ ├── S3.3a.png │ │ ├── S3.3b.png │ │ ├── S3.4a.png │ │ ├── S3.5a.png │ │ ├── S3.5b.png │ │ ├── S3.6a.png │ │ ├── S3.6b.png │ │ ├── S3.8a.png │ │ ├── S4.2a.png │ │ ├── S4.4a.png │ │ ├── S5.1a.png │ │ ├── S5.2a.png │ │ ├── S6.3a.png │ │ ├── S7.1_a.png │ │ ├── S7.2_a.png │ │ ├── to-body_dim.png │ │ ├── hole_size_oval.png │ │ ├── adding_screenshot.png │ │ ├── to-THT_orientation.png │ │ ├── connector_orientation.png │ │ ├── hole_size_round_lead.png │ │ ├── crtyd_clearance_example.png │ │ ├── hole_size_rectangle_lead.png │ │ └── terminal_block_orientation.png │ ├── icons │ │ ├── note.png │ │ ├── tip.png │ │ ├── caution.png │ │ ├── warning.png │ │ └── important.png │ ├── post │ │ ├── bm_01.jpg │ │ ├── hack-master-r3.jpg │ │ ├── pivot_rotation.png │ │ ├── oce_step_20160313.png │ │ ├── select_3dpreview.png │ │ ├── GB1601-InEarSys-RX_1.jpg │ │ ├── GB1601-InEarSys-RX_3.jpg │ │ ├── GB1601-InEarSys-RX_6.jpg │ │ └── footprint_3dpreview.png │ ├── about │ │ ├── glesys.png │ │ ├── cern-logo.png │ │ ├── rpi-logo.png │ │ ├── aisler-logo.png │ │ ├── arduino-logo.png │ │ ├── digikey-logo.png │ │ ├── gipsa-logo.png │ │ ├── kicad-logo.png │ │ ├── softplc-logo.png │ │ └── tech-explorations-logo.png │ ├── frontpage │ │ ├── banner.jpg │ │ ├── kicad_pcbnew.png │ │ ├── kicad_3dviewer.png │ │ └── kicad_eeschema.png │ ├── kicad_logo_small.png │ ├── madewithkicad │ │ ├── EITI.jpg │ │ ├── GH60.jpg │ │ ├── VESC.jpg │ │ ├── HackRF.jpg │ │ ├── Opsis.jpg │ │ ├── Saturn.jpg │ │ ├── teres.jpg │ │ ├── upsat.jpg │ │ ├── vbiot1.png │ │ ├── CIAA-ACC.jpg │ │ ├── CIAA-FSL.jpg │ │ ├── CIAA-NXP.jpg │ │ ├── MobilECG.jpg │ │ ├── blixten.png │ │ ├── kiwisdr.jpg │ │ ├── memtype.jpg │ │ ├── olinuxino.jpg │ │ ├── tlnixie.png │ │ ├── usbarmory.jpg │ │ ├── Mooltipass.jpg │ │ ├── Upconverter.jpg │ │ ├── anavi-flex.jpg │ │ ├── crazyflie2.jpg │ │ ├── juicyboard.jpg │ │ ├── CIAA-EDU-NXP.jpg │ │ ├── CIAA-picoCIAA.jpg │ │ ├── Micropendous.jpg │ │ ├── MultiAdaptor.jpg │ │ ├── cseduinov4_3d.jpg │ │ ├── ubertooth-one.jpg │ │ ├── virtualsense.jpg │ │ ├── ElectrosmartECG.jpg │ │ ├── VESC-controller.jpg │ │ ├── anavi-light-phat.jpg │ │ ├── librem_5_dev_kit.png │ │ ├── makerville-knit.jpg │ │ ├── JEMTechILDANodeV1.jpg │ │ ├── anavi-infrared-phat.jpg │ │ ├── TinyReflowController.jpg │ │ ├── atmega328-motor-board.jpg │ │ ├── anavi-light-controller.jpg │ │ └── rusefi_frankenso_top-isometric.png │ ├── screenshots │ │ ├── pcbnew.png │ │ ├── 3dviewer.jpg │ │ ├── calc_rf.png │ │ ├── mac_pcbnew.png │ │ ├── mint_kicad.png │ │ ├── mint_pcbnew.png │ │ ├── page_edit.png │ │ ├── pcbnew_drc.png │ │ ├── pcbnew_plot.png │ │ ├── eeschema_erc.png │ │ ├── mac_eeschema.png │ │ ├── mint_eeschema.png │ │ ├── pcbnew_python.png │ │ ├── windows_kicad.png │ │ ├── appstream │ │ │ ├── kicad.png │ │ │ ├── pcbnew.png │ │ │ ├── 3dviewer.png │ │ │ └── eeschema.png │ │ ├── bitmapconverter.png │ │ ├── calc_regulator.png │ │ ├── eeschema_colors.png │ │ ├── eeschema_hotkeys.png │ │ ├── pcbnew_hotkeys.png │ │ ├── pcbnew_languages.png │ │ ├── windows_eeschema.png │ │ ├── windows_pcbnew.png │ │ ├── eeschema_annotate.png │ │ ├── eeschema_component_edit.png │ │ ├── eeschema_footprint_pick.png │ │ ├── eeschema_component_options.png │ │ └── eeschema_library_browser.png │ └── external-tools │ │ ├── fped.png │ │ ├── eeshow.png │ │ ├── kicost.png │ │ ├── stepup.png │ │ └── altium2kicad.png ├── mstile-70x70.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── apple-touch-icon.png ├── fonts │ ├── font-linux.eot │ ├── font-linux.ttf │ ├── font-linux.woff │ ├── font-linux.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── android-chrome-144x144.png ├── android-chrome-36x36.png ├── android-chrome-48x48.png ├── android-chrome-72x72.png ├── android-chrome-96x96.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-precomposed.png ├── dashboard.action │ └── index.html ├── plugins │ └── servlet │ │ └── mobile │ │ └── index.html ├── display │ ├── KICAD │ │ ├── Videos+by+DPRG │ │ │ └── index.html │ │ ├── Videos+by+zupnikal │ │ │ └── index.html │ │ ├── Videos+fron+sandeep │ │ │ └── index.html │ │ ├── Download │ │ │ └── index.html │ │ ├── KiCad+EDA+Software+Suite │ │ │ └── index.html │ │ ├── Platforms │ │ │ └── index.html │ │ ├── Download+Kicad │ │ │ └── index.html │ │ ├── Installing+KiCad │ │ │ └── index.html │ │ ├── Tutorials │ │ │ └── index.html │ │ ├── Windows │ │ │ └── index.html │ │ ├── External+Tools │ │ │ └── index.html │ │ ├── KiCad+Documentation │ │ │ └── index.html │ │ └── Frequently+Asked+Questions │ │ │ └── index.html │ └── DEV │ │ ├── index.html │ │ ├── Getting+Started │ │ └── index.html │ │ └── KiCad+Development │ │ └── index.html ├── pages │ ├── viewrecentblogposts.action │ │ └── index.html │ └── viewpage.action │ │ └── index.html ├── browserconfig.xml ├── manifest.json └── js │ └── kicad.js ├── content ├── help │ ├── documentation.adoc │ └── books.adoc ├── klc │ ├── F3.2.adoc │ ├── F7.2.adoc │ ├── F7.5.adoc │ ├── M1.1.adoc │ ├── S3.2.adoc │ ├── G1.8.adoc │ ├── F7.6.adoc │ ├── S6.1.adoc │ ├── G1.5.adoc │ ├── S3.8.adoc │ ├── S6.2.adoc │ ├── F2.5.adoc │ ├── S5.1.adoc │ ├── S3.6.adoc │ ├── S3.5.adoc │ ├── F4.3.adoc │ ├── F9.1.adoc │ ├── S7.2.adoc │ ├── G1.2.adoc │ ├── S3.1.adoc │ ├── G1.6.adoc │ ├── F7.4.adoc │ ├── F4.1.adoc │ ├── S3.4.adoc │ ├── S3.3.adoc │ ├── G1.4.adoc │ ├── G1.9.adoc │ ├── M1.3.adoc │ ├── S4.1.adoc │ ├── S4.4.adoc │ ├── F7.1.adoc │ ├── F4.5.adoc │ ├── S7.1.adoc │ ├── F4.2.adoc │ ├── F6.1.adoc │ ├── M1.2.adoc │ ├── F8.1.adoc │ ├── G1.1.adoc │ ├── F3.7.adoc │ ├── S4.7.adoc │ ├── S4.6.adoc │ ├── S4.5.adoc │ ├── F2.3.adoc │ ├── S2.2.adoc │ ├── M2.1.adoc │ ├── F7.3.adoc │ ├── S6.3.adoc │ ├── F3.5.adoc │ ├── F9.2.adoc │ ├── S3.7.adoc │ ├── M2.2.adoc │ ├── S2.1.adoc │ ├── S4.2.adoc │ ├── F1.1.adoc │ ├── F7.7.adoc │ ├── G1.3.adoc │ ├── F4.6.adoc │ ├── S1.1.adoc │ ├── F6.2.adoc │ ├── G1.7.adoc │ ├── G2.1.adoc │ ├── F1.2.adoc │ ├── F3.1.adoc │ ├── S2.3.adoc │ ├── F2.4.adoc │ ├── F4.4.adoc │ └── F9.3.adoc ├── made-with-kicad │ ├── upconverter.adoc │ ├── mooltipass.adoc │ ├── gh60.adoc │ ├── cseduino.adoc │ ├── ubertooth.adoc │ ├── tlnixie.adoc │ ├── electrosmart-ecg.adoc │ ├── juicyboard.adoc │ ├── vesc.adoc │ ├── makerville-knit.adoc │ ├── virtualsense.adoc │ ├── upsat.adoc │ ├── tiny-reflow-controller.adoc │ ├── atmega328-motor-board.adoc │ ├── bitcraze-crazyflie.adoc │ ├── blixten.adoc │ ├── micropendous.adoc │ ├── anavi-light-controller.adoc │ ├── anavi-light-phat.adoc │ ├── rusefi_frankenso.adoc │ ├── teres.adoc │ ├── electrosmart-iti.adoc │ ├── usbarmory.adoc │ ├── anavi-infrared-phat.adoc │ ├── mobilecg.adoc │ ├── anavi-flex.adoc │ ├── vesc-controller.adoc │ ├── jemtech-ilda-node.adoc │ ├── memtype.adoc │ ├── olinuxino.adoc │ ├── hackrf.adoc │ ├── multiadaptor.adoc │ ├── ciaa-project-picociaa.adoc │ ├── kiwisdr.adoc │ ├── venseyiot.adoc │ ├── ciaa-project-acc.adoc │ ├── ciaa-project-edu.adoc │ ├── saturn.adoc │ ├── ciaa-project-nxp.adoc │ ├── ciaa-project-fsl.adoc │ ├── opsis.adoc │ └── librem_5_dev_kit.adoc ├── discover │ ├── 3dviewer.adoc │ └── pcbnew.adoc ├── download │ ├── gnu-guix.adoc │ ├── sabayon.adoc │ ├── gentoo.adoc │ ├── arch-linux.adoc │ ├── flatpak.adoc │ └── open-suse.adoc ├── external-tools │ ├── fped.adoc │ ├── altium2kicad.adoc │ ├── eeshow.adoc │ ├── kicost.adoc │ └── stepup.adoc ├── blog │ ├── gerber-x2-support.adoc │ ├── first-feature-freeze.adoc │ ├── eeschema-gal.adoc │ ├── new-website-anno-2015.adoc │ ├── eagle-import.adoc │ ├── release-4.0.1.adoc │ ├── mask-clearance-changes.adoc │ ├── release-5.0.2.adoc │ ├── git-announcement.adoc │ ├── template-path-changes.adoc │ └── kicad-official-libraries.adoc ├── community │ └── irc.adoc └── libraries │ └── third_party.adoc ├── .gitattributes ├── TODO ├── archetypes └── post.md ├── LICENSE.adoc ├── .github └── ISSUE_TEMPLATE ├── data └── fpnaming │ ├── cap_chip.yaml │ ├── smd_chip.yaml │ ├── cap_tant_smd.yaml │ ├── fuse_smd.yaml │ ├── res_axial.yaml │ ├── fuse.yaml │ ├── cap_elec_smd.yaml │ ├── conn_generic.yaml │ ├── cap_tht.yaml │ ├── fuse_holder.yaml │ ├── conn_manu.yaml │ ├── ic_tht_dip.yaml │ ├── conn_basic.yaml │ ├── ic_gull.yaml │ ├── ic_dfn.yaml │ ├── conn_functional.yaml │ ├── conn_std.yaml │ └── ic_tht_to.yaml ├── .travis.yml └── .docker └── default.conf /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/_default/archive.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | /kicad-doc 3 | /content/docs 4 | Thumbs.db 5 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/favicon.ico -------------------------------------------------------------------------------- /static/img/klc/F4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F4.2.png -------------------------------------------------------------------------------- /static/img/klc/F4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F4.5.png -------------------------------------------------------------------------------- /static/img/klc/F6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F6.1.png -------------------------------------------------------------------------------- /static/img/klc/F7.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F7.1.png -------------------------------------------------------------------------------- /static/img/klc/F7.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F7.2.png -------------------------------------------------------------------------------- /static/img/klc/S4.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S4.6.png -------------------------------------------------------------------------------- /static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/mstile-70x70.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/favicon-96x96.png -------------------------------------------------------------------------------- /static/img/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/icons/note.png -------------------------------------------------------------------------------- /static/img/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/icons/tip.png -------------------------------------------------------------------------------- /static/img/klc/F2.4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F2.4a.png -------------------------------------------------------------------------------- /static/img/klc/F2.4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F2.4b.png -------------------------------------------------------------------------------- /static/img/klc/F4.2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F4.2a.png -------------------------------------------------------------------------------- /static/img/klc/F4.2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F4.2b.png -------------------------------------------------------------------------------- /static/img/klc/F4.3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F4.3a.png -------------------------------------------------------------------------------- /static/img/klc/F4.6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F4.6a.png -------------------------------------------------------------------------------- /static/img/klc/F5.1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F5.1a.png -------------------------------------------------------------------------------- /static/img/klc/F5.1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F5.1b.png -------------------------------------------------------------------------------- /static/img/klc/F5.2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F5.2a.png -------------------------------------------------------------------------------- /static/img/klc/F5.3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F5.3a.png -------------------------------------------------------------------------------- /static/img/klc/F6.1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F6.1b.png -------------------------------------------------------------------------------- /static/img/klc/F6.2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F6.2a.png -------------------------------------------------------------------------------- /static/img/klc/F6.2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F6.2b.png -------------------------------------------------------------------------------- /static/img/klc/F6.3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F6.3a.png -------------------------------------------------------------------------------- /static/img/klc/F6.3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F6.3b.png -------------------------------------------------------------------------------- /static/img/klc/F6.3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F6.3c.png -------------------------------------------------------------------------------- /static/img/klc/F7.1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F7.1b.png -------------------------------------------------------------------------------- /static/img/klc/F7.3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F7.3a.png -------------------------------------------------------------------------------- /static/img/klc/F7.4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F7.4a.png -------------------------------------------------------------------------------- /static/img/klc/F7.5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F7.5a.png -------------------------------------------------------------------------------- /static/img/klc/F8.1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F8.1a.png -------------------------------------------------------------------------------- /static/img/klc/F9.1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F9.1a.png -------------------------------------------------------------------------------- /static/img/klc/F9.2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F9.2a.png -------------------------------------------------------------------------------- /static/img/klc/F9.3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/F9.3a.png -------------------------------------------------------------------------------- /static/img/klc/G2.1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/G2.1a.png -------------------------------------------------------------------------------- /static/img/klc/G2.1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/G2.1b.png -------------------------------------------------------------------------------- /static/img/klc/G2.1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/G2.1c.png -------------------------------------------------------------------------------- /static/img/klc/G2.1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/G2.1d.png -------------------------------------------------------------------------------- /static/img/klc/S2.4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S2.4a.png -------------------------------------------------------------------------------- /static/img/klc/S2.4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S2.4b.png -------------------------------------------------------------------------------- /static/img/klc/S2.4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S2.4c.png -------------------------------------------------------------------------------- /static/img/klc/S3.1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.1a.png -------------------------------------------------------------------------------- /static/img/klc/S3.3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.3a.png -------------------------------------------------------------------------------- /static/img/klc/S3.3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.3b.png -------------------------------------------------------------------------------- /static/img/klc/S3.4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.4a.png -------------------------------------------------------------------------------- /static/img/klc/S3.5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.5a.png -------------------------------------------------------------------------------- /static/img/klc/S3.5b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.5b.png -------------------------------------------------------------------------------- /static/img/klc/S3.6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.6a.png -------------------------------------------------------------------------------- /static/img/klc/S3.6b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.6b.png -------------------------------------------------------------------------------- /static/img/klc/S3.8a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S3.8a.png -------------------------------------------------------------------------------- /static/img/klc/S4.2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S4.2a.png -------------------------------------------------------------------------------- /static/img/klc/S4.4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S4.4a.png -------------------------------------------------------------------------------- /static/img/klc/S5.1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S5.1a.png -------------------------------------------------------------------------------- /static/img/klc/S5.2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S5.2a.png -------------------------------------------------------------------------------- /static/img/klc/S6.3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S6.3a.png -------------------------------------------------------------------------------- /static/img/klc/S7.1_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S7.1_a.png -------------------------------------------------------------------------------- /static/img/klc/S7.2_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/S7.2_a.png -------------------------------------------------------------------------------- /static/img/post/bm_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/post/bm_01.jpg -------------------------------------------------------------------------------- /static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/mstile-144x144.png -------------------------------------------------------------------------------- /static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/mstile-150x150.png -------------------------------------------------------------------------------- /static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/mstile-310x150.png -------------------------------------------------------------------------------- /static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/mstile-310x310.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/fonts/font-linux.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/fonts/font-linux.eot -------------------------------------------------------------------------------- /static/fonts/font-linux.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/fonts/font-linux.ttf -------------------------------------------------------------------------------- /static/fonts/font-linux.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/fonts/font-linux.woff -------------------------------------------------------------------------------- /static/img/about/glesys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/about/glesys.png -------------------------------------------------------------------------------- /static/img/icons/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/icons/caution.png -------------------------------------------------------------------------------- /static/img/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/icons/warning.png -------------------------------------------------------------------------------- /static/fonts/font-linux.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/fonts/font-linux.woff2 -------------------------------------------------------------------------------- /static/img/about/cern-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/about/cern-logo.png -------------------------------------------------------------------------------- /static/img/about/rpi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/about/rpi-logo.png -------------------------------------------------------------------------------- /static/img/icons/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/icons/important.png -------------------------------------------------------------------------------- /static/img/klc/to-body_dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/kicad-website/master/static/img/klc/to-body_dim.png -------------------------------------------------------------------------------- /layouts/partials/github_release_link.html: -------------------------------------------------------------------------------- 1 |
6 |
7 |
--------------------------------------------------------------------------------
/static/display/KICAD/Download/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/KICAD/KiCad+EDA+Software+Suite/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/KICAD/Platforms/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/KICAD/Download+Kicad/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/pages/viewrecentblogposts.action/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/KICAD/Installing+KiCad/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/DEV/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/KICAD/Tutorials/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/KICAD/Windows/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/pages/viewpage.action/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/layouts/shortcodes/klcimg_full_width.html:
--------------------------------------------------------------------------------
1 | {{ $src := .Get "src" }}
2 | {{ $title := .Get "title" }}
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/static/display/DEV/Getting+Started/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/KICAD/External+Tools/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/KICAD/KiCad+Documentation/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/display/DEV/KiCad+Development/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/content/klc/F7.2.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | brief = "Footprint anchor should placed at the location of Pin-1"
3 | +++
4 |
5 | For through hole components the footprint anchor should be placed at the location of pin 1.
6 |
7 | {{< klcimg src="F7.2" title="Footprint anchor is set to location of Pin-1" >}}
--------------------------------------------------------------------------------
/content/made-with-kicad/upconverter.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Upconverter"
3 | projectimage = "/img/madewithkicad/Upconverter.jpg"
4 | projectdeveloper = "Opendous Inc."
5 | projecturl = "https://code.google.com/p/opendous/wiki/Upconverter"
6 | +++
7 |
8 | MF/HF Upconverter for Receivers
9 |
--------------------------------------------------------------------------------
/static/display/KICAD/Frequently+Asked+Questions/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/content/klc/F7.5.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | brief = "Minimum annular ring width"
3 | +++
4 |
5 | For drilled through-holes, the minimum annular ring width must be at least `0.15mm` (IPC-2221).
6 |
7 | {{< klcimg src="F7.5a" title="Annular ring" >}}
8 |
9 | The annular ring is the copper pad which remains after the hole has been drilled.
--------------------------------------------------------------------------------
/content/klc/M1.1.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | brief = "Models should be created by contributor"
3 | +++
4 |
5 | Users should only submit models they have created themselves, either manually designed or via parametric scripting tools.
6 |
7 | Contributing model data designed by a third party complicates licensing issues and should be avoided.
--------------------------------------------------------------------------------
/content/made-with-kicad/mooltipass.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Mooltipass"
3 | projectimage = "/img/madewithkicad/Mooltipass.jpg"
4 | projectdeveloper = "Mathieu Stephan"
5 | projecturl = "https://hackaday.io/project/86-mooltipass"
6 | +++
7 |
8 | An offline password keeper project created by and for the Hackaday community.
9 |
--------------------------------------------------------------------------------
/content/made-with-kicad/gh60.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | title = "GH60"
3 | projectimage = "/img/madewithkicad/GH60.jpg"
4 | projectdeveloper = "Komar's techblog"
5 | projecturl = "http://blog.komar.be/projects/gh60-programmable-keyboard/"
6 | +++
7 |
8 | GH60 is a custom programmable mechanical keyboard designed for the geekhack community.
9 |
--------------------------------------------------------------------------------
/content/klc/S3.2.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | brief = "Text fields should use a common text size of 50mils"
3 | +++
4 |
5 | . All text fields (pin name, pin number, value, reference, footprint, datasheet) should use a text size of 50mil.
6 | . Pin names and pin numbers can use a text size as small as 20mil if the symbol is small or has special geometry.
7 |
--------------------------------------------------------------------------------
/archetypes/post.md:
--------------------------------------------------------------------------------
1 | +++
2 | tags = [
3 | "go",
4 | "golang",
5 | "templates",
6 | "themes",
7 | "development",
8 | ]
9 | categories = [
10 | "Development",
11 | "golang",
12 | ]
13 | image = "/img/about-bg.jpg" #optional image - "/img/about-bg.jpg" is the default
14 | description = ""
15 | draft = true
16 | +++
17 |
18 |
--------------------------------------------------------------------------------
/content/made-with-kicad/cseduino.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | title = "CSEduino v4"
3 | projectimage = "/img/madewithkicad/cseduinov4_3d.jpg"
4 | projectdeveloper = "Joao Alves"
5 | projecturl = "https://jpralves.net/cseduino/"
6 | +++
7 |
8 | CSEduino is the answer to a very low cost DIY Arduino like board.
9 | This version has a 2-layer pcb created with kicad.
10 |
--------------------------------------------------------------------------------
/content/made-with-kicad/ubertooth.adoc:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Ubertooth One"
3 | projectimage = "/img/madewithkicad/ubertooth-one.jpg"
4 | projectdeveloper = "Great Scott Gadgets"
5 | projecturl = "http://greatscottgadgets.com/ubertoothone/"
6 | +++
7 |
8 | Ubertooth One is an open source 2.4 GHz wireless development platform suitable for Bluetooth experimentation.
9 |
--------------------------------------------------------------------------------
/layouts/partials/github_dl_link.html:
--------------------------------------------------------------------------------
1 | | Library Set | 4 |GitHub Repository | 5 |Download | 6 |
|---|
The latest complete set of official KiCad libraries are available as Git repositories at the following links. Each library set can also be downloaded as a compressed archive, for users who do not wish to use Git.
5 | 6 | {{ partial "github_lib_table.html" . }} 7 | 8 |11 | The libraries are periodically compiled into stable releases which can be downloaded from the links below. 12 |
13 | 14 | {{ partial "github_release_table.html" }} -------------------------------------------------------------------------------- /content/made-with-kicad/kiwisdr.adoc: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "KiwiSDR" 3 | projectimage = "/img/madewithkicad/kiwisdr.jpg" 4 | projectdeveloper = "John Seamons" 5 | projecturl = "http://kiwisdr.com/kiwisdr" 6 | +++ 7 | 8 | KiwiSDR is an open source and open hardware software-defined radio 9 | (SDR) covering shortwave, the longwave & AM broadcast bands, various 10 | utility stations, and amateur radio transmissions, world-wide, in the 11 | spectrum from 10 kHz to 30 MHz. The KiwiSDR is a 12 | https://github.com/jks-prv/KiwiSDR_PCB/tree/master/KiwiSDR[custom 13 | circuit board] you connect to an inexpensive BeagleBone Black or Green 14 | computer. 15 | -------------------------------------------------------------------------------- /content/external-tools/eeshow.adoc: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "eeshow" 3 | toolimage = "/img/external-tools/eeshow.png" 4 | tooldeveloper = "Werner Almesberger" 5 | toolurl = "http://neo900.org/stuff/eeshow/" 6 | +++ 7 | 8 | Eeshow is a collection of programs that read schematics made by 9 | KiCad's Eeschema. Eeshow can be used as interactive viewer, or as a 10 | command-line tool to convert schematics to PNG, PDF, Postscript, EPS, 11 | or FIG. 12 | 13 | Eeshow can show the differences between two versions of schematics 14 | sheets and it can retrieve files directly from a git repository. 15 | 16 | Eeshow was developed as part of the Neo900 project. 17 | -------------------------------------------------------------------------------- /content/klc/F4.2.adoc: -------------------------------------------------------------------------------- 1 | +++ 2 | brief = "Pin 1 should be located at the top left" 3 | +++ 4 | 5 | Footprints should be oriented such that Pin 1 is located in the upper left corner (IPC-7351). 6 | 7 | {{< klcimg src="F4.2" title="Pin 1 aligned top left" >}} 8 | 9 | **Exceptions** 10 | 11 | Where footprints cannot be oriented with pin 1 in the top-left quadrant, pin 1 should be aligned to the top 12 | 13 | {{< klcimg src="F4.2a" title="Align to top if top-left not possible" >}} 14 | 15 | Two terminal footprints should be aligned with pin 1 on the left side 16 | 17 | {{< klcimg src="F4.2b" title="Two terminal footprints align pin 1 on left" >}} 18 | -------------------------------------------------------------------------------- /content/external-tools/kicost.adoc: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "KiCost" 3 | toolimage = "/img/external-tools/kicost.png" 4 | tooldeveloper = "Dave Vandenbout (author), Hildo Guillardi Jr. (collaborator)" 5 | toolurl = "https://github.com/xesscorp/KiCost" 6 | +++ 7 | 8 | KiCost is intended to be run as a script for generating part-cost spreadsheets for circuit boards developed with KiCad. It works by scraping part distributor websites to get part pricing. Additionally, KiCost supports other bill of material files from other EDAs which is useful for older projects and it can even handle hand-made CSV files. KiCost also comes with a graphical user interface in addition to command line. 9 | -------------------------------------------------------------------------------- /layouts/_default/summary.html: -------------------------------------------------------------------------------- 1 |16 | Back 17 |
18 |3 | The following footprint naming conventions should be used as examples for naming {{ $type }} footprints. 4 |
5 |6 | If you do not find an appropriate convention that matches a particular footprint type, either contact the KiCad library team or try to match a convention set by existing library components. 7 |
8 | 9 |10 | In the entries below, variable fields are denoted as follows: 11 |
12 | {{- $colorMandatory := "#DD0055" -}} 13 | {{- $colorOptional := "#2567D1" -}} 14 |
15 | - Fixed fields
16 | - Mandatory fields
17 | - Optional fields
18 |
16 | For even fresher news, look at the kicad-developers mailing-list. 17 |
18 || Prefix | 4 |Field Description | 5 |
|---|---|
| Ball | BGA Ball diameter | 8 |
| Clearance | Clearance between pin rows | 11 |
| Drill | Drill diameter | 14 |
| Layout | Specific footprint layout e.g. Layout3x7 for a BGA with 21 balls arranged in 3 columns and 7 rows |
17 |
| Lead | Lead dimensions | 20 |
| Mask | Custom soldermask dimensions | 23 |
| Pad | Custom pad dimensions | 26 |
| Tab | Tab dimensions | 29 | 30 |
{{ .Content }}
21 | View Tool 22 |{{ .Content }}
21 | View Project 22 |31 | Back 32 |
33 |17 |
13 | 14 | Maybe these links will help you? Otherwise please 15 | tell us on Github. 16 |
17 |Home page introduction,
Installation steps on the download page,
Getting started tutorial,
| Descriptor | 4 |Footprint type | 5 |
|---|---|
| BGA | Ball grid array |
| C | Capacitor, non polarized |
| CP | Capacitor, polarized |
| DFN | Dual flat no-lead |
| D | Diode |
| LCC | Leaded chip carrier |
| LGA | Land grid array |
| LED | Light emitting diode |
| PLCC | Plastic leaded chip carrier |
| QFN | Quad flat no-lead |
| QFP | Quad flat package |
| R | Resistor |
| SOIC | Small outline integrated circuit |
| SON | Small outline no-lead |
| SOP | Small output package |
| SSOP | Shrink small output package |
| TQFP | Thin quad flat package |
| TSOP | Thin small outline package |
| TSSOP | Thin shrink small outline package |
| Designator | 4 |Component Type | 5 |
|---|---|
| A | Sub-assembly or plug-in module |
| BT | Battery |
| C | Capacitor |
| D | Diode |
| DS | Display |
| F | Fuse |
| FB | Ferrite bead |
| FD | Fiducial |
| FL | Filter |
| H | Hardware (mounting screws, etc) |
| J | Jack, fixed part of a connector pair |
| JP | Jumper / link |
| K | Relay |
| L | Inductor, coil, ferrite bead |
| LS | Loudspeaker or buzzer |
| M | Motor |
| MK | Microphone |
| P | Plug, movable part of a connector pair |
| Q | Transistor |
| R | Resistor |
| RN | Resistor network |
| RT | Thermistor |
| RV | Varistor |
| SW | Switch |
| T | Transformer |
| TC | Thermocouple |
| TP | Test point |
| U | Integrated circuit (IC) |
| Y | Crystal / oscillator |
| Z | Zener diode |