changed JST connector to horizontal, 5V -> 24V

This commit is contained in:
cpu
2026-06-03 22:45:07 +02:00
parent bf50515bc6
commit a606c41bf7
10 changed files with 17272 additions and 16018 deletions

View File

@@ -13,20 +13,23 @@ PCB_FILE="$1"
mkdir -p "$GERBERS_DIR"
# export drill, front and back layers as gerber files
# Export drill, front and back layers as gerber files.
echo "Exporting gerbers..."
kicad-cli pcb export drill -o "$GERBERS_DIR" "$PCB_FILE"
kicad-cli pcb export gerbers -o "$GERBERS_DIR" -l Front "$PCB_FILE"
kicad-cli pcb export gerbers -o "$GERBERS_DIR" -l Back "$PCB_FILE"
kicad-cli pcb export gerbers -o "$GERBERS_DIR" -l Edge.Cuts "$PCB_FILE"
# Export outlines of the penelized boards only; Use the layer 'User.Eco1'.
# Export outlines of the penelized board i.e. use the layer 'User.Eco1'.
echo "Exporting panelized outlines from layer 'User.Eco1'..."
python3 export_panel_outlines_gerber.py \
--layers User.Eco1 \
--output "$GERBERS_DIR" \
"$PCB_FILE"
# set input filenames and all milling parameters in `millproject` config file
# Input layers/filenames and all milling/drilling parameters are taken from the config file: 'millproject'.
echo "Exporting Gcode..."
docker run --rm -i -t \
-u "$(id -u):$(id -g)" \
-v "$(pwd):/data" \
ptodorov/pcb2gcode
ptodorov/pcb2gcode