Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fb45206
Add manufactured PCB design
nbelzer Apr 13, 2025
cc81ab6
Remove data line pull-ups
nbelzer Apr 13, 2025
3a70a81
Make space for stepper connector
nbelzer Apr 13, 2025
0758e23
Re-route U1 bypass capacitor
nbelzer Apr 13, 2025
4d306d0
Add notch to board design
nbelzer Apr 13, 2025
c86c4a1
Add gitignore for KiCad projects
nbelzer Apr 13, 2025
04b2608
Update version number
nbelzer Apr 13, 2025
217e58a
Add 3.3v line for PCF8575
nbelzer Apr 30, 2025
e4e3dd4
Use two pin address connectors with pulldown resistor
nbelzer May 7, 2025
83be3cc
Replace linear regulator with AP2112K
nbelzer May 7, 2025
0f367ac
Accomodate linear regulator and new address pins on PCB
nbelzer May 7, 2025
f189ee8
Add missing part numbers
nbelzer May 7, 2025
984e034
Minor pcb changes
nbelzer May 7, 2025
301094f
Add missing part number for address pins
nbelzer May 7, 2025
e98daeb
Correct AP2112K capacitors
nbelzer May 15, 2025
c6c43da
Add pull-ups between PCF8575 and ULN2003
nbelzer May 15, 2025
15fd47d
Use 2x3 connector for address pins
nbelzer Jun 3, 2025
180ad78
Rewire PCB
nbelzer Jun 3, 2025
5fa7f0f
Eliminate 3.3v line from PCB
nbelzer Oct 11, 2025
440df03
Use pinsocket and headers for board to board connector
nbelzer Oct 11, 2025
a2201cd
Update pin and header parts
nbelzer Nov 14, 2025
5f2e935
Add optional data lines pull-up
nbelzer Nov 16, 2025
193f5dc
Rename pull-up jumper
nbelzer Nov 16, 2025
0cddc02
Fix floating pull-ups
nbelzer Feb 9, 2026
ab034ea
Remove pull-ups entirely
nbelzer Mar 1, 2026
ce712e9
Extend PCB to 37mm
nbelzer Mar 1, 2026
23ac4a3
Bump printed version number
nbelzer Mar 1, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions pcb/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# For PCBs designed using KiCad: https://www.kicad.org/
# Format documentation: https://kicad.org/help/file-formats/

# Temporary files
*.000
*.bak
*.bck
*.kicad_pcb-bak
*.kicad_sch-bak
*-backups
*.kicad_prl
*.sch-bak
*~
_autosave-*
*.tmp
*-save.pro
*-save.kicad_pcb
fp-info-cache
~*.lck
\#auto_saved_files#

# Netlist files (exported from Eeschema)
*.net

# Autorouter files (exported from Pcbnew)
*.dsn
*.ses

# Exported BOM files
*.xml
*.csv
9 changes: 9 additions & 0 deletions pcb/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# SplitFlap PCB

This project contains a PCB design (made in KiCad) for the SplitFlap
display. The PCB is designed to support a single display and to connect
to the ESP32 or the next board using JST connectors.

Note that the PCB design is still in development and was designed by
someone without any prior experience in PCB design. Any improvements or
feedback is welcome.
Loading