Skip to content

Commit

Permalink
add alternative parts table by @martinberlin
Browse files Browse the repository at this point in the history
  • Loading branch information
vroland committed Nov 6, 2023
1 parent 0f1bac8 commit eeb9a43
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ build/boards/%: $$*/$$(notdir $$*).kicad_pcb $$*/$$(notdir $$*).kicad_sch
xz $@_model.step
touch $@

build/web/index.html: README.md present/template/index.html $(addprefix build/boards/,$(BOARDS))
build/page.md: README.md part_alternatives.md
cat $^ > $@

build/web/index.html: build/page.md present/template/index.html $(addprefix build/boards/,$(BOARDS))
mkdir -p build/web
kikit present boardpage \
-d $< \
Expand Down
13 changes: 13 additions & 0 deletions part_alternatives.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Alternative Parts

Some components can be swapped for more cheaper or more available parts,
without impacting the functionality of the epdiy controlling board.
If you find other alternatives that may be useful to others, please submit a pull request!

| Part name | Replacement Name | Default LCSC ID | Replacement ID | Comments |
| ------------- | ---------------- | ----------------- | --------------- | --------- |
| TPS651851RSLR | TPS65185RSLR | C139292 | C702311 | Only if your panel size <= 9" |
| XF2M-3315-1A** | FH12-33S-0.5SH(55) | C231420 | C597986 | Omron connector is better quality than Hirose replacement |
| MBR0540T1G | B5819W SL | C8598 | C21353 | Much cheaper diode when ordering from LCSC |

** IMPORTANT: XF2M-3315-1A replacement C597986 uses a slightly different footprint. It has to be updated in KiCad PCB before sending fabrication files to production.

1 comment on commit eeb9a43

@martinberlin
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great idea to move it to a markup file, like that is easier to collaborate!

Please sign in to comment.