forked from sinara-hw/kirdy
Add Front Panel Mechanical Design and Drawings
- Complete the Assembly in FreeCAD - Add Technical Drawings, Assembly Drawings, 3D model for production - Update text markings on KiCad
This commit is contained in:
parent
3b7fbdb2be
commit
71f2a39713
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
64310
Panel/Marking.dxf
64310
Panel/Marking.dxf
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,10 @@
|
|||
# Kirdy Front Panel
|
||||
|
||||
## Text Markings
|
||||
- Font: PrisonGothicPro-Medium.otf
|
||||
- Drawn in KiCAD 7
|
||||
|
||||
## Mechanical Design and Drawings
|
||||
- Drawn in FreeCAD 0.21.2 with a2plus and Exploded Assembly Workbench installed
|
||||
- Reference Assembly Kit: nVent SCHROFF 20848-668
|
||||
- Reference drawings: https://git.m-labs.hk/sinara-hw/front-panels/src/branch/master/Kasli_SOC-vNone
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -179,7 +179,7 @@
|
|||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "front_panel.kicad_pro",
|
||||
"filename": "kirdy_front_panel_markings.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
Binary file not shown.
18259
kirdy.kicad_pcb
18259
kirdy.kicad_pcb
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,15 @@
|
|||
import os
|
||||
|
||||
dir1 = "./production/svg"
|
||||
dir2 = "./production/svg_org"
|
||||
|
||||
svg_sch_files = os.popen("ls ./production/svg").read().split("\n")
|
||||
svg_org_sch_files = os.popen("ls ./production/svg_org").read().split("\n")
|
||||
|
||||
print(svg_sch_files)
|
||||
print(svg_org_sch_files)
|
||||
for org_svg in svg_org_sch_files:
|
||||
print("#############")
|
||||
#print(os.path.join('./production/svg', svg))
|
||||
print(os.path.join('./production/svg', org_svg))
|
||||
os.system(f"python -m scripts.k-eediff-svg {os.path.join('./production/svg', org_svg)} {os.path.join('./production/svg_org', org_svg)}")
|
Loading…
Reference in New Issue