diff options
31 files changed, 22228 insertions, 2742 deletions
diff --git a/.gitmodules b/.gitmodules index cba18ca..e3ae6e6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "pcb/libraries/kicad-symbols"] - path = pcb/libraries/kicad-symbols - url = https://gitlab.com/kicad/libraries/kicad-symbols.git +[submodule "pcb/parts-kicad"] + path = pcb/parts-kicad + url = https://cgit.xengineering.eu/parts-kicad @@ -32,18 +32,12 @@ $(TARGET_DIR): debug rm -rf $@ mkdir -p $@ install -Dm 644 $(BUILD_DIR)/doc/documentation.pdf $@ - install -Dm 644 $(BUILD_DIR)/mech/assembly.gcode $@ - install -Dm 644 $(BUILD_DIR)/mech/assembly.stl $@ - install -Dm 644 $(BUILD_DIR)/mech/production.gcode $@ - install -Dm 644 $(BUILD_DIR)/mech/production.stl $@ - install -Dm 644 $(BUILD_DIR)/mech/pcb_case/tolerance_tests.gcode $@ - install -Dm 644 $(BUILD_DIR)/mech/pcb_case/tolerance_tests.stl $@ -debug: doc mech +debug: doc pcb .PHONY: clean clean: rm -rf $(BUILD_DIR) include doc/doc.mk -include mech/mech.mk +include pcb/pcb.mk @@ -13,15 +13,6 @@ The following listing provides an overview of the repository structure: │ ├── LICENSE.txt │ └── documentation.tex ├── Makefile -├── mech -│ ├── assembly.scad -│ ├── LICENSE.txt -│ ├── parameters.scad -│ ├── pcb_case -│ │ └── tolerance_tests.scad -│ ├── production.scad -│ └── prusa-slicer -│ └── anycubic_i3_mega_s.ini └── README.md ``` @@ -33,10 +24,6 @@ The `doc` folder contains everything to build the PDF documentation which is generated during a full build. It contains all documentation aspects except the content covered in the given `README`. -Mechanical design is handled inside the `mech` directory. It consists of source -files for OpenSCAD aswell as configuration file(s) for the Prusa Slicer -software. - ## Build instructions To build the contents of this repository the following software tools are @@ -47,8 +34,6 @@ required: - GNU make - pdflatex - Inkscape -- OpenSCAD -- Prusa Slicer A full build can be started with `make`. The results can be removed with `make clean`. diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..b6a7a31 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,3 @@ +# Release checklist + +- [ ] Update resistor values for PCB version detection diff --git a/mech/assembly.scad b/mech/assembly.scad deleted file mode 100644 index 756e539..0000000 --- a/mech/assembly.scad +++ /dev/null @@ -1,18 +0,0 @@ -include <parameters.scad> - -use <panel_front.scad> - -use <pcb_case/pcb.scad> -use <pcb_case/shell.scad> -use <pcb_case/panel.scad> - -module assembly() { - pcb(pcb_dim, drillings, margins, t); - - pcb_case_shell_bottom(pcb_dim, drillings, margins, t); - pcb_case_shell_top(pcb_dim, margins, t); - pcb_case_panel_back(pcb_dim, margins, t); - panel_front(pcb_dim, margins, t); -} - -assembly(); diff --git a/mech/mech.mk b/mech/mech.mk deleted file mode 100644 index ca39a7c..0000000 --- a/mech/mech.mk +++ /dev/null @@ -1,17 +0,0 @@ -PRINTER := anycubic_i3_mega_s -PRINTER_CONFIG := $(PRINTER:%=mech/prusa-slicer/%.ini) -MECH_BUILD_DIR := $(BUILD_DIR)/mech -PARTS := assembly production pcb_case/tolerance_tests -STL := $(PARTS:%=$(MECH_BUILD_DIR)/%.stl) -GCODE := $(PARTS:%=$(MECH_BUILD_DIR)/%.gcode) - -.PHONY: mech -mech: $(GCODE) $(STL) - -$(BUILD_DIR)/%.gcode: $(BUILD_DIR)/%.stl - mkdir -p $(dir $@) - prusa-slicer --load $(PRINTER_CONFIG) --output $@ --export-gcode $< - -$(BUILD_DIR)/%.stl: %.scad - mkdir -p $(dir $@) - openscad --hardwarnings --export-format binstl -o $@ $< diff --git a/mech/panel_front.scad b/mech/panel_front.scad deleted file mode 100644 index da06927..0000000 --- a/mech/panel_front.scad +++ /dev/null @@ -1,70 +0,0 @@ -use <pcb_case/conversion.scad> -use <pcb_case/panel.scad> - -tol = 2; - -module panel_front(pcb_dim, margins, t) { - dim = dim_pcb_to_case(pcb_dim, margins, t); - x_off = dim[0]-2*t; - - difference() { - pcb_case_panel_front(pcb_dim, margins, t); - mini_hdmi_hole(pcb_dim, margins, t); - for(v=[ - [usb_max_y-usb_max_delta_y-tol/2, 0.75*t], - [usb_max_y-usb_delta_y-tol/2, t] - ]) { - translate([0, v[0], 0]) { - micro_usb_hole(pcb_dim, margins, t, v[1]); - } - } - for(y = [cinch_min_y+0.5*cinch_d, cinch_min_y+1.5*cinch_d+cinch_delta_y]) { - translate([0, y, 0]) { - cinch_hole(pcb_dim, margins, t); - } - } - } -} - -hdmi_delta_y = 11.8; -hdmi_delta_z = 3.9; -hdmi_max_y = 31.7; -hdmi_max_z = 13.7; -module mini_hdmi_hole(pcb_dim, margins, t) { - case_dim = dim_pcb_to_case(pcb_dim, margins, t); - translate([ - case_dim[0]-2*t, - hdmi_max_y-hdmi_delta_y-tol/2, - hdmi_max_z-hdmi_delta_z-tol/2]) { - cube([t, hdmi_delta_y+tol, hdmi_delta_z+tol]); - } -} - -usb_delta_y = 8; -usb_max_delta_y = 20.6; -usb_delta_z = 3; -usb_max_y = 71.55; -usb_max_z = 12.7; -module micro_usb_hole(pcb_dim, margins, t, dx) { - echo(dx); - case_dim = dim_pcb_to_case(pcb_dim, margins, t); - translate([ - case_dim[0]-2*t, - 0, - usb_max_z-usb_delta_z-tol/2]) { - cube([dx, usb_delta_y+tol, usb_delta_z+tol]); - } -} - -cinch_d = 8.3; -cinch_min_y = 45; -cinch_delta_y = 8.2; -cinch_max_z = 34.25; -module cinch_hole(pcb_dim, margins, t) { - case_dim = dim_pcb_to_case(pcb_dim, margins, t); - translate([case_dim[0]-2*t, 0, cinch_max_z-cinch_d/2]) { - rotate([0, 90, 0]) { - cylinder(d=cinch_d+tol, h=t, $fn=30); - } - } -} diff --git a/mech/parameters.scad b/mech/parameters.scad deleted file mode 100644 index 9fda8b4..0000000 --- a/mech/parameters.scad +++ /dev/null @@ -1,21 +0,0 @@ -include <pcb_case/bolt.scad> - -t = 1.65; - -pcb_dim = [30, 65, 1.4]; - -margins = [ - [1, 0.3], - [3.6, 1.7], - [bolt_l-t-pcb_dim[2], 27] -]; - -base_drilling = [3.5, 3.5]; -dx = [23, 0]; -dy = [0, 58]; -drillings = [ - base_drilling, - base_drilling + dx, - base_drilling + dy, - base_drilling + dx + dy -]; diff --git a/mech/pcb_case/bolt.scad b/mech/pcb_case/bolt.scad deleted file mode 100644 index 4c26c30..0000000 --- a/mech/pcb_case/bolt.scad +++ /dev/null @@ -1,13 +0,0 @@ -// bolt based on ISO 4762 (https://www.fasteners.eu/us/standards/ISO/4762) -bolt_k = 3; -bolt_l = 10; -bolt_dk = 5.5; -bolt_ds = 3; -bolt_ds_tol = 0.45; - -module bolt() { - union() { - cylinder(d=bolt_ds, h=bolt_l, $fn=30); - translate([0, 0, -bolt_ds]) cylinder(d=bolt_dk, h=bolt_ds, $fn=30); - } -} diff --git a/mech/pcb_case/conversion.scad b/mech/pcb_case/conversion.scad deleted file mode 100644 index 69c3c3b..0000000 --- a/mech/pcb_case/conversion.scad +++ /dev/null @@ -1,8 +0,0 @@ -include <bolt.scad> -include <nut.scad> - -function dim_pcb_to_case(pcb_dim, margins, t) = [ - pcb_dim[0]+margins[0][0]+margins[0][1]+4*t, - pcb_dim[1]+margins[1][0]+margins[1][1]+2*t+2*(bolt_l-t), - pcb_dim[2]+margins[2][0]+margins[2][1]+4*t -]; diff --git a/mech/pcb_case/nut.scad b/mech/pcb_case/nut.scad deleted file mode 100644 index 0768b6a..0000000 --- a/mech/pcb_case/nut.scad +++ /dev/null @@ -1,7 +0,0 @@ -nut_h = 3; -nut_d = 4.15; -nut_d_tol = 0.2; - -module nut() { - cylinder(d=nut_d,h=nut_h); -} diff --git a/mech/pcb_case/panel.scad b/mech/pcb_case/panel.scad deleted file mode 100644 index eef0b28..0000000 --- a/mech/pcb_case/panel.scad +++ /dev/null @@ -1,28 +0,0 @@ -include <nut.scad> - -use <conversion.scad> -use <rounded_cube.scad> - -panel_dim_0_tol = 0.3; -panel_dim_1_2_tol = 0.45; - -module pcb_case_panel(pcb_dim, margins, t) { - dim = dim_pcb_to_case(pcb_dim, margins, t); - - rounded_cube( - dim=[t, dim[1]-2*t, dim[2]-2*t], - radius=t - ); -} - -module pcb_case_panel_back(pcb_dim, margins, t) { - translate([t, t, t]) - pcb_case_panel(pcb_dim, margins, t); -} - -module pcb_case_panel_front(pcb_dim, margins, t) { - dim = dim_pcb_to_case(pcb_dim, margins, t); - - translate([dim[0]-2*t, t, t]) - pcb_case_panel(pcb_dim, margins, t); -} diff --git a/mech/pcb_case/pcb.scad b/mech/pcb_case/pcb.scad deleted file mode 100644 index 7b24131..0000000 --- a/mech/pcb_case/pcb.scad +++ /dev/null @@ -1,14 +0,0 @@ -include <bolt.scad> -include <nut.scad> - -module pcb(dim, drillings, margins, t) { - translate([2*t+margins[0][0], bolt_l+margins[1][0], t+margins[2][0]]) { - difference() { - cube([dim[0], dim[1], dim[2]]); - for (drilling = drillings) { - translate([drilling[0], drilling[1], 0]) - cylinder(d=3, h=dim[2], $fn=30); - } - } - } -} diff --git a/mech/pcb_case/rounded_cube.scad b/mech/pcb_case/rounded_cube.scad deleted file mode 100644 index acd50e7..0000000 --- a/mech/pcb_case/rounded_cube.scad +++ /dev/null @@ -1,12 +0,0 @@ -module rounded_cube(dim, radius) { - range_y = [radius, dim[1]-radius]; - range_z = [radius, dim[2]-radius]; - height = dim[0]; - - hull() { - for (y=range_y, z=range_z) { - translate([0,y,z]) rotate([0,90,0]) - cylinder(r=radius, h=height, $fn=30); - } - } -} diff --git a/mech/pcb_case/shell.scad b/mech/pcb_case/shell.scad deleted file mode 100644 index 18139f6..0000000 --- a/mech/pcb_case/shell.scad +++ /dev/null @@ -1,116 +0,0 @@ -include <bolt.scad> -include <nut.scad> -include <panel.scad> - -use <conversion.scad> -use <rounded_cube.scad> - -module shell_base(pcb_dim, margins, t) { - dim = dim_pcb_to_case(pcb_dim, margins, t); - - difference() { - // full body - rounded_cube(dim=dim, radius=t); - - // cut away upper half - translate([0,0,dim[2]/2]) - cube([dim[0], dim[1], dim[2]/2]); - - // main PCB space - translate([3*t, t, t]) - rounded_cube([dim[0]-6*t, dim[1]-2*t, dim[2]-2*t], t); - - // remove front and back - translate([0, 2*t, 2*t]) - rounded_cube([dim[0], dim[1]-4*t, dim[2]-4*t], t); - - // panel holder - for (x_off = [t-panel_dim_0_tol/2, dim[0]-2*t-panel_dim_0_tol/2]) { - translate([x_off, t-panel_dim_0_tol/2, t-panel_dim_0_tol/2]) { - rounded_cube( - [ - t+panel_dim_0_tol, - dim[1]-2*t+panel_dim_1_2_tol, - dim[2]-2*t+panel_dim_1_2_tol - ], - t - ); - } - } - - // bolt drillings - for (x = [dim[0]/4, dim[0]-dim[0]/4]) { - translate([x,0,dim[2]/2-1.5*bolt_ds]) - rotate([-90,0,0]) - cylinder(d=bolt_ds+bolt_ds_tol, h=1.1*t, $fn=30); - } - } -} - -module shell_connector(pcb_dim, margins, t) { - dim = dim_pcb_to_case(pcb_dim, margins, t); - - size_x = dim[0]-6*t; - size_y = bolt_l-t; - size_z = dim[2]/2+3*bolt_ds; - - difference () { - // base body - translate([3*t,dim[1]-t-size_y,0]) - cube([size_x,size_y,size_z]); - - // bolt holes - for (x = [dim[0]/4, dim[0]-dim[0]/4]) { - translate([x,dim[1]-t,dim[2]/2+1.5*bolt_ds]) - rotate([90,0,0]) - cylinder(d=bolt_ds+bolt_ds_tol, h=size_y, $fn=30); - } - - // nut holes - for (x = [dim[0]/4, dim[0]-dim[0]/4]) { - translate([x, dim[1]-t-size_y, dim[2]/2+1.5*bolt_ds]) - rotate([-90,0,0]) - cylinder(d=nut_d+nut_d_tol, h=nut_h, $fn=30); - } - } - - echo(min_shell_bolt_length=t+size_y); -} - -module pcb_case_shell(pcb_dim, drillings, margins, t) { - difference () { - union() { - shell_base(pcb_dim, margins, t); - shell_connector(pcb_dim, margins, t); - for (drilling = drillings) { - translate([ - 2*t+margins[0][0]+drilling[0], - bolt_l+margins[1][0]+drilling[1], - 0 - ]) cylinder(d=nut_d+2, h=t+margins[2][0], $fn=30); - } - } - for (drilling = drillings) { - translate([ - 2*t+margins[0][0]+drilling[0], - bolt_l+margins[1][0]+drilling[1], - 0 - ]) { - cylinder(d=bolt_ds+bolt_ds_tol, h=t+margins[2][0], $fn=30); - cylinder(d=nut_d+nut_d_tol, h=nut_h, $fn=30); - } - } - } -} - -module pcb_case_shell_bottom(pcb_dim, drillings, margins, t) { - pcb_case_shell(pcb_dim, drillings, margins, t); -} - -module pcb_case_shell_top(pcb_dim, margins, t) { - dim = dim_pcb_to_case(pcb_dim, margins, t); - - translate([0, dim[1], dim[2]]) - rotate([180,0,0]) - pcb_case_shell(pcb_dim, [], margins, t); -} diff --git a/mech/pcb_case/spacer.scad b/mech/pcb_case/spacer.scad deleted file mode 100644 index e7eba3a..0000000 --- a/mech/pcb_case/spacer.scad +++ /dev/null @@ -1,10 +0,0 @@ -include <bolt.scad> - -spacer_h = 11; - -module spacer() { - difference() { - cylinder(d=bolt_dk, h=spacer_h, $fn=30); - cylinder(d=bolt_ds+bolt_ds_tol, h=spacer_h, $fn=30); - } -} diff --git a/mech/pcb_case/tolerance_tests.scad b/mech/pcb_case/tolerance_tests.scad deleted file mode 100644 index 94911cd..0000000 --- a/mech/pcb_case/tolerance_tests.scad +++ /dev/null @@ -1,86 +0,0 @@ -include <bolt.scad> -include <nut.scad> -include <panel.scad> - -use <rounded_cube.scad> - -t = 2; -step_width = 0.15; - -module bolt_drilling() { - steps = 2; - - for(i = [-steps : steps]) { - tol = bolt_ds_tol + i * step_width; - echo(bolt_ds_tol=tol); - translate([i*5*bolt_ds,0,0]) - difference() { - cube([5*bolt_ds, 5*bolt_ds, t]); - translate([2.5*bolt_ds,2.5*bolt_ds,0]) { - cylinder(d=bolt_ds+tol,h=t,$fn=50); - } - } - } -} - -module nut_drilling() { - steps = 2; - - for(i = [-steps : steps]) { - tol = nut_d_tol + i * step_width; - echo(nut_d_tol=tol); - translate([i*5*nut_d,0,0]) - difference() { - cube([5*nut_d, 5*nut_d, 2*nut_h]); - translate([2.5*nut_d,2.5*nut_d,0]) { - union() { - cylinder(d=bolt_ds+bolt_ds_tol,h=2*nut_h,$fn=50); - translate([0,0,nut_h]) - cylinder(d=tol+nut_d,h=nut_h,$fn=50); - } - } - } - } -} - -module panel_thickness() { - steps = 2; - - height = 2*t; - - for(i = [-steps : steps]) { - tol = panel_dim_0_tol + i * step_width; - echo(panel_dim_0_tol=tol); - translate([i*5*t,0,0]) - difference() { - cube([5*t, 5*t, height]); - translate([2*t, 0, t]) { - cube([t+tol, 5*t, t]); - } - } - } -} - -module panel_width_height() { - steps = 2; - - height = 3*t; - - for(i = [-steps : steps]) { - tol = panel_dim_1_2_tol + i * step_width; - echo(panel_dim_1_2_tol=tol); - translate([i*3*t,0,0]) - difference() { - cube([3*t, 8*t, height]); - translate([t, t-tol/2, t]) { - rounded_cube([t+panel_dim_0_tol, 6*t+tol, 6*t+tol], t); - } - } - } -} - -bolt_drilling(); -translate([0, 20, 0]) nut_drilling(); -translate([0, 70, 0]) panel_thickness(); -translate([0, 50, 0]) panel_width_height(); -translate([0, 85, 0]) rotate([0, -90, 0]) rounded_cube([t, 6*t, 6*t], t); diff --git a/mech/production.scad b/mech/production.scad deleted file mode 100644 index 5d04fbd..0000000 --- a/mech/production.scad +++ /dev/null @@ -1,38 +0,0 @@ -include <parameters.scad> - -use <panel_front.scad> - -use <pcb_case/conversion.scad> -use <pcb_case/shell.scad> -use <pcb_case/panel.scad> -use <pcb_case/spacer.scad> - -module production() { - dim = dim_pcb_to_case(pcb_dim, margins, t); - spacing = 5; - - pcb_case_shell_bottom(pcb_dim, drillings, margins, t); - - translate([-spacing, 0, 0]) - rotate([0, 180, 0]) - translate([0, 0, -dim[2]]) - pcb_case_shell_top(pcb_dim, margins, t); - - translate([-spacing, dim[1]+spacing, 0]) - rotate([0, -90, 0]) - translate([-t, -t, -t]) - pcb_case_panel_back(pcb_dim, margins, t); - - translate([0, dim[1]+spacing, t]) - rotate([0, 90, 0]) - translate([2*t-dim[0], -t, -t]) - panel_front(pcb_dim, margins, t); - - for(i = [0:3]) { - translate([dim[0]+bolt_dk/2+spacing, bolt_dk/2+i*(bolt_dk+spacing), 0]) { - spacer(); - } - } -} - -production(); diff --git a/mech/prusa-slicer/anycubic_i3_mega_s.ini b/mech/prusa-slicer/anycubic_i3_mega_s.ini deleted file mode 100644 index 10abab4..0000000 --- a/mech/prusa-slicer/anycubic_i3_mega_s.ini +++ /dev/null @@ -1,331 +0,0 @@ -# generated by PrusaSlicer 2.7.1 on 2023-12-23 at 18:21:27 UTC -arc_fitting = disabled -autoemit_temperature_commands = 1 -avoid_crossing_curled_overhangs = 0 -avoid_crossing_perimeters = 0 -avoid_crossing_perimeters_max_detour = 0 -bed_custom_model = -bed_custom_texture = -bed_shape = 0x0,210x0,210x210,0x210 -bed_temperature = 60 -before_layer_gcode = ;BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z] -between_objects_gcode = -binary_gcode = 0 -bottom_fill_pattern = monotonic -bottom_solid_layers = 5 -bottom_solid_min_thickness = 0.5 -bridge_acceleration = 1000 -bridge_angle = 0 -bridge_fan_speed = 100 -bridge_flow_ratio = 1 -bridge_speed = 25 -brim_separation = 0 -brim_type = outer_only -brim_width = 0 -color_change_gcode = M600 -colorprint_heights = -compatible_printers_condition_cummulative = "printer_notes=~/.*PRINTER_VENDOR_ANYCUBIC.*/ and printer_notes=~/.*PRINTER_MODEL_I3_MEGA.*/ and nozzle_diameter[0]==0.4";"printer_notes=~/.*PRINTER_VENDOR_ANYCUBIC.*/ and printer_notes=~/.*PRINTER_MODEL_I3_MEGA.*/" -complete_objects = 0 -cooling = 1 -cooling_tube_length = 5 -cooling_tube_retraction = 91.5 -default_acceleration = 1000 -default_filament_profile = "Generic PLA @MEGA" -default_print_profile = 0.15mm QUALITY @MEGA -deretract_speed = 50 -disable_fan_first_layers = 1 -dont_support_bridges = 1 -draft_shield = disabled -duplicate_distance = 6 -elefant_foot_compensation = 0 -enable_dynamic_fan_speeds = 0 -enable_dynamic_overhang_speeds = 0 -end_filament_gcode = "; Filament-specific end gcode" -end_gcode = G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1{if max_layer_z < max_print_height} Z{z_offset+min(max_layer_z+30, max_print_height)}{endif} E-34.0 F720 ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y105 F3000 ; park print head\nM84 ; disable motors -external_perimeter_acceleration = 0 -external_perimeter_extrusion_width = 0.45 -external_perimeter_speed = 40 -external_perimeters_first = 0 -extra_loading_move = -2 -extra_perimeters = 1 -extra_perimeters_on_overhangs = 0 -extruder_clearance_height = 35 -extruder_clearance_radius = 60 -extruder_colour = #808080 -extruder_offset = 0x0 -extrusion_axis = E -extrusion_multiplier = 1 -extrusion_width = 0.45 -fan_always_on = 1 -fan_below_layer_time = 100 -filament_colour = #FF3232 -filament_cooling_final_speed = 3.4 -filament_cooling_initial_speed = 2.2 -filament_cooling_moves = 4 -filament_cost = 25.4 -filament_density = 1.24 -filament_deretract_speed = nil -filament_diameter = 1.75 -filament_load_time = 0 -filament_loading_speed = 28 -filament_loading_speed_start = 3 -filament_max_volumetric_speed = 10 -filament_minimal_purge_on_wipe_tower = 15 -filament_multitool_ramming = 0 -filament_multitool_ramming_flow = 10 -filament_multitool_ramming_volume = 10 -filament_notes = "" -filament_ramming_parameters = "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" -filament_retract_before_travel = nil -filament_retract_before_wipe = nil -filament_retract_layer_change = nil -filament_retract_length = nil -filament_retract_length_toolchange = nil -filament_retract_lift = nil -filament_retract_lift_above = nil -filament_retract_lift_below = nil -filament_retract_restart_extra = nil -filament_retract_restart_extra_toolchange = nil -filament_retract_speed = nil -filament_settings_id = "Generic PLA @MEGA" -filament_soluble = 0 -filament_spool_weight = 0 -filament_toolchange_delay = 0 -filament_travel_lift_before_obstacle = nil -filament_travel_max_lift = nil -filament_travel_ramping_lift = nil -filament_travel_slope = nil -filament_type = PLA -filament_unload_time = 0 -filament_unloading_speed = 90 -filament_unloading_speed_start = 100 -filament_vendor = Generic -filament_wipe = nil -fill_angle = 45 -fill_density = 15% -fill_pattern = gyroid -first_layer_acceleration = 800 -first_layer_acceleration_over_raft = 0 -first_layer_bed_temperature = 65 -first_layer_extrusion_width = 0.42 -first_layer_height = 0.2 -first_layer_speed = 20 -first_layer_speed_over_raft = 30 -first_layer_temperature = 215 -full_fan_speed_layer = 0 -fuzzy_skin = none -fuzzy_skin_point_dist = 0.8 -fuzzy_skin_thickness = 0.3 -gap_fill_enabled = 1 -gap_fill_speed = 40 -gcode_comments = 0 -gcode_flavor = marlin -gcode_label_objects = octoprint -gcode_resolution = 0.0125 -gcode_substitutions = -high_current_on_filament_swap = 0 -host_type = prusalink -idle_temperature = nil -infill_acceleration = 1000 -infill_anchor = 2.5 -infill_anchor_max = 12 -infill_every_layers = 1 -infill_extruder = 1 -infill_extrusion_width = 0.45 -infill_first = 0 -infill_overlap = 25% -infill_speed = 60 -interface_shells = 0 -ironing = 0 -ironing_flowrate = 15% -ironing_spacing = 0.1 -ironing_speed = 15 -ironing_type = top -layer_gcode = ;AFTER_LAYER_CHANGE\n;[layer_z] -layer_height = 0.15 -machine_limits_usage = time_estimate_only -machine_max_acceleration_e = 10000 -machine_max_acceleration_extruding = 1250 -machine_max_acceleration_retracting = 1250 -machine_max_acceleration_travel = 1500,1250 -machine_max_acceleration_x = 3000 -machine_max_acceleration_y = 2000 -machine_max_acceleration_z = 60 -machine_max_feedrate_e = 30 -machine_max_feedrate_x = 500 -machine_max_feedrate_y = 500 -machine_max_feedrate_z = 8 -machine_max_jerk_e = 5 -machine_max_jerk_x = 10 -machine_max_jerk_y = 10 -machine_max_jerk_z = 0.4 -machine_min_extruding_rate = 0,0 -machine_min_travel_rate = 0,0 -max_fan_speed = 100 -max_layer_height = 0.36 -max_print_height = 205 -max_print_speed = 100 -max_volumetric_extrusion_rate_slope_negative = 0 -max_volumetric_extrusion_rate_slope_positive = 0 -max_volumetric_speed = 0 -min_bead_width = 85% -min_fan_speed = 100 -min_feature_size = 25% -min_layer_height = 0.07 -min_print_speed = 15 -min_skirt_length = 4 -mmu_segmented_region_interlocking_depth = 0 -mmu_segmented_region_max_width = 0 -notes = -nozzle_diameter = 0.4 -only_retract_when_crossing_perimeters = 0 -ooze_prevention = 0 -output_filename_format = {input_filename_base}_{layer_height}mm_{filament_type[0]}_{printer_model}_{print_time}.gcode -overhang_fan_speed_0 = 0 -overhang_fan_speed_1 = 0 -overhang_fan_speed_2 = 0 -overhang_fan_speed_3 = 0 -overhang_speed_0 = 15 -overhang_speed_1 = 15 -overhang_speed_2 = 20 -overhang_speed_3 = 25 -overhangs = 1 -parking_pos_retraction = 92 -pause_print_gcode = M601 -perimeter_acceleration = 800 -perimeter_extruder = 1 -perimeter_extrusion_width = 0.45 -perimeter_generator = arachne -perimeter_speed = 50 -perimeters = 2 -physical_printer_settings_id = -post_process = -print_host = -print_settings_id = 0.15mm QUALITY @MEGA -printer_model = I3MEGAS -printer_notes = Do not remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_ANYCUBIC\nPRINTER_MODEL_I3_MEGA_S\nPRINTER_HAS_BOWDEN -printer_settings_id = Anycubic i3 Mega S -printer_technology = FFF -printer_variant = 0.4 -printer_vendor = -printhost_apikey = -printhost_cafile = -raft_contact_distance = 0.1 -raft_expansion = 1.5 -raft_first_layer_density = 90% -raft_first_layer_expansion = 3 -raft_layers = 0 -remaining_times = 1 -resolution = 0 -retract_before_travel = 1.5 -retract_before_wipe = 60% -retract_layer_change = 1 -retract_length = 6 -retract_length_toolchange = 10 -retract_lift = 0.075 -retract_lift_above = 0 -retract_lift_below = 204 -retract_restart_extra = 0 -retract_restart_extra_toolchange = 0 -retract_speed = 40 -seam_position = nearest -silent_mode = 0 -single_extruder_multi_material = 0 -single_extruder_multi_material_priming = 1 -skirt_distance = 2 -skirt_height = 3 -skirts = 1 -slice_closing_radius = 0.049 -slicing_mode = regular -slowdown_below_layer_time = 20 -small_perimeter_speed = 25 -solid_infill_acceleration = 0 -solid_infill_below_area = 0 -solid_infill_every_layers = 0 -solid_infill_extruder = 1 -solid_infill_extrusion_width = 0.45 -solid_infill_speed = 50 -spiral_vase = 0 -staggered_inner_seams = 0 -standby_temperature_delta = -5 -start_filament_gcode = "; Filament gcode\n" -start_gcode = G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nG28 ; home all\nG1 Y1.0 Z0.3 F1000 ; move print head up\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 X205.0 E19 F1000\nG1 Y1.6\nG1 X5.0 E19 F1000\nG92 E0.0\n; intro line\nG1 Y2.0 Z0.2 F1000\nG1 X65.0 E9.0 F1000\nG1 X105.0 E12.5 F1000\nG92 E0.0 -support_material = 0 -support_material_angle = 0 -support_material_auto = 1 -support_material_bottom_contact_distance = 0 -support_material_bottom_interface_layers = -1 -support_material_buildplate_only = 0 -support_material_closing_radius = 2 -support_material_contact_distance = 0.1 -support_material_enforce_layers = 0 -support_material_extruder = 1 -support_material_extrusion_width = 0.35 -support_material_interface_contact_loops = 0 -support_material_interface_extruder = 1 -support_material_interface_layers = 2 -support_material_interface_pattern = rectilinear -support_material_interface_spacing = 0.2 -support_material_interface_speed = 80% -support_material_pattern = rectilinear -support_material_spacing = 2 -support_material_speed = 50 -support_material_style = grid -support_material_synchronize_layers = 0 -support_material_threshold = 50 -support_material_with_sheath = 1 -support_material_xy_spacing = 60% -support_tree_angle = 40 -support_tree_angle_slow = 25 -support_tree_branch_diameter = 2 -support_tree_branch_diameter_angle = 5 -support_tree_branch_diameter_double_wall = 3 -support_tree_branch_distance = 1 -support_tree_tip_diameter = 0.8 -support_tree_top_rate = 15% -temperature = 210 -template_custom_gcode = -thick_bridges = 1 -thin_walls = 0 -thumbnails = 16x16,220x124 -thumbnails_format = PNG -toolchange_gcode = -top_fill_pattern = monotonic -top_infill_extrusion_width = 0.4 -top_solid_infill_acceleration = 0 -top_solid_infill_speed = 40 -top_solid_layers = 7 -top_solid_min_thickness = 0.7 -travel_acceleration = 0 -travel_lift_before_obstacle = 0 -travel_max_lift = 0 -travel_ramping_lift = 0 -travel_slope = 0 -travel_speed = 180 -travel_speed_z = 0 -use_firmware_retraction = 0 -use_relative_e_distances = 1 -use_volumetric_e = 0 -variable_layer_height = 1 -wall_distribution_count = 1 -wall_transition_angle = 10 -wall_transition_filter_deviation = 25% -wall_transition_length = 100% -wipe = 1 -wipe_into_infill = 0 -wipe_into_objects = 0 -wipe_tower = 0 -wipe_tower_bridging = 10 -wipe_tower_brim_width = 2 -wipe_tower_cone_angle = 0 -wipe_tower_extra_spacing = 100% -wipe_tower_extruder = 0 -wipe_tower_no_sparse_layers = 0 -wipe_tower_rotation_angle = 0 -wipe_tower_width = 60 -wipe_tower_x = 180 -wipe_tower_y = 140 -wiping_volumes_extruders = 70,70 -wiping_volumes_matrix = 0 -xy_size_compensation = 0 -z_offset = 0 diff --git a/pcb/.gitignore b/pcb/.gitignore index 27075ef..f5e4d76 100644 --- a/pcb/.gitignore +++ b/pcb/.gitignore @@ -1 +1,4 @@ fp-info-cache +soundbox.kicad_prl +*.lck +ultra-librarian diff --git a/pcb/audio.kicad_sch b/pcb/audio.kicad_sch new file mode 100644 index 0000000..8790dd2 --- /dev/null +++ b/pcb/audio.kicad_sch @@ -0,0 +1,5349 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "4f05c87e-6d4f-4b37-998e-f38a6d760821") + (paper "A4") + (lib_symbols + (symbol "Amplifier_Audio:TAS5825MRHB" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -11.43 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TAS5825MRHB" + (at 13.97 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_DFN_QFN:VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm" + (at 0 -34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "www.ti.com/lit/ds/symlink/tas5825m.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "38-W Stereo, Inductor-Less, Digital Input, Closed-Loop Class-D Audio Amplifier with 192-kHz Extended Audio Processing, VQFN-32" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Class-D Stereo" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "VQFN*1EP*5x5mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TAS5825MRHB_0_1" + (rectangle + (start -12.7 22.86) + (end 12.7 -22.86) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "TAS5825MRHB_1_1" + (pin passive line + (at 15.24 15.24 180) + (length 2.54) + (name "BST_A+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -12.7 0) + (length 2.54) + (name "GPIO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -15.24 0) + (length 2.54) + (name "GPIO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 10.16 0) + (length 2.54) + (name "LRCLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 7.62 0) + (length 2.54) + (name "SCLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 5.08 0) + (length 2.54) + (name "SDIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 0 0) + (length 2.54) + (name "SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 -2.54 0) + (length 2.54) + (name "SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 15.24 0) + (length 2.54) + (name "~{PDN}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 25.4 270) + (length 2.54) + (name "GVDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -2.54 25.4 270) + (length 2.54) + (name "AVDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 15.24 12.7 180) + (length 2.54) + (name "OUT_A+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -25.4 90) + (length 2.54) + (name "AGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 25.4 270) + (length 2.54) hide + (name "PVDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 25.4 270) + (length 2.54) hide + (name "PVDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 15.24 -7.62 180) + (length 2.54) + (name "OUT_B+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 -5.08 180) + (length 2.54) + (name "BST_B+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -25.4 90) + (length 2.54) + (name "PGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -25.4 90) + (length 2.54) hide + (name "PGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 15.24 -12.7 180) + (length 2.54) + (name "OUT_B-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 -15.24 180) + (length 2.54) + (name "BST_B-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 5.08 180) + (length 2.54) + (name "BST_A-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 25.4 270) + (length 2.54) + (name "PVDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 15.24 7.62 180) + (length 2.54) + (name "OUT_A-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -25.4 90) + (length 2.54) hide + (name "PGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -25.4 90) + (length 2.54) hide + (name "PGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -25.4 90) + (length 2.54) + (name "EP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 25.4 270) + (length 2.54) hide + (name "PVDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -25.4 90) + (length 2.54) + (name "DGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 25.4 270) + (length 2.54) + (name "DVDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 25.4 270) + (length 2.54) + (name "VR_DIG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -15.24 -5.08 0) + (length 2.54) + (name "ADR" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -10.16 0) + (length 2.54) + (name "GPIO0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:L_Iron" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "L" + (at -1.27 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "L_Iron" + (at 2.794 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor with iron core" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "inductor choke coil reactor magnetic" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "L_Iron_0_1" + (arc + (start 0 -2.54) + (mid 0.6323 -1.905) + (end 0 -1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -1.27) + (mid 0.6323 -0.635) + (end 0 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.016 2.54) (xy 1.016 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.524 -2.54) (xy 1.524 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0) + (mid 0.6323 0.635) + (end 0 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 1.27) + (mid 0.6323 1.905) + (end 0 2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "L_Iron_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Ultra_Librarian:2604-1104" + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 8.89 6.35 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "2604-1104" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "CONN4_2604-1104_WAG" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "2604-1104" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "2604-1104" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "CONN4_2604-1104_WAG" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "2604-1104_1_1" + (polyline + (pts + (xy 5.08 -20.32) (xy 12.7 -20.32) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 2.54) (xy 5.08 -20.32) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -15.24) (xy 7.62 -17.78) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -10.16) (xy 7.62 -12.7) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -5.08) (xy 7.62 -7.62) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 0) (xy 7.62 -2.54) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -17.78) (xy 5.08 -17.78) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -17.78) (xy 8.89 -18.6267) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -17.78) (xy 8.89 -16.9333) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -15.24) (xy 5.08 -15.24) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -15.24) (xy 8.89 -16.0867) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -15.24) (xy 8.89 -14.3933) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -12.7) (xy 5.08 -12.7) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -12.7) (xy 8.89 -13.5467) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -12.7) (xy 8.89 -11.8533) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -10.16) (xy 5.08 -10.16) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -10.16) (xy 8.89 -11.0067) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -10.16) (xy 8.89 -9.3133) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -7.62) (xy 5.08 -7.62) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -7.62) (xy 8.89 -8.4667) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -7.62) (xy 8.89 -6.7733) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -5.08) (xy 5.08 -5.08) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -5.08) (xy 8.89 -5.9267) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -5.08) (xy 8.89 -4.2333) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -2.54) (xy 5.08 -2.54) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -2.54) (xy 8.89 -3.3867) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -2.54) (xy 8.89 -1.6933) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 0) (xy 5.08 0) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 0) (xy 8.89 -0.8467) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 0) (xy 8.89 0.8467) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 -20.32) (xy 12.7 2.54) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 2.54) (xy 5.08 2.54) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -17.78) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -15.24) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -12.7) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -10.16) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -7.62) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -5.08) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -2.54) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 0) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (pin unspecified line + (at 0 0 0) + (length 5.08) + (name "1_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -2.54 0) + (length 5.08) + (name "1_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -5.08 0) + (length 5.08) + (name "2_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -7.62 0) + (length 5.08) + (name "2_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -10.16 0) + (length 5.08) + (name "3_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -12.7 0) + (length 5.08) + (name "3_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -15.24 0) + (length 5.08) + (name "4_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -17.78 0) + (length 5.08) + (name "4_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "2604-1104_1_2" + (polyline + (pts + (xy 5.08 -20.32) (xy 12.7 -20.32) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 2.54) (xy 5.08 -20.32) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -15.24) (xy 7.62 -17.78) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -10.16) (xy 7.62 -12.7) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -5.08) (xy 7.62 -7.62) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 0) (xy 7.62 -2.54) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -17.78) (xy 5.08 -17.78) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -17.78) (xy 8.89 -18.6267) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -17.78) (xy 8.89 -16.9333) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -15.24) (xy 5.08 -15.24) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -15.24) (xy 8.89 -16.0867) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -15.24) (xy 8.89 -14.3933) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -12.7) (xy 5.08 -12.7) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -12.7) (xy 8.89 -13.5467) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -12.7) (xy 8.89 -11.8533) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -10.16) (xy 5.08 -10.16) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -10.16) (xy 8.89 -11.0067) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -10.16) (xy 8.89 -9.3133) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -7.62) (xy 5.08 -7.62) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -7.62) (xy 8.89 -8.4667) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -7.62) (xy 8.89 -6.7733) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -5.08) (xy 5.08 -5.08) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -5.08) (xy 8.89 -5.9267) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -5.08) (xy 8.89 -4.2333) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -2.54) (xy 5.08 -2.54) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -2.54) (xy 8.89 -3.3867) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -2.54) (xy 8.89 -1.6933) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 0) (xy 5.08 0) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 0) (xy 8.89 -0.8467) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 0) (xy 8.89 0.8467) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 -20.32) (xy 12.7 2.54) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 2.54) (xy 5.08 2.54) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -17.78) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -15.24) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -12.7) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -10.16) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -7.62) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -5.08) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 -2.54) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.62 0) + (radius 0.127) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (pin unspecified line + (at 0 0 0) + (length 5.08) + (name "1_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -2.54 0) + (length 5.08) + (name "1_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -5.08 0) + (length 5.08) + (name "2_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -7.62 0) + (length 5.08) + (name "2_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -10.16 0) + (length 5.08) + (name "3_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -12.7 0) + (length 5.08) + (name "3_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -15.24 0) + (length 5.08) + (name "4_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 0 -17.78 0) + (length 5.08) + (name "4_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+3V3" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+3V3_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3V3_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 129.54 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "0f745c79-6b93-4f67-89c1-0be9a32a4109") + ) + (junction + (at 161.29 121.92) + (diameter 0) + (color 0 0 0 0) + (uuid "12549f05-fff8-4539-aa6c-273d84dcd2b1") + ) + (junction + (at 157.48 69.85) + (diameter 0) + (color 0 0 0 0) + (uuid "1415bf34-c12e-45b7-8fb9-55debce7ab3f") + ) + (junction + (at 177.8 96.52) + (diameter 0) + (color 0 0 0 0) + (uuid "1a4fae9e-2f1d-4f31-bce7-790de55434ec") + ) + (junction + (at 161.29 83.82) + (diameter 0) + (color 0 0 0 0) + (uuid "1db06ec1-807a-4e42-a851-2383bf0bb96b") + ) + (junction + (at 124.46 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "343d5a54-bacf-4cb5-9c43-6a83ac917fbd") + ) + (junction + (at 191.77 91.44) + (diameter 0) + (color 0 0 0 0) + (uuid "69ca16cc-71c7-4769-a487-d5da69cfd874") + ) + (junction + (at 191.77 109.22) + (diameter 0) + (color 0 0 0 0) + (uuid "702c4647-5d96-47aa-a375-6f59dba0edbe") + ) + (junction + (at 161.29 109.22) + (diameter 0) + (color 0 0 0 0) + (uuid "88c11941-bd11-451b-9d65-e645b541c1ec") + ) + (junction + (at 157.48 55.88) + (diameter 0) + (color 0 0 0 0) + (uuid "8c4b467e-ebf6-4d03-84a5-5eb4eecfacce") + ) + (junction + (at 127 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "94b87b1a-ebe1-4fa6-9e32-ff96c1c4c51d") + ) + (junction + (at 191.77 104.14) + (diameter 0) + (color 0 0 0 0) + (uuid "9b977e62-5961-417c-b653-e40d4e9cc788") + ) + (junction + (at 161.29 96.52) + (diameter 0) + (color 0 0 0 0) + (uuid "a0f408e2-f7cf-4901-b104-26d48dc2a85f") + ) + (junction + (at 177.8 109.22) + (diameter 0) + (color 0 0 0 0) + (uuid "d1e1fc15-0d20-45f0-b976-85fa34627718") + ) + (junction + (at 177.8 83.82) + (diameter 0) + (color 0 0 0 0) + (uuid "ecfc2ddb-ee9c-4d0d-a9bb-7458df5fa406") + ) + (junction + (at 177.8 121.92) + (diameter 0) + (color 0 0 0 0) + (uuid "ef744bc7-c263-4017-affd-875ecf58a5c3") + ) + (junction + (at 191.77 96.52) + (diameter 0) + (color 0 0 0 0) + (uuid "f9f79f41-a07f-4271-8b22-d9cb73f35c8c") + ) + (wire + (pts + (xy 146.05 83.82) (xy 146.05 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0293afb8-e411-462e-a61a-f4265bd7ea9a") + ) + (wire + (pts + (xy 171.45 83.82) (xy 177.8 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "02efb405-9e8f-4d4d-8566-c8062d1b3ceb") + ) + (wire + (pts + (xy 149.86 109.22) (xy 146.05 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0af9819b-76ba-453a-bee3-f1a8496d96c8") + ) + (wire + (pts + (xy 189.23 83.82) (xy 189.23 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "104614da-1899-4a9c-86c1-458a07261ff8") + ) + (wire + (pts + (xy 146.05 109.22) (xy 146.05 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "115e2ab3-02c9-42c8-a6ad-e2c51c3ed93f") + ) + (wire + (pts + (xy 121.92 49.53) (xy 121.92 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "11bd41e3-484b-4995-bedc-e9e12a76ad46") + ) + (wire + (pts + (xy 177.8 96.52) (xy 191.77 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "12e794db-6135-4a1d-8a23-61050c4b48b4") + ) + (wire + (pts + (xy 142.24 118.11) (xy 146.05 118.11) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1893d512-595b-4edc-9463-382239a869f4") + ) + (wire + (pts + (xy 146.05 121.92) (xy 146.05 118.11) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1ae85f64-585b-4292-9fac-854d03d10259") + ) + (wire + (pts + (xy 161.29 83.82) (xy 163.83 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b9a4e5f-c603-42a5-8863-2ae163bfa91d") + ) + (wire + (pts + (xy 157.48 83.82) (xy 161.29 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1db1a285-68f4-4d3f-a0be-97a8605f2ad7") + ) + (wire + (pts + (xy 142.24 90.17) (xy 161.29 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1eb78168-7649-47a1-9bf9-a68a32dc2ae4") + ) + (wire + (pts + (xy 132.08 128.27) (xy 132.08 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "22e71bd6-eb0f-4f1f-957a-0e1561462f1c") + ) + (wire + (pts + (xy 157.48 72.39) (xy 157.48 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "23367f1e-88c8-4b44-9234-045f1333eb7a") + ) + (wire + (pts + (xy 132.08 130.81) (xy 129.54 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2731c32f-ab69-425d-a104-412201a392f5") + ) + (wire + (pts + (xy 142.24 115.57) (xy 161.29 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2b072324-a8e3-4249-9f95-c4434c3f0e97") + ) + (wire + (pts + (xy 149.86 96.52) (xy 146.05 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "31366b93-70c2-4fd3-a60d-a29fb02a519d") + ) + (wire + (pts + (xy 146.05 110.49) (xy 146.05 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "32340938-bf8b-48cc-8549-3a0146da190b") + ) + (wire + (pts + (xy 129.54 64.77) (xy 129.54 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "32d69ac0-9224-4759-8d07-f85437898b90") + ) + (wire + (pts + (xy 142.24 64.77) (xy 129.54 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c6e4ffb-0d50-41ef-807d-ac27d73c95e9") + ) + (wire + (pts + (xy 157.48 121.92) (xy 161.29 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c72a574-ed39-420d-a79e-a6c524beabcd") + ) + (wire + (pts + (xy 142.24 69.85) (xy 132.08 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3d6ec623-a349-4648-9bc6-64612c45a1e5") + ) + (wire + (pts + (xy 161.29 90.17) (xy 161.29 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4b361d63-0c29-4e1b-b52f-e87bd4b9aa51") + ) + (wire + (pts + (xy 191.77 91.44) (xy 191.77 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4dd1a601-80b7-4cff-b46a-23d757b7876b") + ) + (wire + (pts + (xy 177.8 121.92) (xy 191.77 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "53315140-58ca-4250-8536-15429b5ba492") + ) + (wire + (pts + (xy 142.24 95.25) (xy 146.05 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "55ab112a-962d-4f56-9fd7-f07bde2d7f84") + ) + (wire + (pts + (xy 142.24 55.88) (xy 124.46 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "585e27aa-2e79-4f97-9211-3aada9fb1980") + ) + (wire + (pts + (xy 149.86 69.85) (xy 157.48 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5d3dfa5a-7295-45a4-a029-86884fb6debd") + ) + (wire + (pts + (xy 161.29 109.22) (xy 163.83 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ffee555-8424-4519-8283-2183b6e04f48") + ) + (wire + (pts + (xy 129.54 128.27) (xy 129.54 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "60b1413e-7618-4c99-afbf-b5d56b90dbab") + ) + (wire + (pts + (xy 157.48 55.88) (xy 157.48 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "61abb3d1-d253-4192-9786-35c3b1facb72") + ) + (wire + (pts + (xy 119.38 133.35) (xy 119.38 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "69a25314-e82b-4a9a-95a7-05980b0e8c89") + ) + (wire + (pts + (xy 161.29 96.52) (xy 163.83 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "69fe3fba-1199-4e1e-887e-bda45ce7adc2") + ) + (wire + (pts + (xy 157.48 109.22) (xy 161.29 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c8d0799-88e0-4d42-9c1b-e82264c6763a") + ) + (wire + (pts + (xy 124.46 128.27) (xy 124.46 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "83542f4a-f056-438d-8c2f-12cbed785036") + ) + (wire + (pts + (xy 149.86 55.88) (xy 157.48 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8cbf4c38-7b77-4150-bb0c-99627efcb17c") + ) + (wire + (pts + (xy 142.24 87.63) (xy 146.05 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8fa6127e-dc89-4212-b3e9-dfa7835d9489") + ) + (wire + (pts + (xy 142.24 49.53) (xy 121.92 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "90bef4da-cc9e-437d-9f77-6de2053aba80") + ) + (wire + (pts + (xy 191.77 121.92) (xy 191.77 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "931f0020-7e7b-48d0-abbc-47f9b0c64cfd") + ) + (wire + (pts + (xy 171.45 109.22) (xy 177.8 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "99397b29-3b0d-437a-9515-3d6ad3a7efff") + ) + (wire + (pts + (xy 161.29 115.57) (xy 161.29 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9acfecd5-3fe7-4ab7-9cdf-37ab029ac529") + ) + (wire + (pts + (xy 161.29 113.03) (xy 161.29 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a1abab26-0809-46a4-887e-803eae9b1deb") + ) + (wire + (pts + (xy 142.24 110.49) (xy 146.05 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a2a7472e-ec1e-4a92-a252-18e62a4b75f9") + ) + (wire + (pts + (xy 161.29 121.92) (xy 163.83 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a5e006a5-ab76-48ae-a346-cc7dde344af1") + ) + (wire + (pts + (xy 142.24 60.96) (xy 127 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a6158be6-5a1d-44ad-9179-904533dbf075") + ) + (wire + (pts + (xy 149.86 83.82) (xy 146.05 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a6456193-f716-489c-aef5-b599875da4ab") + ) + (wire + (pts + (xy 189.23 109.22) (xy 189.23 104.14) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aa120911-9a1a-4be8-8637-0ffdeca8f90a") + ) + (wire + (pts + (xy 157.48 96.52) (xy 161.29 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "adaf1448-7941-4953-9436-bd7331709e10") + ) + (wire + (pts + (xy 149.86 121.92) (xy 146.05 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ade775b2-eb7d-4c72-966b-181c7ac21a28") + ) + (wire + (pts + (xy 191.77 106.68) (xy 191.77 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b01488d1-a6e1-4645-9acb-81d0af88cfa4") + ) + (wire + (pts + (xy 189.23 91.44) (xy 191.77 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b0722666-b66e-46d2-abc2-be9a9f9de32f") + ) + (wire + (pts + (xy 127 130.81) (xy 129.54 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba2d4398-3da6-461b-bb23-7cd90233431f") + ) + (wire + (pts + (xy 111.76 107.95) (xy 105.41 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bc0c9235-d108-4571-836b-77dc9d436762") + ) + (wire + (pts + (xy 191.77 101.6) (xy 191.77 104.14) + ) + (stroke + (width 0) + (type default) + ) + (uuid "be4f9326-05fb-4fb3-a667-60ce2b20b75c") + ) + (wire + (pts + (xy 146.05 96.52) (xy 146.05 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c2caca1d-9694-49bd-9382-c4fd426064ee") + ) + (wire + (pts + (xy 171.45 121.92) (xy 177.8 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c4f7ce8f-aad9-4786-ad0b-3a7bd80fcf1d") + ) + (wire + (pts + (xy 146.05 95.25) (xy 146.05 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c5b0df62-5377-4d29-a3d9-f88187193402") + ) + (wire + (pts + (xy 171.45 96.52) (xy 177.8 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8234d5f-62de-4e6d-bcfc-6e318fd29c5a") + ) + (wire + (pts + (xy 146.05 113.03) (xy 161.29 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ca2962be-ad13-4fa6-95be-e8409a29c1b9") + ) + (wire + (pts + (xy 191.77 96.52) (xy 191.77 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cb016d62-0fc6-4ca8-a148-44013e33b6bd") + ) + (wire + (pts + (xy 146.05 97.79) (xy 142.24 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d14f1afd-4d8a-4164-b31b-0b9bb008d754") + ) + (wire + (pts + (xy 177.8 109.22) (xy 189.23 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d853eca4-21ea-4ab8-9a25-ab55332e6356") + ) + (wire + (pts + (xy 119.38 130.81) (xy 124.46 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d8f93c8d-4e54-4ea7-9542-f1fbae03ea23") + ) + (wire + (pts + (xy 149.86 49.53) (xy 157.48 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "de355f24-ac5a-4c25-82e6-6cd0238f91c5") + ) + (wire + (pts + (xy 146.05 92.71) (xy 161.29 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e2703b5a-5ce6-4716-b2cd-bd73dfa5ad44") + ) + (wire + (pts + (xy 124.46 130.81) (xy 127 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e6f2160e-1bb7-4e21-8b5e-133a4c36b22e") + ) + (wire + (pts + (xy 142.24 107.95) (xy 146.05 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e96c964e-f4b6-4d4d-b583-e9f124657d74") + ) + (wire + (pts + (xy 161.29 92.71) (xy 161.29 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ea5351ce-85c7-4bdc-9137-2906400fce01") + ) + (wire + (pts + (xy 177.8 83.82) (xy 189.23 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ef9fe64b-62e9-43c7-bfc3-489e1186376e") + ) + (wire + (pts + (xy 124.46 55.88) (xy 124.46 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f16944ec-714c-424e-b608-03012014e3cf") + ) + (wire + (pts + (xy 127 128.27) (xy 127 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f48c1ae4-6db8-4b40-95d9-2a989d6a9dd4") + ) + (wire + (pts + (xy 189.23 104.14) (xy 191.77 104.14) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f6185976-4754-4024-8432-97d2a52bc46d") + ) + (wire + (pts + (xy 127 60.96) (xy 127 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f68594c4-3be7-45de-9fff-d6abdbcd2f27") + ) + (wire + (pts + (xy 157.48 49.53) (xy 157.48 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f697f2c7-39d1-4933-89ff-3f98a6be4152") + ) + (wire + (pts + (xy 132.08 69.85) (xy 132.08 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fd43b779-23c5-441c-aafa-e0ac6e2c04c4") + ) + (text "I2C addr. 1001100\n(see table 9-5)" + (exclude_from_sim no) + (at 95.758 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "e591546f-5396-43f3-a0e8-13e2a53fc68c") + ) + (text "+\nL\n-\n\n\n+\nR\n-" + (exclude_from_sim no) + (at 206.502 100.838 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "fa60f895-aa83-460b-bb06-7e106e912e48") + ) + (global_label "AUDIO_PVDD" + (shape input) + (at 142.24 64.77 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "f2eeeca9-5cdd-4081-8e8c-141c6cec980f") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 156.7158 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (hierarchical_label "SDA" + (shape bidirectional) + (at 111.76 102.87 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "11d4271f-461d-45ba-9b66-577ea82e4c29") + ) + (hierarchical_label "~{FAULT}" + (shape bidirectional) + (at 111.76 113.03 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "20bd21ba-79bc-43dc-9ed4-182af0c06627") + ) + (hierarchical_label "SDIN" + (shape input) + (at 111.76 97.79 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "388ed49c-d9f2-4c41-8a95-2fde682a4e56") + ) + (hierarchical_label "LRCLK" + (shape input) + (at 111.76 92.71 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "50116961-d8f3-4cc4-bcc1-6fa42f48b5e8") + ) + (hierarchical_label "SCLK" + (shape input) + (at 111.76 95.25 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "6d354efe-c664-4890-a356-e646e66c6b73") + ) + (hierarchical_label "~{WARN}" + (shape bidirectional) + (at 111.76 118.11 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "bbf69029-444e-4d18-be86-5e7a4d8ca6f8") + ) + (hierarchical_label "~{PDN}" + (shape input) + (at 111.76 87.63 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "c536e231-bbe6-4964-a01f-183d669a314b") + ) + (hierarchical_label "~{MUTE}" + (shape bidirectional) + (at 111.76 115.57 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "f61db05c-375b-4560-93ee-d8f6b1974bc2") + ) + (hierarchical_label "SCL" + (shape input) + (at 111.76 105.41 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "fa8db5e4-943e-4403-a1db-631dc687a9db") + ) + (symbol + (lib_id "Device:C") + (at 153.67 96.52 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0be9647b-7e01-4e9c-b8df-8e35be8bfeb4") + (property "Reference" "C5" + (at 156.464 98.044 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.47µF" + (at 158.496 100.33 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 149.86 97.4852 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 153.67 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 153.67 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "7e311b2a-aa62-4494-abe8-2fa3e3478678") + ) + (pin "1" + (uuid "3e28e8f3-7c60-4c53-99b5-2060f95254ee") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 177.8 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "11fa9770-d811-4af2-a393-181d6cbec758") + (property "Reference" "#PWR07" + (at 177.8 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 181.356 93.472 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 177.8 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 177.8 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 177.8 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "414c7779-645c-45b1-9901-3f4cdc1cad9b") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 157.48 72.39 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "144ddb25-c09d-42f9-b2da-6ded99ec451f") + (property "Reference" "#PWR06" + (at 157.48 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 157.48 76.454 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 157.48 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 157.48 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 157.48 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8dc4673c-86ea-4f5a-91f7-597b9ae274ba") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 177.8 116.84 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "166de4dd-7435-4bf1-a827-e0cf60b91c79") + (property "Reference" "#PWR09" + (at 177.8 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 181.356 118.872 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 177.8 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 177.8 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 177.8 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9e82b388-6362-4892-a193-98fb8e740fe5") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L_Iron") + (at 167.64 109.22 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "190b3634-6770-4408-9b81-422d7c03b63a") + (property "Reference" "L3" + (at 167.64 102.87 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10µH" + (at 167.64 105.41 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 167.64 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 167.64 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor with iron core" + (at 167.64 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "b429728e-46d7-4a82-9d8b-d83721db0c18") + ) + (pin "1" + (uuid "98e7197f-745e-4c6c-9266-144eb6e50882") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "L3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 146.05 69.85 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1c7ca62e-c9d1-41e8-87cc-475f226b9841") + (property "Reference" "C3" + (at 149.352 68.58 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1µF" + (at 149.352 71.12 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 142.24 70.8152 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 146.05 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 146.05 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7233bfae-754f-4d1f-899a-5fce9acee748") + ) + (pin "2" + (uuid "57b4697a-ca60-4e65-8812-0ac63bc027d8") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 153.67 121.92 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "34ca3023-45db-4cf5-8ee4-e1bdbb1221be") + (property "Reference" "C7" + (at 156.464 123.444 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.47µF" + (at 158.496 125.73 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 149.86 122.8852 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 153.67 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 153.67 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "378317d7-93f0-4a9e-acae-e257e20ba655") + ) + (pin "1" + (uuid "662666be-0cd9-4a0c-8093-3e0446907336") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 177.8 113.03 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3b2bff92-af85-40b2-ad53-eb65c2d4ea5c") + (property "Reference" "C10" + (at 181.61 111.7599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.68µF" + (at 181.61 114.2999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 178.7652 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 177.8 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 177.8 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "f0c006d5-262d-4508-abf0-6f715fb8e0be") + ) + (pin "1" + (uuid "1a46b8aa-97d9-471b-a0dc-71a44f4a0554") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L_Iron") + (at 167.64 83.82 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "50caebb0-3901-44f9-8206-90b11de91fa6") + (property "Reference" "L1" + (at 167.64 77.47 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10µH" + (at 167.64 80.01 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 167.64 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 167.64 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor with iron core" + (at 167.64 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "d77da840-eaa2-4395-8535-9ff3c26c428b") + ) + (pin "1" + (uuid "8174764f-8d0f-445b-bd75-57e3553eb4de") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "L1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 153.67 83.82 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6a22b156-c291-4edc-962d-eeb5c877a911") + (property "Reference" "C4" + (at 156.464 80.01 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.47µF" + (at 158.496 82.296 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 149.86 84.7852 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 153.67 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 153.67 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "e063cfa6-85b3-4614-b3ff-76d874efae4e") + ) + (pin "1" + (uuid "59ec4441-3705-4287-b255-3a9d9061230b") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 105.41 107.95 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6a91a450-5d99-4a67-836f-bc7355ee0fe9") + (property "Reference" "#PWR03" + (at 105.41 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 109.22 109.982 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 105.41 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 105.41 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 105.41 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5109c6bb-1dab-4769-9628-369e0e9a48f3") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 142.24 60.96 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6bb6afc2-dca6-4dc3-8649-b24b42914a1b") + (property "Reference" "#PWR05" + (at 138.43 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 145.542 60.96 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 142.24 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 142.24 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 142.24 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "95e11cff-0902-4380-8217-ca4334ace8f0") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Ultra_Librarian:2604-1104") + (at 191.77 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "765945ae-f4a3-4cdd-a121-e77ebdb3b84a") + (property "Reference" "J3" + (at 192.786 112.268 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + ) + (property "Value" "2604-1104" + (at 192.786 114.808 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + ) + (property "Footprint" "CONN4_2604-1104_WAG" + (at 191.77 91.44 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 191.77 91.44 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Description" "Speaker" + (at 191.77 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "WAGO" + (at 191.77 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MPN" "2604-1104" + (at 191.77 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "8" + (uuid "e40b0ee4-7129-46cf-809d-6cf93ac053ff") + ) + (pin "5" + (uuid "8e92ce1a-4f0e-494f-8ede-e501b11a2aa6") + ) + (pin "4" + (uuid "1a694742-5db4-4a2a-a12f-2a6722b2bcd5") + ) + (pin "3" + (uuid "05872826-4f30-48d8-8375-3c10e6e4f102") + ) + (pin "7" + (uuid "456970fd-e29f-4b2e-91b1-872ea3962fc4") + ) + (pin "2" + (uuid "d9777ba9-f9c4-431b-8b48-409f3e3b4f6d") + ) + (pin "6" + (uuid "69103c01-370b-42df-a89b-a802b6fd3a3d") + ) + (pin "1" + (uuid "d7273295-f62c-4aeb-9763-db81056892fd") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 146.05 55.88 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "860146ae-4a8b-461f-bb49-7007aef55691") + (property "Reference" "C2" + (at 149.098 54.61 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1µF" + (at 149.352 57.15 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 142.24 56.8452 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 146.05 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 146.05 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "60228db6-76f5-4534-9cca-4d3eb34cea54") + ) + (pin "2" + (uuid "cca9ec60-c87d-496b-b7e3-7ffab9584cbc") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 177.8 125.73 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "a12f504c-1803-46fd-bb2f-ad3359ed4e36") + (property "Reference" "C11" + (at 181.61 124.4599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.68µF" + (at 181.61 126.9999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 178.7652 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 177.8 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 177.8 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "5d00ea0e-9b8e-4b70-aa75-5c6239ea6f3b") + ) + (pin "1" + (uuid "1dfee1bf-e81b-47ea-99bc-46a5eed4795b") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L_Iron") + (at 167.64 121.92 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a447634f-c1de-4592-a941-46ee6ea1a5c1") + (property "Reference" "L4" + (at 167.64 115.57 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10µH" + (at 167.64 118.11 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 167.64 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 167.64 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor with iron core" + (at 167.64 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "1fecf507-333c-4545-b8b0-5a2171ef14f9") + ) + (pin "1" + (uuid "b53af8a1-15a3-49d6-a1c0-420b50bf6039") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "L4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 153.67 109.22 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b1a18f90-f392-412f-b8d5-24aa901f565e") + (property "Reference" "C6" + (at 156.464 105.41 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.47µF" + (at 158.496 107.696 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 149.86 110.1852 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 153.67 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 153.67 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8eacdf42-d2a1-4b9f-9dc8-5b91523f75f3") + ) + (pin "1" + (uuid "4b194a5e-e0de-40c0-9b5e-f89b8b759d97") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 177.8 100.33 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b8ec398a-bfbb-45c0-8892-e4d04d225725") + (property "Reference" "C9" + (at 181.61 99.0599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.68µF" + (at 181.61 101.5999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 178.7652 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 177.8 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 177.8 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "406361d6-0ec7-43f3-b0ca-9efc5e2912bf") + ) + (pin "1" + (uuid "58861f57-f206-4d8d-9560-7f218b15c0bc") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 146.05 49.53 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "bc47cb9c-3ae9-4237-89b1-b1cdf33ca1a0") + (property "Reference" "C1" + (at 148.59 48.514 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1µF" + (at 149.352 50.8 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 142.24 50.4952 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 146.05 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 146.05 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e902f120-1dc3-4b8d-a4fb-24d148fdde09") + ) + (pin "2" + (uuid "e2c5ac84-71bb-4d51-b4bc-c0251ed85a4a") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 177.8 87.63 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c2b27090-34e6-4a57-838d-1e0be5acece5") + (property "Reference" "C8" + (at 181.61 86.3599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.68µF" + (at 181.61 88.8999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 178.7652 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 177.8 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 177.8 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "b0fe700e-8c65-47c8-b24b-93cc02ee213f") + ) + (pin "1" + (uuid "089ebcb9-4972-4f43-aa74-98407de81017") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "C8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 177.8 104.14 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ce5840b0-0386-48db-bcf9-ab655a34d444") + (property "Reference" "#PWR08" + (at 177.8 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 181.356 106.172 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 177.8 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 177.8 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 177.8 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6c35faf1-3507-4944-a0f5-721f14c8153c") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 177.8 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d8754b28-0533-4997-bd3f-3ab67055b2ad") + (property "Reference" "#PWR010" + (at 177.8 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 181.61 131.572 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 177.8 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 177.8 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 177.8 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8f10d24a-1b46-4c1f-aa4f-a302f7798aa5") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L_Iron") + (at 167.64 96.52 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "db3f9334-ab2d-47dc-ba64-5ff4ff8761ac") + (property "Reference" "L2" + (at 167.64 90.17 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10µΗ" + (at 167.64 92.71 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 167.64 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 167.64 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor with iron core" + (at 167.64 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "f48b94f0-7b16-47a2-b5b8-e9d262c19eeb") + ) + (pin "1" + (uuid "68fb3cc1-fbb1-402e-93eb-31086be72bae") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "L2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Audio:TAS5825MRHB") + (at 127 102.87 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "efa3e295-21dd-4959-b3ba-8ee41d0b3464") + (property "Reference" "U2" + (at 134.2741 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "TAS5825MRHB" + (at 134.2741 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_DFN_QFN:VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm" + (at 127 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/tas5825m.pdf" + (at 127 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Audio amplifier" + (at 141.732 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "TAS5825MRHBR" + (at 127 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 127 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "19" + (uuid "65d2d3d4-30d7-4a8d-ba5f-0519ba102ff7") + ) + (pin "11" + (uuid "99eeefa7-937c-46db-b7ec-15250ae11586") + ) + (pin "10" + (uuid "e5ad116d-8b9d-4aa5-bcde-5d9267af69c5") + ) + (pin "1" + (uuid "cce56ee8-f4c8-4488-8982-930cb735b2e0") + ) + (pin "15" + (uuid "61a4c52e-7b03-44de-abcb-626a3a9c1915") + ) + (pin "7" + (uuid "9d93de3d-c049-4ad8-a690-67ebdde3e1bb") + ) + (pin "12" + (uuid "334e1e52-f419-4832-ab35-68e1d763842c") + ) + (pin "13" + (uuid "6a301f17-d35f-416b-9c8d-bd07785feceb") + ) + (pin "26" + (uuid "9ba4982e-6aa9-4a7d-bad8-69444ed6e93e") + ) + (pin "18" + (uuid "7815b26d-6a67-415d-9764-d47a13c85f1b") + ) + (pin "31" + (uuid "e65895ff-a074-4411-a5c1-66d732a84cb4") + ) + (pin "4" + (uuid "a42e3be0-6c0b-41bd-98a0-10b0cd0348ca") + ) + (pin "25" + (uuid "d7911c60-7fae-4526-b6a0-05e407ef1e94") + ) + (pin "22" + (uuid "d4b4b041-367f-464a-884e-970de2bbd382") + ) + (pin "6" + (uuid "87d8dd32-808f-4982-988d-9a3bf8fe436a") + ) + (pin "24" + (uuid "bfe8b2c1-512b-4ff7-8b82-32ff283d327c") + ) + (pin "32" + (uuid "e60d7d33-31c1-4f6d-aa84-e226094cb1b8") + ) + (pin "20" + (uuid "e52d1e09-92e5-4223-b43b-94ca0b4f9d30") + ) + (pin "14" + (uuid "88beb6f2-dede-4cc3-81e1-79843aba0c74") + ) + (pin "29" + (uuid "70298e71-729b-47cf-a67e-f6c18dccb47f") + ) + (pin "17" + (uuid "300d38fc-99ba-49d3-900e-ba257401c1eb") + ) + (pin "33" + (uuid "86ff41c4-1adf-48f4-ac2f-3d6f168cded1") + ) + (pin "16" + (uuid "351542d9-a6ca-4ac9-8a74-d2dedb741806") + ) + (pin "3" + (uuid "6ed1ae6d-2492-4132-af2d-bea1e3bd5630") + ) + (pin "28" + (uuid "e32aeb11-149f-45f1-8e5a-227811252cb1") + ) + (pin "30" + (uuid "0c338b32-b095-406e-b6a2-04b32f2df9f4") + ) + (pin "23" + (uuid "a29b564c-5985-4891-b8f5-282a255367e4") + ) + (pin "9" + (uuid "f2f4400b-0c3f-47d1-ac25-7853afb18651") + ) + (pin "2" + (uuid "28030237-fe70-4e61-a868-e10358d223f7") + ) + (pin "5" + (uuid "6ec6272c-0ed1-4fee-91e9-7dc2faabc89a") + ) + (pin "21" + (uuid "14418a4c-643f-430a-ac83-a6abfc693424") + ) + (pin "27" + (uuid "d5ec824a-6ead-46ef-9e49-5f50a6912559") + ) + (pin "8" + (uuid "d496586a-33d3-4764-9b25-65914fc3fa7a") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 119.38 133.35 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f502d01c-6ea1-448c-a53d-095702afc91b") + (property "Reference" "#PWR04" + (at 119.38 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 123.19 135.382 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 119.38 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 119.38 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 119.38 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c31fab07-fc24-45ec-abb9-3dd3ccd89b7f") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/c63181b1-8a8c-4c63-9e6c-d94097bd8342" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) +) diff --git a/pcb/libraries/kicad-symbols b/pcb/libraries/kicad-symbols deleted file mode 160000 -Subproject 5ed82b523519e3469fbb94bf932db5974c89e3d diff --git a/pcb/parts-kicad b/pcb/parts-kicad new file mode 160000 +Subproject 49238bb381cb2071937abb12d94c457058d4311 diff --git a/pcb/pcb.mk b/pcb/pcb.mk new file mode 100644 index 0000000..2db249a --- /dev/null +++ b/pcb/pcb.mk @@ -0,0 +1,23 @@ +SOUNDBOX_KICAD_SCH := pcb/soundbox.kicad_sch +PCB_BUILD_DIR := $(BUILD_DIR)/pcb +BOM := $(PCB_BUILD_DIR)/bom.csv +SCHEMATIC_PDF := $(PCB_BUILD_DIR)/schematic.pdf +ERC_REPORT := $(PCB_BUILD_DIR)/erc.rpt + +.PHONY: pcb +pcb: $(BOM) $(SCHEMATIC_PDF) + +$(BOM): $(SOUNDBOX_KICAD_SCH) + mkdir -p $(dir $@) + kicad-cli sch export bom \ + --output $@ \ + --fields 'Reference,Description,Value,Footprint,Manufacturer,MPN,Datasheet' \ + $< + +$(SCHEMATIC_PDF): $(SOUNDBOX_KICAD_SCH) + mkdir -p $(dir $@) + kicad-cli sch export pdf --output $@ $< + +$(ERC_REPORT): $(SOUNDBOX_KICAD_SCH) + mkdir -p $(dir $@) + kicad-cli sch erc --exit-code-violations --output $@ $< diff --git a/pcb/print-bom.sh b/pcb/print-bom.sh deleted file mode 100755 index 9bd8007..0000000 --- a/pcb/print-bom.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - - -set -euf - - -SCRIPT_PATH="$0" -PCB_PATH="$(dirname "${SCRIPT_PATH}")" -INPUT_PATH="${PCB_PATH}/soundbox.kicad_sch" -OUTPUT_PATH="$(mktemp -t --suffix '.csv' kicad-bom-XXXX)" - -FIELDS='Reference,Description,Value' - - -kicad-cli sch export bom \ - -o "$OUTPUT_PATH" \ - --fields "$FIELDS" \ - "$INPUT_PATH" - -cat "$OUTPUT_PATH" -rm "$OUTPUT_PATH" diff --git a/pcb/soundbox.kicad_pcb b/pcb/soundbox.kicad_pcb index ef218ba..bb1beb3 100644 --- a/pcb/soundbox.kicad_pcb +++ b/pcb/soundbox.kicad_pcb @@ -1,2 +1,6924 @@ -(kicad_pcb (version 20240108) (generator "pcbnew") (generator_version "8.0") -)
\ No newline at end of file +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (title_block + (title "soundbox") + ) + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + (setup + (stackup + (layer "F.SilkS" + (type "Top Silk Screen") + ) + (layer "F.Paste" + (type "Top Solder Paste") + ) + (layer "F.Mask" + (type "Top Solder Mask") + (thickness 0.01) + ) + (layer "F.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 1" + (type "core") + (thickness 1.51) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "B.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "B.Mask" + (type "Bottom Solder Mask") + (thickness 0.01) + ) + (layer "B.Paste" + (type "Bottom Solder Paste") + ) + (layer "B.SilkS" + (type "Bottom Silk Screen") + ) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "unconnected-(SW1-Pad2)") + (net 2 "unconnected-(SW1-Pad1)") + (net 3 "unconnected-(SW2-Pad2)") + (net 4 "unconnected-(SW2-Pad1)") + (net 5 "Net-(U1-GND-Pad1)") + (net 6 "unconnected-(U1-IO18-Pad22)") + (net 7 "unconnected-(U1-IO46-Pad44)") + (net 8 "unconnected-(U1-IO26-Pad26)") + (net 9 "unconnected-(U1-3V3-Pad3)") + (net 10 "unconnected-(U1-IO19-Pad23)") + (net 11 "unconnected-(U1-IO21-Pad25)") + (net 12 "unconnected-(U1-IO12-Pad16)") + (net 13 "unconnected-(U1-IO37-Pad33)") + (net 14 "unconnected-(U1-IO0-Pad4)") + (net 15 "unconnected-(U1-IO9-Pad13)") + (net 16 "unconnected-(U1-IO3-Pad7)") + (net 17 "unconnected-(U1-TXD0-Pad39)") + (net 18 "unconnected-(U1-IO1-Pad5)") + (net 19 "unconnected-(U1-IO11-Pad15)") + (net 20 "unconnected-(U1-IO41-Pad37)") + (net 21 "unconnected-(U1-IO17-Pad21)") + (net 22 "unconnected-(U1-IO47-Pad27)") + (net 23 "unconnected-(U1-IO20-Pad24)") + (net 24 "unconnected-(U1-IO10-Pad14)") + (net 25 "unconnected-(U1-IO34-Pad29)") + (net 26 "unconnected-(U1-IO38-Pad34)") + (net 27 "unconnected-(U1-IO39-Pad35)") + (net 28 "unconnected-(U1-IO36-Pad32)") + (net 29 "unconnected-(U1-IO8-Pad12)") + (net 30 "unconnected-(U1-IO16-Pad20)") + (net 31 "VERSION") + (net 32 "unconnected-(U1-RXD0-Pad40)") + (net 33 "unconnected-(U1-IO14-Pad18)") + (net 34 "unconnected-(U1-IO35-Pad31)") + (net 35 "unconnected-(U1-IO5-Pad9)") + (net 36 "unconnected-(U1-IO48-Pad30)") + (net 37 "unconnected-(U1-IO40-Pad36)") + (net 38 "unconnected-(U1-EN-Pad45)") + (net 39 "unconnected-(U1-IO6-Pad10)") + (net 40 "unconnected-(U1-IO7-Pad11)") + (net 41 "unconnected-(U1-IO15-Pad19)") + (net 42 "unconnected-(U1-IO45-Pad41)") + (net 43 "unconnected-(U1-IO42-Pad38)") + (net 44 "unconnected-(U1-IO4-Pad8)") + (net 45 "unconnected-(U1-IO13-Pad17)") + (net 46 "unconnected-(U1-IO33-Pad28)") + (net 47 "unconnected-(U2-AVDD-Pad19)") + (net 48 "Net-(U2-PVDD-Pad21)") + (net 49 "unconnected-(U2-~{PDN}-Pad17)") + (net 50 "unconnected-(U2-AGND-Pad20)") + (net 51 "unconnected-(U2-VR_DIG-Pad7)") + (net 52 "Net-(U2-PGND-Pad25)") + (net 53 "unconnected-(U2-LRCLK-Pad12)") + (net 54 "unconnected-(U2-SCL-Pad16)") + (net 55 "unconnected-(U2-GVDD-Pad18)") + (net 56 "unconnected-(U2-OUT_A+-Pad2)") + (net 57 "unconnected-(U2-GPIO0-Pad9)") + (net 58 "unconnected-(U2-SDA-Pad15)") + (net 59 "unconnected-(U2-ADR-Pad8)") + (net 60 "unconnected-(U2-EP-Pad33)") + (net 61 "unconnected-(U2-BST_A--Pad29)") + (net 62 "unconnected-(U2-OUT_B--Pad27)") + (net 63 "unconnected-(U2-GPIO1-Pad10)") + (net 64 "unconnected-(U2-BST_B--Pad28)") + (net 65 "unconnected-(U2-GPIO2-Pad11)") + (net 66 "unconnected-(U2-BST_A+-Pad1)") + (net 67 "unconnected-(U2-OUT_A--Pad30)") + (net 68 "unconnected-(U2-DGND-Pad5)") + (net 69 "unconnected-(U2-SDIN-Pad14)") + (net 70 "unconnected-(U2-SCLK-Pad13)") + (net 71 "unconnected-(U2-BST_B+-Pad24)") + (net 72 "unconnected-(U2-OUT_B+-Pad23)") + (net 73 "unconnected-(U2-DVDD-Pad6)") + (net 74 "unconnected-(U3-IO2-Pad3)") + (net 75 "unconnected-(U3-GND-Pad4)") + (net 76 "unconnected-(U3-DI(IO0)-Pad5)") + (net 77 "unconnected-(U3-~{CS}-Pad1)") + (net 78 "unconnected-(U3-IO3-Pad7)") + (net 79 "unconnected-(U3-DO(IO1)-Pad2)") + (net 80 "unconnected-(U3-VCC-Pad8)") + (net 81 "unconnected-(U3-CLK-Pad6)") + (net 82 "unconnected-(U4-~{HOLD}-Pad7)") + (net 83 "Net-(D1-K)") + (net 84 "unconnected-(D1-A-Pad2)") + (net 85 "unconnected-(D2-A-Pad2)") + (net 86 "Net-(D2-K)") + (net 87 "unconnected-(D3-A-Pad2)") + (net 88 "Net-(D3-K)") + (net 89 "unconnected-(R1-Pad2)") + (net 90 "unconnected-(R2-Pad2)") + (net 91 "unconnected-(R3-Pad2)") + (net 92 "+3V3") + (net 93 "GND") + (net 94 "unconnected-(J3-2_2-Pad4)") + (net 95 "unconnected-(J3-4_1-Pad7)") + (net 96 "unconnected-(J3-3_1-Pad5)") + (net 97 "unconnected-(J3-4_2-Pad8)") + (net 98 "unconnected-(J3-2_1-Pad3)") + (net 99 "unconnected-(J3-3_2-Pad6)") + (net 100 "unconnected-(J3-1_1-Pad1)") + (net 101 "unconnected-(J3-1_2-Pad2)") + (net 102 "unconnected-(U4-D-Pad5)") + (net 103 "unconnected-(U4-VCC-Pad8)") + (net 104 "unconnected-(U4-~{S}-Pad1)") + (net 105 "unconnected-(U4-Q-Pad2)") + (net 106 "unconnected-(U4-~{W}-Pad3)") + (net 107 "unconnected-(U4-C-Pad6)") + (net 108 "unconnected-(U4-VSS-Pad4)") + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "0e0707bf-f063-4c8b-9ec2-73c53dcfbd98") + (at 137.15 113.82) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R5" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "990b491b-ba6c-4643-a40b-85f7e4df900e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "5K1" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "4c88f54c-a54d-47e3-9983-47f4f9de8b66") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1cda53d0-eadc-45ca-b659-80d57fdc28f2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C304.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f46d46a0-f51b-4187-bf69-c705e3ae361b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b1cf7bac-f408-4877-b352-04b8f40a20b6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "ERJ-3EKF5101V" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ca659567-b003-4bc8-a153-ffd7a77adb9e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4dea1f1a-86c8-400f-96b4-4dc9895bc28b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/ce5febd8-eb28-4f55-a2c7-c191c30792ad") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6b2e4db-4fd3-4640-b4db-6242c694aa47") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0d911694-5c37-4fcc-8491-df77f173cdcd") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fce1a6b2-560f-411d-8c62-8ca3d7343ca5") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3d4437e3-840c-4dd5-92f5-57a63a59d393") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ed00f71b-7b76-4288-8444-a4689fc5a906") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b04447fe-1012-43c5-b75c-f4f2997c66d1") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "61bfc800-4ffb-4064-bb9b-e6b231af9d7c") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a1e8d87-fa31-4027-9973-d9dc4b158887") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7be2c9da-e454-46cd-afb3-d8b79152569d") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "68674201-435a-49a1-a7eb-56eb3290c0ae") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "f4cf0dc4-d97d-4073-a1fc-b045706d2c08") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 31 "VERSION") + (pintype "passive") + (uuid "204cfbb8-11ce-4571-96ae-a2bccedb6e99") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 93 "GND") + (pintype "passive") + (uuid "53d30a79-99da-4333-a339-00d2441df13d") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "11c1b0e9-2137-4be5-9a0d-bf91ab03ae7e") + (at 137.15 111.31) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R4" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "1b795dec-c833-45e1-ad2a-254ae85a23b0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "5K1" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "c6fe9e34-14ea-4de9-993e-99a967e48195") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "37b9b441-a808-4145-9990-a00dcfefabdc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C304.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "808afc0c-a8f3-43fc-99ee-280891c8fed1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0f4e91fd-6915-408c-b888-94d449b76de1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "ERJ-3EKF5101V" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1bbae3db-eb41-4b12-a7d2-45dff52b5db3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18605def-564c-4701-a0a8-7b9e52ce6595") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/d3d3f4c2-e7c8-41b7-b731-90b3c2910323") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ffb9ee7e-844f-487d-8266-06d7ec4fbe54") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c2c7471-f93b-4505-8c2d-14f94a6afe09") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "716b21fd-e59c-4c26-b3bc-0e9c8fcd7d91") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b16666b0-0375-448b-a243-de677218abad") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1a0e951c-3945-4ba9-b9be-7943bf372c46") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4a393b3d-0199-4e54-8b2a-8f035bf12063") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4a69c857-a41e-41a9-87b6-f75e9f1dfbb1") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "34950d6c-4651-46d3-8483-32f84855aef6") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5fb42cde-29fb-4ee7-b712-6c1c77b0b109") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b2151963-40d2-49da-9c85-9303311bb362") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "a0b959b1-805c-4262-ae07-c376c40a77c1") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 92 "+3V3") + (pintype "passive") + (uuid "ee7d732f-91dd-4202-8a33-d9c841d82cef") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 31 "VERSION") + (pintype "passive") + (uuid "3b3b6ed3-d268-4ebf-9331-b5d895c875ec") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Button_Switch_SMD:SW_SPST_TL3305B" + (layer "F.Cu") + (uuid "35090aa8-13f1-4026-98aa-0e60a7d4f149") + (at 125 95) + (descr "https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf") + (tags "TL3305 Series Tact Switch") + (property "Reference" "SW2" + (at 0 -3.2 0) + (layer "F.SilkS") + (uuid "4a231c21-68e9-4e36-a59e-e5bcc146cef5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SW_Push" + (at 0 3.2 0) + (layer "F.Fab") + (uuid "7faba957-8cf6-48bb-9e28-4e527a2e257e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Button_Switch_SMD:SW_SPST_TL3305B" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2be2afc6-5fef-4e1d-8e73-e2e06c764920") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.e-switch.com/wp-content/uploads/2024/08/TL3305.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b235c024-4720-4b6e-908d-13ea8840cedf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Reset" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2d474bc0-30e4-43b1-93f5-dfbdf7fbf71d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "TL3305BF260QG" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f29df71f-af80-4f8b-9048-a27c9aa0d418") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "E-Switch" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "49892af5-4cd1-40b8-93a9-39bac4505e77") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/2df93158-1d66-4506-a3fe-9fa3d5d1421d") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -2.37 -2.37) + (end -2.37 -1.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e23e5641-27e5-4b93-b34b-57700e9c5ac3") + ) + (fp_line + (start -2.37 -2.37) + (end 2.37 -2.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1d917050-46df-4240-b05c-1eeeac08f075") + ) + (fp_line + (start -2.37 1.03) + (end -2.37 -1.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "43abd015-cf80-4366-80e0-fa470b876f5e") + ) + (fp_line + (start -2.37 2.37) + (end -2.37 1.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "87aed800-23b1-4901-827b-b88a038c1ca0") + ) + (fp_line + (start -2.37 2.37) + (end 2.37 2.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e2fd3384-a971-4d81-8149-e28e81e82fc5") + ) + (fp_line + (start 2.37 -2.37) + (end 2.37 -1.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1df0027e-26b0-4fe0-9345-49886b60bbbe") + ) + (fp_line + (start 2.37 1.03) + (end 2.37 -1.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "281975a2-8592-4dff-8fe3-2242723d39f7") + ) + (fp_line + (start 2.37 2.37) + (end 2.37 1.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "443e79d3-60c9-413c-9b8b-32dc56372d66") + ) + (fp_line + (start -4.65 -2.5) + (end 4.65 -2.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3916cd18-c9af-4893-b44e-5cc5bc0b6712") + ) + (fp_line + (start -4.65 2.5) + (end -4.65 -2.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7254f919-8e0b-4f0d-9752-c29d0d3872bf") + ) + (fp_line + (start 4.65 -2.5) + (end 4.65 2.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "64edde08-6f93-4523-89ff-60a7d6b2dad2") + ) + (fp_line + (start 4.65 2.5) + (end -4.65 2.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fd494627-4e86-4cd7-91a4-588e34a40e65") + ) + (fp_line + (start -3.75 -1.85) + (end -3.75 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d9f9c971-0d3f-4315-a59d-3551bf509a01") + ) + (fp_line + (start -3.75 -1.15) + (end -2.25 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5a9e2a34-dbd4-4e1c-9a2c-c5713dd10bc2") + ) + (fp_line + (start -3.75 1.15) + (end -3.75 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3088aedd-ade8-4024-8e4f-5223a0461dec") + ) + (fp_line + (start -3.75 1.85) + (end -2.25 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1ba6dbbe-5b3d-4752-9d1c-19e9a1625310") + ) + (fp_line + (start -3 -1.85) + (end -3 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9a519042-42ea-471a-88d1-e6dc00131c77") + ) + (fp_line + (start -3 1.15) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "da0422b5-1493-4c33-9e71-4ed048d6cd0f") + ) + (fp_line + (start -2.25 -2.25) + (end 2.25 -2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dc841a14-4fb0-48a9-b539-87e289e718f3") + ) + (fp_line + (start -2.25 -1.85) + (end -3.75 -1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "191deefe-aba3-4c5a-a1b7-4fdc46d3471a") + ) + (fp_line + (start -2.25 1.15) + (end -3.75 1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f151384b-fa6e-434b-85df-cf2458314f1b") + ) + (fp_line + (start -2.25 2.25) + (end -2.25 -2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cc64a916-f0c0-4b04-9efa-2a8a5d59f506") + ) + (fp_line + (start 2.25 -2.25) + (end 2.25 2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5f421830-42be-4b42-9f1e-c7138aed7c99") + ) + (fp_line + (start 2.25 -1.15) + (end 3.75 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "73eff686-456b-430c-a878-5bb7d22a3c66") + ) + (fp_line + (start 2.25 1.15) + (end 3.75 1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e1065b21-e4f1-4558-9158-fce5ff97cec1") + ) + (fp_line + (start 2.25 2.25) + (end -2.25 2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1016a69d-877c-4364-ab12-0b5afbb2ce66") + ) + (fp_line + (start 3 -1.85) + (end 3 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "adaa0472-133f-40d6-b80a-23b5742df5e4") + ) + (fp_line + (start 3 1.15) + (end 3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "077d1de0-d9a0-47d4-b955-5b84aa19535c") + ) + (fp_line + (start 3.75 -1.85) + (end 2.25 -1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "607d4909-0057-410b-98e3-30f3ca8192ba") + ) + (fp_line + (start 3.75 -1.15) + (end 3.75 -1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "da628cd5-a654-4178-bfaf-7fdc29a016b9") + ) + (fp_line + (start 3.75 1.15) + (end 3.75 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a0fe25f8-2117-4e06-ac6f-c3fbb797c4f0") + ) + (fp_line + (start 3.75 1.85) + (end 2.25 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c6dfb4f3-241c-4926-8e42-05e508f2b140") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "f79a05e9-5bb2-4648-b55c-0e0b9739563c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "f1dc1080-12a1-4524-b798-7305e7a7ab78") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd rect + (at -3.6 -1.5) + (size 1.6 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "unconnected-(SW2-Pad1)") + (pinfunction "1") + (pintype "passive") + (uuid "79489d04-b348-4402-b441-ebb8b793cc75") + ) + (pad "1" smd rect + (at 3.6 -1.5) + (size 1.6 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "unconnected-(SW2-Pad1)") + (pinfunction "1") + (pintype "passive") + (uuid "a8160375-083b-4268-8d1b-065ca78e00e0") + ) + (pad "2" smd rect + (at -3.6 1.5) + (size 1.6 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "unconnected-(SW2-Pad2)") + (pinfunction "2") + (pintype "passive") + (uuid "e6c560b0-8bf1-4dbf-a8be-4c87f361bf4b") + ) + (pad "2" smd rect + (at 3.6 1.5) + (size 1.6 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "unconnected-(SW2-Pad2)") + (pinfunction "2") + (pintype "passive") + (uuid "37d19d0a-2b26-4486-b826-0541680bec20") + ) + (model "${KICAD8_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_TL3305B.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3" + (layer "F.Cu") + (uuid "6ab5b1db-0996-490d-8407-55fe2d5ba66c") + (at 115 115) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (property "Reference" "MH3" + (at 5 0 0) + (layer "F.SilkS") + (uuid "25d984d5-5e26-4a39-a200-1f9ae7542f12") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole_3.2mm_M3" + (at 0 4.2 0) + (layer "F.Fab") + (uuid "b7d97487-42df-43bc-9075-d155b20fe2cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "33892853-105a-4a15-b53e-ea09599b9548") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd783196-f8c1-45ed-b5d1-835b1a62ace1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ee57ac45-3f3f-4091-8c29-5a7c67cf16e3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 3.2 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "de80ad89-055f-498e-84fd-6904dabd5a0b") + ) + (fp_circle + (center 0 0) + (end 3.45 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "76104ac9-919d-4105-90bb-055ea1cb5fad") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e5dbdaa4-0788-4ed4-9e26-080ce94e7316") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3.2 3.2) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (uuid "480e5dc9-7598-4f32-b4c7-8b507a711fd1") + ) + ) + (footprint "RF_Module:ESP32-S2-MINI-1" + (layer "F.Cu") + (uuid "6f318d98-6bf2-4d60-92fb-11be69979cc1") + (at 145.05 75.25) + (descr "2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf") + (tags "2.4 GHz Wi-Fi Bluetooth external antenna espressif 20*15.4mm") + (property "Reference" "U1" + (at -5.95 11.85 0) + (unlocked yes) + (layer "F.SilkS") + (uuid "c6bc5b65-83ba-4d1d-b779-7e13fda5794b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "ESP32-S3-MINI-1" + (at 0 3.55 0) + (unlocked yes) + (layer "F.Fab") + (uuid "030200af-21ba-4b8c-93fa-50948171d23f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "RF_Module:ESP32-S2-MINI-1" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ab7b071f-9b62-4d0f-aac1-08b381325c99") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "27028fd8-700f-4255-a49d-4ba6f9e43231") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "MCU with WLAN" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3b66bb97-f370-40f7-87b6-b76a6c5a72e4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "ESP32-S3-MINI-1-N8" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8a73a032-dda5-4113-b5ef-4d1da5b6efc5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Espressif Systems" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "483f944c-1a69-4362-aa8e-fd4a78a1b606") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "ESP32?S*MINI?1") + (path "/1d27c785-80ad-4e14-9406-8515becf138a") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -8.075 -10.6) + (end -8.075 -8.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42361d69-1a62-46a0-b49d-4d67e29c8455") + ) + (fp_line + (start -8.075 -10.6) + (end -5.625 -10.6) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "85aac0ed-cfa8-4f24-a548-54905a597b0d") + ) + (fp_line + (start -7.8 -10.35) + (end 7.8 -10.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "56d543b6-799a-4955-a1a8-1e4a36d9ba16") + ) + (fp_line + (start -7.8 10.35) + (end -7.8 -10.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d5d1fabe-1408-4420-a549-90bb3ef849f8") + ) + (fp_line + (start 7.8 -10.35) + (end 7.8 10.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "091e4dd4-eaa0-4b03-8548-7200ef468990") + ) + (fp_line + (start 7.8 10.35) + (end -7.8 10.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a4e485ff-ca3a-463f-94f3-d12c8e89c694") + ) + (fp_poly + (pts + (xy -7.975 -3.4) (xy -8.311 -3.16) (xy -8.311 -3.64) (xy -7.975 -3.4) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "8ead062f-b5cd-4fde-90b4-37c36aa7d6e2") + ) + (fp_line + (start -22.7 -24.75) + (end 22.7 -24.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "90c76edf-64af-4e97-ba5d-e771c679fa05") + ) + (fp_line + (start -22.7 -5.25) + (end -22.7 -24.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "18021281-db30-438e-b0aa-5e615475a35b") + ) + (fp_line + (start -7.95 -5.25) + (end -22.7 -5.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8e32323a-8ab3-4930-8ff7-a2014c987ad6") + ) + (fp_line + (start -7.95 10.5) + (end -7.95 -5.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e32ff1f5-a349-4cfa-b6b1-89c116f4901a") + ) + (fp_line + (start 7.95 -5.25) + (end 7.95 10.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4e05d84a-2ba5-4f5b-ae94-5afe917dd6f7") + ) + (fp_line + (start 7.95 -5.25) + (end 22.7 -5.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3ce5bee3-efc8-47d8-b372-ec77436e1091") + ) + (fp_line + (start 7.95 10.5) + (end -7.95 10.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8ca641a6-044f-4ebf-9fec-ce4cc4328cbe") + ) + (fp_line + (start 22.7 -5.25) + (end 22.7 -24.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2e38b717-4389-4ab3-87b3-e98bcb054c3f") + ) + (fp_line + (start -7.7 -9.75) + (end 7.7 -9.75) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e9af683f-3e5f-4ab4-baaa-d2821fb2aead") + ) + (fp_line + (start -7.7 -5.25) + (end 7.7 -5.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "82620125-8936-4e1d-ad02-b3249b5c8856") + ) + (fp_line + (start -7.7 10.25) + (end -7.7 -9.75) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "40e48f10-b55a-45ed-9180-bc19491562b2") + ) + (fp_line + (start -7.1 -9.15) + (end -4.1 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "1b6b01fa-7035-4bfb-aa3e-70a93060c92f") + ) + (fp_line + (start -7.1 -6) + (end -7.1 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "c931345e-714d-4878-b3e2-e678ef5e0656") + ) + (fp_line + (start -5.6 -6) + (end -5.6 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "f2330bbb-41b7-4956-830e-1befc095bcb6") + ) + (fp_line + (start -4.1 -9.15) + (end -4.1 -6.95) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "629ee70a-fc45-4ef3-8d07-c305e67f6e8e") + ) + (fp_line + (start -4.1 -6.95) + (end -1.3 -6.95) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "8dabdc08-ebb8-47a1-90d1-80355db85f6e") + ) + (fp_line + (start -1.3 -9.15) + (end 1.5 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "cc1c8b9c-49b0-434f-a5a6-28bd4a16f7cf") + ) + (fp_line + (start -1.3 -6.95) + (end -1.3 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "7dbd3fec-d067-4ba5-bfe8-49f2e28f5ff1") + ) + (fp_line + (start 1.5 -9.15) + (end 1.5 -6.95) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "d5c31d04-b848-4237-8f5d-6a84fe1b5eab") + ) + (fp_line + (start 1.5 -6.95) + (end 4.3 -6.95) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "436632b6-bee4-4a14-808f-694056bbbd8d") + ) + (fp_line + (start 4.3 -9.15) + (end 7.1 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "cc7ae7bf-f895-4d4a-8246-d6af4e943429") + ) + (fp_line + (start 4.3 -6.95) + (end 4.3 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "c6daa71c-1521-4bc4-b78d-96a1e2f2612d") + ) + (fp_line + (start 7.1 -9.15) + (end 7.1 -6) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "02412d19-96dc-4c16-baf9-d441b5afc619") + ) + (fp_line + (start 7.7 -9.75) + (end 7.7 10.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dd7f8358-9b11-465b-b0aa-621d43198b3b") + ) + (fp_line + (start 7.7 10.25) + (end -7.7 10.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4fffc4bf-10e6-4561-ac18-9157e80b5fb3") + ) + (fp_circle + (center -6 8.55) + (end -5.888197 8.55) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "673f4205-e2c9-4e73-af9b-f029472237a9") + ) + (fp_text user "Antenna" + (at 0 -7.675 0) + (layer "Cmts.User") + (uuid "778d3269-1300-43d6-b431-8cd7ae8d0475") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "Keepout Area" + (at -0.01 -15.36 0) + (layer "Cmts.User") + (uuid "e5784100-1dff-433f-bff1-fceba9328638") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 0 5.05 0) + (unlocked yes) + (layer "F.Fab") + (uuid "257d2576-8fc4-4e1a-88b9-6c8b11d75777") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd rect + (at -7 -3.4) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "power_in") + (uuid "af02afbf-d603-4d3e-81c5-114f3f4523af") + ) + (pad "2" smd rect + (at -7 -2.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "a36f7b3c-503a-48cc-b8d8-73b1fe7a3f0e") + ) + (pad "3" smd rect + (at -7 -1.7) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "unconnected-(U1-3V3-Pad3)") + (pinfunction "3V3") + (pintype "power_in") + (uuid "22cfef38-2bf9-4594-a76b-23eb08057020") + ) + (pad "4" smd rect + (at -7 -0.85) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 14 "unconnected-(U1-IO0-Pad4)") + (pinfunction "IO0") + (pintype "bidirectional") + (uuid "30acc00d-6fd2-4713-8baf-e6c9cf2040d8") + ) + (pad "5" smd rect + (at -7 0) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 18 "unconnected-(U1-IO1-Pad5)") + (pinfunction "IO1") + (pintype "bidirectional") + (uuid "3f705306-5fb3-427d-9bc1-9df2d1831fc2") + ) + (pad "6" smd rect + (at -7 0.85) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 31 "VERSION") + (pinfunction "IO2") + (pintype "bidirectional") + (uuid "8c4e3f73-5c97-4774-80e0-25ce969b0771") + ) + (pad "7" smd rect + (at -7 1.7) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 16 "unconnected-(U1-IO3-Pad7)") + (pinfunction "IO3") + (pintype "bidirectional") + (uuid "397b0c14-dae9-42c9-929e-6efe0a727204") + ) + (pad "8" smd rect + (at -7 2.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 44 "unconnected-(U1-IO4-Pad8)") + (pinfunction "IO4") + (pintype "bidirectional") + (uuid "f671e502-32f8-4fa1-a32b-bf864fe80c3a") + ) + (pad "9" smd rect + (at -7 3.4) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 35 "unconnected-(U1-IO5-Pad9)") + (pinfunction "IO5") + (pintype "bidirectional") + (uuid "9fcc7473-cf46-43b7-9050-e83d4509ebc9") + ) + (pad "10" smd rect + (at -7 4.25) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 39 "unconnected-(U1-IO6-Pad10)") + (pinfunction "IO6") + (pintype "bidirectional") + (uuid "c24c4d54-5433-496c-88c3-279c557195c6") + ) + (pad "11" smd rect + (at -7 5.1) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 40 "unconnected-(U1-IO7-Pad11)") + (pinfunction "IO7") + (pintype "bidirectional") + (uuid "c98aade5-4747-4470-bce0-d4fdd9a33b80") + ) + (pad "12" smd rect + (at -7 5.95) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 29 "unconnected-(U1-IO8-Pad12)") + (pinfunction "IO8") + (pintype "bidirectional") + (uuid "84222269-cf73-4a68-8cb6-3d560ca2e103") + ) + (pad "13" smd rect + (at -7 6.8) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 15 "unconnected-(U1-IO9-Pad13)") + (pinfunction "IO9") + (pintype "bidirectional") + (uuid "32ffc82d-ce7c-496a-881f-8597efe1c8c8") + ) + (pad "14" smd rect + (at -7 7.65) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 24 "unconnected-(U1-IO10-Pad14)") + (pinfunction "IO10") + (pintype "bidirectional") + (uuid "70d617c5-41fc-47a4-b8b9-338ed816eaa4") + ) + (pad "15" smd rect + (at -7 8.5) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 19 "unconnected-(U1-IO11-Pad15)") + (pinfunction "IO11") + (pintype "bidirectional") + (uuid "3fc7e60d-9175-44ce-8e07-b7eab0721d12") + ) + (pad "16" smd rect + (at -5.95 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 12 "unconnected-(U1-IO12-Pad16)") + (pinfunction "IO12") + (pintype "bidirectional") + (uuid "292bb384-78cb-4002-bf4a-18947c897637") + ) + (pad "17" smd rect + (at -5.1 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 45 "unconnected-(U1-IO13-Pad17)") + (pinfunction "IO13") + (pintype "bidirectional") + (uuid "f8f4c52b-d11c-4aef-92f4-1714669d7514") + ) + (pad "18" smd rect + (at -4.25 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 33 "unconnected-(U1-IO14-Pad18)") + (pinfunction "IO14") + (pintype "bidirectional") + (uuid "8d2abb0f-a0c5-4f15-8cc5-09db28692e57") + ) + (pad "19" smd rect + (at -3.4 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 41 "unconnected-(U1-IO15-Pad19)") + (pinfunction "IO15") + (pintype "bidirectional") + (uuid "c9bb040a-9ce0-46e6-906f-e689533d7745") + ) + (pad "20" smd rect + (at -2.55 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 30 "unconnected-(U1-IO16-Pad20)") + (pinfunction "IO16") + (pintype "bidirectional") + (uuid "84de1763-d627-492e-95f3-37473e51997f") + ) + (pad "21" smd rect + (at -1.7 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 21 "unconnected-(U1-IO17-Pad21)") + (pinfunction "IO17") + (pintype "bidirectional") + (uuid "516a9a73-6087-4e86-b420-ff34fcda5d22") + ) + (pad "22" smd rect + (at -0.85 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "unconnected-(U1-IO18-Pad22)") + (pinfunction "IO18") + (pintype "bidirectional") + (uuid "1c0f2ad5-1de3-4376-b479-8ae377ca418d") + ) + (pad "23" smd rect + (at 0 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "unconnected-(U1-IO19-Pad23)") + (pinfunction "IO19") + (pintype "bidirectional") + (uuid "2349be5d-0756-4f47-9f67-81198ad946ca") + ) + (pad "24" smd rect + (at 0.85 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 23 "unconnected-(U1-IO20-Pad24)") + (pinfunction "IO20") + (pintype "bidirectional") + (uuid "5c8b0f83-c225-4709-a32d-bb049ffd613f") + ) + (pad "25" smd rect + (at 1.7 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "unconnected-(U1-IO21-Pad25)") + (pinfunction "IO21") + (pintype "bidirectional") + (uuid "279e9464-24d4-4799-8622-3ce21415c9e2") + ) + (pad "26" smd rect + (at 2.55 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "unconnected-(U1-IO26-Pad26)") + (pinfunction "IO26") + (pintype "bidirectional") + (uuid "1f57d917-4788-4d1f-a796-59bb1ce1b433") + ) + (pad "27" smd rect + (at 3.4 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 22 "unconnected-(U1-IO47-Pad27)") + (pinfunction "IO47") + (pintype "bidirectional") + (uuid "51e87d02-28db-4327-b51e-be5f20e36fc6") + ) + (pad "28" smd rect + (at 4.25 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 46 "unconnected-(U1-IO33-Pad28)") + (pinfunction "IO33") + (pintype "bidirectional") + (uuid "fbd8c7a0-a5c9-4b9a-990f-9edeb71f175c") + ) + (pad "29" smd rect + (at 5.1 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 25 "unconnected-(U1-IO34-Pad29)") + (pinfunction "IO34") + (pintype "bidirectional") + (uuid "72431538-2bed-45b5-9bdd-84d4d9869f2b") + ) + (pad "30" smd rect + (at 5.95 9.55 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 36 "unconnected-(U1-IO48-Pad30)") + (pinfunction "IO48") + (pintype "bidirectional") + (uuid "a36f1949-4198-46e4-ada8-5df49efa09c4") + ) + (pad "31" smd rect + (at 7 8.5) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 34 "unconnected-(U1-IO35-Pad31)") + (pinfunction "IO35") + (pintype "bidirectional") + (uuid "9fb17bb9-682d-4ab8-be69-b1259ecc5ec4") + ) + (pad "32" smd rect + (at 7 7.65) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 28 "unconnected-(U1-IO36-Pad32)") + (pinfunction "IO36") + (pintype "bidirectional") + (uuid "7e95c1b7-44ac-44a6-b669-cdfaa8a47c05") + ) + (pad "33" smd rect + (at 7 6.8) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 13 "unconnected-(U1-IO37-Pad33)") + (pinfunction "IO37") + (pintype "bidirectional") + (uuid "29cc9f41-0476-4f6c-94fe-e7b4fd84a480") + ) + (pad "34" smd rect + (at 7 5.95) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 26 "unconnected-(U1-IO38-Pad34)") + (pinfunction "IO38") + (pintype "bidirectional") + (uuid "74e64a6d-8fdd-416a-b007-89bd62d5a0fd") + ) + (pad "35" smd rect + (at 7 5.1) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 27 "unconnected-(U1-IO39-Pad35)") + (pinfunction "IO39") + (pintype "bidirectional") + (uuid "789b4895-f79d-431f-ab3d-6782ad6a1f32") + ) + (pad "36" smd rect + (at 7 4.25) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "unconnected-(U1-IO40-Pad36)") + (pinfunction "IO40") + (pintype "bidirectional") + (uuid "a70ab306-550d-41b6-b95c-8bb9bf3d80e6") + ) + (pad "37" smd rect + (at 7 3.4) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 20 "unconnected-(U1-IO41-Pad37)") + (pinfunction "IO41") + (pintype "bidirectional") + (uuid "4dc748ab-96dc-44a1-8327-d4b459d7418b") + ) + (pad "38" smd rect + (at 7 2.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 43 "unconnected-(U1-IO42-Pad38)") + (pinfunction "IO42") + (pintype "bidirectional") + (uuid "f0a52034-e582-4abc-aad6-9655422fc5a2") + ) + (pad "39" smd rect + (at 7 1.7) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 17 "unconnected-(U1-TXD0-Pad39)") + (pinfunction "TXD0") + (pintype "bidirectional") + (uuid "3a9c4e06-ae4d-403f-90e0-f57bd3686ce4") + ) + (pad "40" smd rect + (at 7 0.85) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 32 "unconnected-(U1-RXD0-Pad40)") + (pinfunction "RXD0") + (pintype "bidirectional") + (uuid "8c7750c0-29c9-4e92-a1f7-e0026c31a716") + ) + (pad "41" smd rect + (at 7 0) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 42 "unconnected-(U1-IO45-Pad41)") + (pinfunction "IO45") + (pintype "bidirectional") + (uuid "e743de1b-e5c1-41b5-8c5b-c47711ff2368") + ) + (pad "42" smd rect + (at 7 -0.85) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "fdf8e645-26ec-4b3b-8159-47b858d64f91") + ) + (pad "43" smd rect + (at 7 -1.7) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "350e8596-15ce-4e3b-b62d-90bd845b072a") + ) + (pad "44" smd rect + (at 7 -2.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "unconnected-(U1-IO46-Pad44)") + (pinfunction "IO46") + (pintype "bidirectional") + (uuid "1f2fc670-2bb1-4bee-8392-ea2c523c0233") + ) + (pad "45" smd rect + (at 7 -3.4) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 38 "unconnected-(U1-EN-Pad45)") + (pinfunction "EN") + (pintype "input") + (uuid "a98ebe5b-40b8-484e-8bb4-1219a82acdbf") + ) + (pad "46" smd rect + (at 5.95 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "6493f2c5-2b08-4599-80d3-f008e1b9c3eb") + ) + (pad "47" smd rect + (at 5.1 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "e97f21a1-a5c6-4918-b6f5-921a735fe270") + ) + (pad "48" smd rect + (at 4.25 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "0f9de92e-213f-4fdd-b5b0-a6ea7be03fde") + ) + (pad "49" smd rect + (at 3.4 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "1b386505-bc2e-4903-acc3-845babb1131c") + ) + (pad "50" smd rect + (at 2.55 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "2163404a-c6c5-4f4c-aa47-6ae7ffa35ab3") + ) + (pad "51" smd rect + (at 1.7 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "0ad775b7-ee7f-4a5f-9648-510d932630ec") + ) + (pad "52" smd rect + (at 0.85 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "c527de48-3aee-4e20-90bd-e02e6706cb09") + ) + (pad "53" smd rect + (at 0 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "7c18a996-9c8e-4749-806b-9c060e5ae80d") + ) + (pad "54" smd rect + (at -0.85 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "55e8d52a-30ee-40d4-867c-17daf3e142d6") + ) + (pad "55" smd rect + (at -1.7 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "01965c22-afa1-4287-b56b-05697fbd9883") + ) + (pad "56" smd rect + (at -2.55 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "f45f293f-3242-4ca8-966b-c469f011a3ad") + ) + (pad "57" smd rect + (at -3.4 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "b8594af9-987e-4226-9996-6cdfd765fa03") + ) + (pad "58" smd rect + (at -4.25 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "d2546546-a13a-407a-924d-c40afefe2e78") + ) + (pad "59" smd rect + (at -5.1 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "df9d9516-581b-4263-9953-53250bcd8321") + ) + (pad "60" smd rect + (at -5.95 -4.45 90) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "57f1d86e-6a02-456b-bc00-92e2f9018352") + ) + (pad "61" smd roundrect + (at -1.65 0.9) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0) + (chamfer_ratio 0.33) + (chamfer top_left) + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "7bd6f6f3-3377-40e2-8506-acf79466a19f") + ) + (pad "61" smd rect + (at -1.65 2.55) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "1023cb57-c73f-4d47-a544-83e06f8aacab") + ) + (pad "61" smd rect + (at -1.65 4.2) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "4615bad2-68a3-4f86-82b9-67a7f882b9a3") + ) + (pad "61" smd rect + (at 0 0.9) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "2ec3aeed-030e-4778-8d33-381d544eaf1e") + ) + (pad "61" smd rect + (at 0 2.55) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "ff1e61fe-e95c-4bda-8d5c-ba797126be30") + ) + (pad "61" smd rect + (at 0 4.2) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "ca1334a3-c410-4442-9409-b384b8ded466") + ) + (pad "61" smd rect + (at 1.65 0.9) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "753fba8d-9cbc-4e87-87a5-c1bf989b24b2") + ) + (pad "61" smd rect + (at 1.65 2.55) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "c87348bc-fd8e-4f0e-869e-3e4be0f014ae") + ) + (pad "61" smd rect + (at 1.65 4.2) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "d16b6f95-38dc-4466-821a-a336de7895be") + ) + (pad "62" smd rect + (at -7 -4.45) + (size 0.8 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "9dde42df-2f35-4cbe-aa05-92d12c3ed7ff") + ) + (pad "63" smd rect + (at -7 9.55) + (size 0.8 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "10864ec2-1b9a-4aae-b315-9a98c48314f3") + ) + (pad "64" smd rect + (at 7 9.55) + (size 0.8 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "f524342e-cdcb-463e-8fac-3efb4f72f3ba") + ) + (pad "65" smd rect + (at 7 -4.45) + (size 0.8 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U1-GND-Pad1)") + (pinfunction "GND") + (pintype "passive") + (uuid "4cf94f64-ac61-4a97-b923-5cfca787fae1") + ) + (zone + (net 0) + (net_name "") + (layers "*.Cu") + (uuid "18faa669-fe98-4916-91fc-616303d29fe0") + (name "Antenna") + (hatch full 0.508) + (connect_pads + (clearance 0) + ) + (min_thickness 0.254) + (filled_areas_thickness no) + (keepout + (tracks not_allowed) + (vias not_allowed) + (pads not_allowed) + (copperpour not_allowed) + (footprints not_allowed) + ) + (fill + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 167.75 70) (xy 122.35 70) (xy 122.35 50.5) (xy 167.75 50.5) + ) + ) + ) + (model "${KICAD8_3DMODEL_DIR}/RF_Module.3dshapes/ESP32-S2-MINI-1.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3" + (layer "F.Cu") + (uuid "75fb4e43-f156-4244-99cc-cb38eca8705f") + (at 115 75) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (property "Reference" "MH1" + (at 5 0 0) + (layer "F.SilkS") + (uuid "c81eba26-05f8-43f0-a79a-e56881269dcc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole_3.2mm_M3" + (at 0 4.2 0) + (layer "F.Fab") + (uuid "b857c193-2bec-471c-ba15-96f5402f44b6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "33892853-105a-4a15-b53e-ea09599b9548") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd783196-f8c1-45ed-b5d1-835b1a62ace1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ee57ac45-3f3f-4091-8c29-5a7c67cf16e3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 3.2 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "9443c65b-7f17-46fc-8a0a-534b8bb1a343") + ) + (fp_circle + (center 0 0) + (end 3.45 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "f5ddc7d3-5ac7-4ae6-9248-0a27e9fb0786") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "75bac65e-ec69-4837-9892-2cd85e716f49") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3.2 3.2) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (uuid "08b8af35-9b5b-4a8e-8c50-1fd8d4fdfb9e") + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "77796550-d030-4dd2-a700-51628ee6b0d2") + (at 137.15 106.29) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R2" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "9cc5461f-870e-42e0-9dee-89d745b8e658") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10R" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "88e5f132-3856-4af5-ba30-04b3e0107fdb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fa3775ab-21fe-43d8-9c19-bda968341eed") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDO0000/AOA0000C331.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a45fb502-40ff-4d2b-b227-c93e0602d099") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b6830b2d-3e08-41cd-8c62-6b37080b07bf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "ERJ-PA3F10R0V" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "76f68d66-7a74-4ad7-bd6f-dbe46f555de8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "309e8cb0-c0a6-497d-8074-86f642a64ca5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/7c450492-392a-42f0-8291-06d7ab953e15") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b71591dc-b551-491f-9d33-c3ed06b80f33") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aedbba33-a59c-40b7-8f09-af2679527a30") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2b55f5fc-b5bf-4f64-9c0c-a9f8d4358739") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8ef649fa-657c-4ab7-9d42-fe763cb0f695") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "294e7281-71eb-45fc-9a3b-ff4a4b2e4998") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7a51d3c7-d522-4347-93a3-76f884f50e71") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a695edb3-9184-4d06-881e-762d5754cec8") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c1955dbe-c613-4dc0-a4ea-1b0fa1478ad6") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a12a7341-fec3-4fa1-abcc-9a6adb9782ab") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f6b57be6-30cb-4f09-a439-168648abecf8") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "b85becd0-6c8d-436f-83b3-14b2dda84c70") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 86 "Net-(D2-K)") + (pintype "passive") + (uuid "03226731-f518-4f23-b2ee-7cf05058a890") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 90 "unconnected-(R2-Pad2)") + (pintype "passive") + (uuid "e683690f-94a1-4806-885d-76eb3d8d4649") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "81f30326-eb95-4d6e-b2ca-fdd4ccb488de") + (at 137.15 103.78) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R1" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "9e1389dd-1f56-41e8-8402-ce35866d6896") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "130R" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "f4478ec0-06b5-4116-82b9-adb6e1289339") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "40cf063a-5b65-4362-a047-c5fc23040eea") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C304.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c12216ae-0f60-4299-9220-e8986c4f481b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "31016749-7df1-41e9-86f4-f051ebf7de18") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "ERJ-3EKF1300V" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "baee97f4-3a7e-43ab-be43-ca198b7ebc3e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "09d211e1-8858-4939-8a2a-e2c94ee323cc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/da7e4072-0bc0-43cc-a178-0ab1edcfc920") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1743024f-3f81-4fb5-a751-b3b0812e9711") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6813b110-e846-442d-ac5a-8c4505e0c311") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c7daa8fd-fe45-4e73-ac5e-ea7a1979af92") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "033691fa-f549-48c5-a10a-da4396ad95a1") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fbf7f34c-e816-4864-97ea-02038d1ac7d9") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3535de38-6c95-4b8b-9b58-7f56c7ade431") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4c849d6b-ef9a-48dc-8627-1e11856a9706") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fbd0ea83-22e9-4e3e-b97d-7d050d6eeb0d") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dcfba27a-93bd-43ab-bad9-a39cc2ae5b75") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "78d068b0-478e-4dae-813d-f503b9449097") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "6c35fbd5-a15d-4f74-bc50-f18f3b37fe07") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 83 "Net-(D1-K)") + (pintype "passive") + (uuid "f1044c61-dbde-4806-8b15-bf59b2ab1313") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 89 "unconnected-(R1-Pad2)") + (pintype "passive") + (uuid "6f7a9136-332d-47d7-8132-0b6cdc796cfa") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3" + (layer "F.Cu") + (uuid "83cf477e-7355-4e23-8ebe-72d9f3b3ac24") + (at 175 115) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (property "Reference" "MH4" + (at -5 0 0) + (layer "F.SilkS") + (uuid "c34f7251-d6e7-4893-a0bb-d84bee0a4b5b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole_3.2mm_M3" + (at 0 4.2 0) + (layer "F.Fab") + (uuid "0f96ce3b-c472-42bb-af23-e1d690760f98") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "33892853-105a-4a15-b53e-ea09599b9548") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd783196-f8c1-45ed-b5d1-835b1a62ace1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ee57ac45-3f3f-4091-8c29-5a7c67cf16e3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 3.2 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "6a005293-a8bf-4851-b41b-28025079e0e6") + ) + (fp_circle + (center 0 0) + (end 3.45 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "d18a0a04-ed3a-46d9-a046-7aa55ea86fdc") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "5a515ddd-483e-4b35-8e83-bcba3d438ed2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3.2 3.2) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (uuid "eb0ebad2-901f-4d89-a07a-f7c788ddbfb3") + ) + ) + (footprint "Button_Switch_SMD:SW_SPST_TL3305B" + (layer "F.Cu") + (uuid "855c0f43-1701-4b84-a746-499773f5cd2b") + (at 125 85) + (descr "https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf") + (tags "TL3305 Series Tact Switch") + (property "Reference" "SW1" + (at 0 -3.2 0) + (layer "F.SilkS") + (uuid "93f04126-8b69-4dbd-9fda-7641d39bdea9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SW_Push" + (at 0 3.2 0) + (layer "F.Fab") + (uuid "fa8ce7cd-0757-4eac-911b-59113e93a986") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Button_Switch_SMD:SW_SPST_TL3305B" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c959d9c3-824f-4ad9-8aaf-e77b5f703e24") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.e-switch.com/wp-content/uploads/2024/08/TL3305.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ba1fc85-0a5e-41b8-9d37-f806071e5380") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Factory reset" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f1b2e42f-9d3b-4b29-a4a7-e63ed122cd01") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "TL3305BF260QG" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "810461ea-fa50-410d-b368-e7327ad836cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "E-Switch" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "edb54965-3885-49cd-b805-cf3c216d3d8e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/69e6d5d3-d27a-49b0-b7f4-ff672ddcc6a0") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -2.37 -2.37) + (end -2.37 -1.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "01bda90a-1844-4d07-b984-3b701eddf048") + ) + (fp_line + (start -2.37 -2.37) + (end 2.37 -2.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5211c03d-206c-42de-877e-2f8c900cefd2") + ) + (fp_line + (start -2.37 1.03) + (end -2.37 -1.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8c4530d-9b66-44f1-847e-8f0440aa09cc") + ) + (fp_line + (start -2.37 2.37) + (end -2.37 1.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "641ef68f-b931-46f6-b9ec-92aaf32e1d29") + ) + (fp_line + (start -2.37 2.37) + (end 2.37 2.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "411d27c6-ae3c-44e3-88c9-ee781a650295") + ) + (fp_line + (start 2.37 -2.37) + (end 2.37 -1.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d4bcd963-41fd-4427-8b78-4c3415a2c840") + ) + (fp_line + (start 2.37 1.03) + (end 2.37 -1.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a0c18324-b979-4181-a414-05d110595b2d") + ) + (fp_line + (start 2.37 2.37) + (end 2.37 1.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf3f019c-4a62-4455-94cd-b436bb5747b3") + ) + (fp_line + (start -4.65 -2.5) + (end 4.65 -2.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "790d1767-55fc-4fec-b356-efc21020dae1") + ) + (fp_line + (start -4.65 2.5) + (end -4.65 -2.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b1ef13d0-5e73-408f-abac-94987a9590b0") + ) + (fp_line + (start 4.65 -2.5) + (end 4.65 2.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "030275af-f716-4506-8c5a-be18a25ae1c0") + ) + (fp_line + (start 4.65 2.5) + (end -4.65 2.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c5c92cd7-60d1-4188-a51a-244e054c7232") + ) + (fp_line + (start -3.75 -1.85) + (end -3.75 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6790f9e8-47c2-4ba8-a81a-363895abbcb8") + ) + (fp_line + (start -3.75 -1.15) + (end -2.25 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d1235637-bd3e-4f1a-b29e-09e7c81850dc") + ) + (fp_line + (start -3.75 1.15) + (end -3.75 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8324c0bb-4d0e-4cac-8d17-17a6c1ec2dc3") + ) + (fp_line + (start -3.75 1.85) + (end -2.25 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "83716376-65bf-4a83-aebf-dc2f66ceaa93") + ) + (fp_line + (start -3 -1.85) + (end -3 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f6a1a5c4-1519-45e6-ba7a-2ab5815aff0f") + ) + (fp_line + (start -3 1.15) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f9ff0c35-f581-4f14-b259-994e25b808c1") + ) + (fp_line + (start -2.25 -2.25) + (end 2.25 -2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "974f3203-03f2-4153-ba96-5ae6b27b3a8b") + ) + (fp_line + (start -2.25 -1.85) + (end -3.75 -1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2bcaf175-839b-462f-8ecc-07d8d099695c") + ) + (fp_line + (start -2.25 1.15) + (end -3.75 1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1c755d32-4bb0-4885-b9e0-24f133f6eec5") + ) + (fp_line + (start -2.25 2.25) + (end -2.25 -2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a443c8a3-2434-4fd7-b64d-5d8b0ee597d9") + ) + (fp_line + (start 2.25 -2.25) + (end 2.25 2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c3356f08-96ba-40e4-a1ce-4ef84342831c") + ) + (fp_line + (start 2.25 -1.15) + (end 3.75 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6ce88f13-89a4-4b76-8c68-5efb65127ff4") + ) + (fp_line + (start 2.25 1.15) + (end 3.75 1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "00346396-30f9-4e48-9b66-7b6c73f7cd0f") + ) + (fp_line + (start 2.25 2.25) + (end -2.25 2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2326d8bd-1bcd-4b89-9623-663016a86597") + ) + (fp_line + (start 3 -1.85) + (end 3 -1.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bbed90b4-6204-4169-a275-ee020d86c6c8") + ) + (fp_line + (start 3 1.15) + (end 3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a013e406-dacc-4f64-bdf0-3bc7bb4d91b8") + ) + (fp_line + (start 3.75 -1.85) + (end 2.25 -1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7af0b8d7-d7aa-4062-b73e-ac38f35beb94") + ) + (fp_line + (start 3.75 -1.15) + (end 3.75 -1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ad05a525-f92e-459b-a703-2201f5a007d5") + ) + (fp_line + (start 3.75 1.15) + (end 3.75 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "05947ee3-5840-4d24-bac4-b189337c610a") + ) + (fp_line + (start 3.75 1.85) + (end 2.25 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7ed7f624-b0dd-48e7-8e95-a8923b775c76") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "d79846db-a249-4ad4-98b5-96ed8936d695") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "dc15cb9a-f55f-4048-8f19-e7e24d29592b") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd rect + (at -3.6 -1.5) + (size 1.6 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "unconnected-(SW1-Pad1)") + (pinfunction "1") + (pintype "passive") + (uuid "b37c3abc-1dce-410d-a9c2-80d20db31241") + ) + (pad "1" smd rect + (at 3.6 -1.5) + (size 1.6 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "unconnected-(SW1-Pad1)") + (pinfunction "1") + (pintype "passive") + (uuid "c5b532ac-4a88-417a-b112-398feab4de8b") + ) + (pad "2" smd rect + (at -3.6 1.5) + (size 1.6 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "unconnected-(SW1-Pad2)") + (pinfunction "2") + (pintype "passive") + (uuid "4b01f643-8157-46f8-9428-4289de79375b") + ) + (pad "2" smd rect + (at 3.6 1.5) + (size 1.6 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "unconnected-(SW1-Pad2)") + (pinfunction "2") + (pintype "passive") + (uuid "e3d9b966-99e2-40aa-a25f-35a75fdcb5d4") + ) + (model "${KICAD8_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_TL3305B.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LED_SMD:LED_1206_3216Metric" + (layer "F.Cu") + (uuid "aa112aba-ce0a-4904-80cf-c1686fea4a7a") + (at 142 107.61) + (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "Reference" "D2" + (at 0 -1.82 0) + (layer "F.SilkS") + (uuid "cad96e2b-5327-44bb-b03d-adc135a10789") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "blue" + (at 0 1.82 0) + (layer "F.Fab") + (uuid "ef1eb2a5-b244-4e5c-ad3e-a6db05ffb372") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED_1206_3216Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0a31a0bc-5365-478a-ad93-5220958f5331") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://s3-us-west-2.amazonaws.com/catsy.557/Dialight_CBI_data_598-1206_Apr2018.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7a1cd797-4cfb-4aec-9c0e-80d72178c4e6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "BTL" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7a99cb95-e3c7-465a-bf75-8ec4f2472b39") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "598-8291-107F" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0bb445fb-f507-4f89-9b4f-d0c8c1155510") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Dialight" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4daf9fa7-f2af-4104-b3ba-96185f40626c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") + (path "/f9a839c7-a495-47eb-9f54-daede48765b3") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -2.285 -1.135) + (end -2.285 1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "40a9ebf5-2110-4965-8441-4758cdb85d1f") + ) + (fp_line + (start -2.285 1.135) + (end 1.6 1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e573080c-65c4-453a-adb1-26053c201dbc") + ) + (fp_line + (start 1.6 -1.135) + (end -2.285 -1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9cd6113f-2b0e-4511-bab1-e2845c3e1407") + ) + (fp_line + (start -2.28 -1.12) + (end 2.28 -1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "465bf34e-e30e-413b-a285-86aba43d5d64") + ) + (fp_line + (start -2.28 1.12) + (end -2.28 -1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9ae64913-bf63-4679-b209-ab2ded027b73") + ) + (fp_line + (start 2.28 -1.12) + (end 2.28 1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6d29d626-d59c-4d7f-98ec-ba129cac96dc") + ) + (fp_line + (start 2.28 1.12) + (end -2.28 1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c387c727-83d2-44a3-bf28-c7e012564480") + ) + (fp_line + (start -1.6 -0.4) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aae7a844-f8bb-4759-b146-7b2dcfcf2261") + ) + (fp_line + (start -1.6 0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4050746c-3529-4bc9-9d36-2f00e956e3fd") + ) + (fp_line + (start -1.2 -0.8) + (end -1.6 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1a0eae13-a238-48a0-ac1b-056a25cb6302") + ) + (fp_line + (start 1.6 -0.8) + (end -1.2 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0448f72f-0f6b-47a3-8c39-04830ddc712c") + ) + (fp_line + (start 1.6 0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "888882eb-42d6-4e77-ba15-865238faed67") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "91ee1fc6-296a-40f6-a23d-1f7cfe3ea96d") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -1.4 0) + (size 1.25 1.75) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.2) + (net 86 "Net-(D2-K)") + (pinfunction "K") + (pintype "passive") + (uuid "8f101d8f-5c55-45d2-9fa6-bcccc8277e6d") + ) + (pad "2" smd roundrect + (at 1.4 0) + (size 1.25 1.75) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.2) + (net 85 "unconnected-(D2-A-Pad2)") + (pinfunction "A") + (pintype "passive") + (uuid "15efb79d-780e-4d97-957f-3e27d595fe5c") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_DFN_QFN:VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm" + (layer "F.Cu") + (uuid "ae8ccfb1-6208-4de4-848b-b447a203b2c8") + (at 141 94) + (descr "VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py") + (tags "VQFN NoLead") + (property "Reference" "U2" + (at 0 -3.83 0) + (layer "F.SilkS") + (uuid "d18c4fab-b68e-4956-a686-c1c7fa6bfeda") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "TAS5825MRHB" + (at 0 3.83 0) + (layer "F.Fab") + (uuid "22c410f9-1cc8-45b5-ac66-407ad3b4cc00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_DFN_QFN:VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "253b8a3e-cada-40c8-8f82-4487e9b41413") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "www.ti.com/lit/ds/symlink/tas5825m.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "428c7e22-6f4e-4f94-a0f3-399565b51aac") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Audio amplifier" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e126e7a8-8fea-4a54-905d-49c6e7c6f12d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "TAS5825MRHBR" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b19602ee-e77f-4b96-9bbc-4cc2e39aa263") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "114198d7-91a4-4ee5-ab82-68404d5ebd97") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "VQFN*1EP*5x5mm*P0.5mm*") + (path "/84819cd8-71aa-4c55-98cf-f59300a49124") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -2.61 -2.135) + (end -2.61 -2.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "14f8ad4c-df12-4098-a212-614086d6bf3d") + ) + (fp_line + (start -2.61 2.61) + (end -2.61 2.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9a5e7c5b-109d-4baf-9d2b-1ead34aeff6d") + ) + (fp_line + (start -2.135 -2.61) + (end -2.31 -2.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7e66dfda-bedc-4120-abe6-2c7bc20bf85d") + ) + (fp_line + (start -2.135 2.61) + (end -2.61 2.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "575dae7a-761f-4b07-9224-4c34339e7e9d") + ) + (fp_line + (start 2.135 -2.61) + (end 2.61 -2.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c835323-8e80-42a4-8288-a1526278876e") + ) + (fp_line + (start 2.135 2.61) + (end 2.61 2.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4aa6a72f-188d-42b8-8e2c-2e8e2ec47082") + ) + (fp_line + (start 2.61 -2.61) + (end 2.61 -2.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cda8327d-c8d1-4b79-97ad-4afdd6cb7b87") + ) + (fp_line + (start 2.61 2.61) + (end 2.61 2.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e83ef72f-472f-4f85-bb27-a0f05ad1c42d") + ) + (fp_poly + (pts + (xy -2.61 -2.61) (xy -2.85 -2.94) (xy -2.37 -2.94) (xy -2.61 -2.61) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "0ef6bf76-f204-4883-b7e6-6340e430e80c") + ) + (fp_line + (start -3.13 -3.13) + (end -3.13 3.13) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ecb06725-3975-4a49-b520-908a766b3d64") + ) + (fp_line + (start -3.13 3.13) + (end 3.13 3.13) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b1c73fe8-589a-46f3-a028-c643b07914df") + ) + (fp_line + (start 3.13 -3.13) + (end -3.13 -3.13) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bf9e7078-c942-4f45-9370-4a9c9990bfa2") + ) + (fp_line + (start 3.13 3.13) + (end 3.13 -3.13) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9646be20-7426-44c1-85ad-d6051753e4b5") + ) + (fp_line + (start -2.5 -1.5) + (end -1.5 -2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6dc7b25f-1102-4964-b569-7a110ab4d45b") + ) + (fp_line + (start -2.5 2.5) + (end -2.5 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0a75b070-0137-429a-8da0-f5e2a78bd3e9") + ) + (fp_line + (start -1.5 -2.5) + (end 2.5 -2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2bbbe7c7-cd4c-45c0-8618-d382a22da535") + ) + (fp_line + (start 2.5 -2.5) + (end 2.5 2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bc5b5edb-ed20-4b4f-ad5f-ebb45af225af") + ) + (fp_line + (start 2.5 2.5) + (end -2.5 2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8a0b071e-e43a-4df8-b110-e3061a66c01a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "863a6d64-ece3-4623-9782-9b5824f61495") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" smd roundrect + (at -0.775 -0.775) + (size 1.25 1.25) + (layers "F.Paste") + (roundrect_rratio 0.2) + (uuid "34b77fd6-a81f-4d77-bbb8-4c7832e85f2b") + ) + (pad "" smd roundrect + (at -0.775 0.775) + (size 1.25 1.25) + (layers "F.Paste") + (roundrect_rratio 0.2) + (uuid "7efdc89e-1409-48a4-99fa-482e9b264c1a") + ) + (pad "" smd roundrect + (at 0.775 -0.775) + (size 1.25 1.25) + (layers "F.Paste") + (roundrect_rratio 0.2) + (uuid "a67b5ed0-94bc-402c-a4ce-effb07fedafc") + ) + (pad "" smd roundrect + (at 0.775 0.775) + (size 1.25 1.25) + (layers "F.Paste") + (roundrect_rratio 0.2) + (uuid "67896071-c459-4528-9070-d0a424d807de") + ) + (pad "1" smd roundrect + (at -2.4375 -1.75) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 66 "unconnected-(U2-BST_A+-Pad1)") + (pinfunction "BST_A+") + (pintype "passive") + (uuid "abb98cad-42bb-4540-925c-cd97926cf825") + ) + (pad "2" smd roundrect + (at -2.4375 -1.25) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 56 "unconnected-(U2-OUT_A+-Pad2)") + (pinfunction "OUT_A+") + (pintype "output") + (uuid "5bc74127-14cc-47cf-b62c-88b1b6546c46") + ) + (pad "3" smd roundrect + (at -2.4375 -0.75) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 48 "Net-(U2-PVDD-Pad21)") + (pinfunction "PVDD") + (pintype "power_in") + (uuid "1be1efbc-3f1a-43fb-ad12-d90f9b62f31c") + ) + (pad "4" smd roundrect + (at -2.4375 -0.25) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 48 "Net-(U2-PVDD-Pad21)") + (pinfunction "PVDD") + (pintype "passive") + (uuid "75245524-2fea-4742-9645-c9b0aa2cb724") + ) + (pad "5" smd roundrect + (at -2.4375 0.25) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 68 "unconnected-(U2-DGND-Pad5)") + (pinfunction "DGND") + (pintype "power_in") + (uuid "dbc86d81-2f30-4f2f-8043-938654d70b0d") + ) + (pad "6" smd roundrect + (at -2.4375 0.75) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 73 "unconnected-(U2-DVDD-Pad6)") + (pinfunction "DVDD") + (pintype "power_in") + (uuid "fd4d40e7-2fe5-4ee8-a011-4a7548294c79") + ) + (pad "7" smd roundrect + (at -2.4375 1.25) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 51 "unconnected-(U2-VR_DIG-Pad7)") + (pinfunction "VR_DIG") + (pintype "passive") + (uuid "3fb10b20-723b-4db2-9553-71bdba2813d2") + ) + (pad "8" smd roundrect + (at -2.4375 1.75) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 59 "unconnected-(U2-ADR-Pad8)") + (pinfunction "ADR") + (pintype "passive") + (uuid "640afa7c-f808-4e59-81ab-db8f351e8917") + ) + (pad "9" smd roundrect + (at -1.75 2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "unconnected-(U2-GPIO0-Pad9)") + (pinfunction "GPIO0") + (pintype "bidirectional") + (uuid "62bf56d1-3d41-4ba2-af52-18b43e2461bc") + ) + (pad "10" smd roundrect + (at -1.25 2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 63 "unconnected-(U2-GPIO1-Pad10)") + (pinfunction "GPIO1") + (pintype "bidirectional") + (uuid "756bd4e7-c4e7-4dfd-9aeb-388173bc5a8e") + ) + (pad "11" smd roundrect + (at -0.75 2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 65 "unconnected-(U2-GPIO2-Pad11)") + (pinfunction "GPIO2") + (pintype "bidirectional") + (uuid "a3b4ea11-c7f3-4cf7-8590-a36b82f44206") + ) + (pad "12" smd roundrect + (at -0.25 2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 53 "unconnected-(U2-LRCLK-Pad12)") + (pinfunction "LRCLK") + (pintype "input") + (uuid "534a24ef-e52d-4f30-8952-af729c8d0ef3") + ) + (pad "13" smd roundrect + (at 0.25 2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 70 "unconnected-(U2-SCLK-Pad13)") + (pinfunction "SCLK") + (pintype "input") + (uuid "f1f3e33d-c806-495c-a5ba-8292b0fbbc88") + ) + (pad "14" smd roundrect + (at 0.75 2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 69 "unconnected-(U2-SDIN-Pad14)") + (pinfunction "SDIN") + (pintype "input") + (uuid "ecc7c129-9a33-4b8d-a3c5-27d13066fac5") + ) + (pad "15" smd roundrect + (at 1.25 2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 58 "unconnected-(U2-SDA-Pad15)") + (pinfunction "SDA") + (pintype "bidirectional") + (uuid "63e0cc37-ae69-46fe-82b4-a6af3032b6c8") + ) + (pad "16" smd roundrect + (at 1.75 2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 54 "unconnected-(U2-SCL-Pad16)") + (pinfunction "SCL") + (pintype "input") + (uuid "54db65e9-94b7-4634-9a9c-1376f9499909") + ) + (pad "17" smd roundrect + (at 2.4375 1.75) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 49 "unconnected-(U2-~{PDN}-Pad17)") + (pinfunction "~{PDN}") + (pintype "input") + (uuid "1ddaa3cc-059d-4d15-a13e-273433a32f41") + ) + (pad "18" smd roundrect + (at 2.4375 1.25) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 55 "unconnected-(U2-GVDD-Pad18)") + (pinfunction "GVDD") + (pintype "passive") + (uuid "55b081e5-2a66-4f1f-b7c4-467c572f4348") + ) + (pad "19" smd roundrect + (at 2.4375 0.75) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 47 "unconnected-(U2-AVDD-Pad19)") + (pinfunction "AVDD") + (pintype "passive") + (uuid "16a8d244-1677-4d92-bf3b-13efd4a26a89") + ) + (pad "20" smd roundrect + (at 2.4375 0.25) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "unconnected-(U2-AGND-Pad20)") + (pinfunction "AGND") + (pintype "power_in") + (uuid "296bcecc-d5b3-4c08-8f57-69eaa6aea6f5") + ) + (pad "21" smd roundrect + (at 2.4375 -0.25) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 48 "Net-(U2-PVDD-Pad21)") + (pinfunction "PVDD") + (pintype "passive") + (uuid "c50599d0-b10d-4233-96fd-8d4f68615777") + ) + (pad "22" smd roundrect + (at 2.4375 -0.75) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 48 "Net-(U2-PVDD-Pad21)") + (pinfunction "PVDD") + (pintype "passive") + (uuid "39ccf399-41cf-4d4b-9c58-ab7b0475a3dd") + ) + (pad "23" smd roundrect + (at 2.4375 -1.25) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 72 "unconnected-(U2-OUT_B+-Pad23)") + (pinfunction "OUT_B+") + (pintype "output") + (uuid "f54509d9-17b6-4b7a-a3ae-4eff5ef5d998") + ) + (pad "24" smd roundrect + (at 2.4375 -1.75) + (size 0.875 0.25) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 71 "unconnected-(U2-BST_B+-Pad24)") + (pinfunction "BST_B+") + (pintype "passive") + (uuid "f3cafeec-83c6-4f8e-bbdc-e174210e0c9f") + ) + (pad "25" smd roundrect + (at 1.75 -2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 52 "Net-(U2-PGND-Pad25)") + (pinfunction "PGND") + (pintype "power_in") + (uuid "b9a04464-ba82-4aa6-9f11-9affcdef7efb") + ) + (pad "26" smd roundrect + (at 1.25 -2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 52 "Net-(U2-PGND-Pad25)") + (pinfunction "PGND") + (pintype "passive") + (uuid "4451198d-57d0-41cf-afda-0559b8db9c23") + ) + (pad "27" smd roundrect + (at 0.75 -2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 62 "unconnected-(U2-OUT_B--Pad27)") + (pinfunction "OUT_B-") + (pintype "output") + (uuid "6e82254a-325b-4c80-ab20-7f67a771f138") + ) + (pad "28" smd roundrect + (at 0.25 -2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 64 "unconnected-(U2-BST_B--Pad28)") + (pinfunction "BST_B-") + (pintype "passive") + (uuid "99622ab8-6b14-49f7-b1b2-25665c86da0e") + ) + (pad "29" smd roundrect + (at -0.25 -2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 61 "unconnected-(U2-BST_A--Pad29)") + (pinfunction "BST_A-") + (pintype "passive") + (uuid "6dec495b-ef7a-4765-acee-2cf35ed82e85") + ) + (pad "30" smd roundrect + (at -0.75 -2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 67 "unconnected-(U2-OUT_A--Pad30)") + (pinfunction "OUT_A-") + (pintype "output") + (uuid "b0c9eeef-b7eb-467f-ae98-9952f0af21cc") + ) + (pad "31" smd roundrect + (at -1.25 -2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 52 "Net-(U2-PGND-Pad25)") + (pinfunction "PGND") + (pintype "passive") + (uuid "cad0b4c5-7a72-400d-acf4-9c8b29d81319") + ) + (pad "32" smd roundrect + (at -1.75 -2.4375) + (size 0.25 0.875) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 52 "Net-(U2-PGND-Pad25)") + (pinfunction "PGND") + (pintype "passive") + (uuid "fc28168e-f9e2-44fa-9fb4-6b381c20c096") + ) + (pad "33" smd rect + (at 0 0) + (size 3.1 3.1) + (property pad_prop_heatsink) + (layers "F.Cu" "F.Mask") + (net 60 "unconnected-(U2-EP-Pad33)") + (pinfunction "EP") + (pintype "passive") + (zone_connect 2) + (uuid "6aa2e2ab-6b76-46cc-aec7-686f9f369076") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3" + (layer "F.Cu") + (uuid "b1c94bec-3e94-4bc2-9aa2-bb0d133eddac") + (at 175 75) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (property "Reference" "MH2" + (at -5 0 0) + (layer "F.SilkS") + (uuid "e8558443-03a9-412f-a9dd-32003dcc75ad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole_3.2mm_M3" + (at 0 4.2 0) + (layer "F.Fab") + (uuid "2b85d482-71c6-4d34-afe3-b409ac3a5fe9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "33892853-105a-4a15-b53e-ea09599b9548") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd783196-f8c1-45ed-b5d1-835b1a62ace1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ee57ac45-3f3f-4091-8c29-5a7c67cf16e3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 3.2 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "da5083ae-84d1-4a4c-81a6-119aa61ee9aa") + ) + (fp_circle + (center 0 0) + (end 3.45 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "eef6ec25-5729-430b-ade8-904a4ca80401") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "a8c7b731-a98a-43f1-b4a4-b9b62d443088") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3.2 3.2) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (uuid "8bd735cb-d5a9-4fb7-bdee-26d501feba0b") + ) + ) + (footprint "LED_SMD:LED_1206_3216Metric" + (layer "F.Cu") + (uuid "b789fa6b-7905-43dd-ba42-e7c9115e28a3") + (at 142 111) + (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "Reference" "D3" + (at 0 -1.82 0) + (layer "F.SilkS") + (uuid "aa32054a-2734-44a8-9f17-145485135f6f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "red" + (at 0 1.82 0) + (layer "F.Fab") + (uuid "66f8bb41-9a7f-42e8-9cd2-502b1475b58d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED_1206_3216Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f731d307-da41-461c-8f85-b621cdcf78fa") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://s3-us-west-2.amazonaws.com/catsy.557/Dialight_CBI_data_598-1206_Apr2018.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ec70caa4-56f5-42a9-b587-3cf3e505019e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "PWR" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "89131fae-e3d1-4abc-8061-093664f89bcc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "598-8210-107F" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a7066386-f4fd-4032-88cd-c272e91cd152") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Dialight" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fade9026-8eb9-44de-92c3-d815fc52ba7f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") + (path "/e9f9db47-1290-4906-81da-ea2e04b33994") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -2.285 -1.135) + (end -2.285 1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d71aa87c-97c9-42f3-b55c-31a4a8e8c8f4") + ) + (fp_line + (start -2.285 1.135) + (end 1.6 1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "268ae10b-9738-449a-99e4-8a6d44117a79") + ) + (fp_line + (start 1.6 -1.135) + (end -2.285 -1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "975101c5-41ad-4080-aec4-9453ceaa2d88") + ) + (fp_line + (start -2.28 -1.12) + (end 2.28 -1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7a40a55f-2448-4870-8675-bcb4dfd79ed1") + ) + (fp_line + (start -2.28 1.12) + (end -2.28 -1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d691d1c9-71ad-4b03-8380-6b82fcb7d27b") + ) + (fp_line + (start 2.28 -1.12) + (end 2.28 1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79522bbc-fb4f-4873-a145-0c406b9b682b") + ) + (fp_line + (start 2.28 1.12) + (end -2.28 1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2c9a509e-649c-4c5d-98c4-e234ddc931dc") + ) + (fp_line + (start -1.6 -0.4) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fa1725cc-5861-423b-a446-5f7f6499d4ca") + ) + (fp_line + (start -1.6 0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a7b484c2-7d8f-41b0-a7e7-eb76c58bab3c") + ) + (fp_line + (start -1.2 -0.8) + (end -1.6 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "76502b57-8f72-442b-91ae-88074ade5465") + ) + (fp_line + (start 1.6 -0.8) + (end -1.2 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c1ed9168-b84d-4c6a-9b86-49e3b57ee05a") + ) + (fp_line + (start 1.6 0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "59604aa9-4696-46b3-9368-442d66511ca7") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "19339355-47f9-4247-b369-7419ba3dec68") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -1.4 0) + (size 1.25 1.75) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.2) + (net 88 "Net-(D3-K)") + (pinfunction "K") + (pintype "passive") + (uuid "6d68506c-bd7b-425a-8443-d1ad408b4e18") + ) + (pad "2" smd roundrect + (at 1.4 0) + (size 1.25 1.75) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.2) + (net 87 "unconnected-(D3-A-Pad2)") + (pinfunction "A") + (pintype "passive") + (uuid "5ce2356d-08e0-44d4-a1d6-a07694c0328a") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" + (layer "F.Cu") + (uuid "b91d3878-02f0-4b36-a6d7-706616bfef3b") + (at 128 112) + (descr "SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOIC SO") + (property "Reference" "U3" + (at 0 -3.56 0) + (layer "F.SilkS") + (uuid "db5f0f21-2db5-4f56-9eb7-64db31ac9d64") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "W25Q32JVSS" + (at 0 3.56 0) + (layer "F.Fab") + (uuid "6d817481-adfb-42f1-8416-98cd79c5e82d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "31f0d802-0c96-4e77-b51f-b3d243c09824") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "74797464-860e-4aff-b06e-411ab5e7fb83") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "External flash" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7399f53d-479e-4aa6-a6da-b13b6f30e8b6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "W25Q32JVSSIQ" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5bb88b5d-45ca-4202-9e96-ef614009a365") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Winbond Electronics" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b893d00d-4a91-4484-9fd7-b6c6f7c6ad6d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOIC*5.23x5.23mm*P1.27mm*") + (path "/2a49ee48-3849-4608-89d2-57d8e20c4e48") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -2.725 -2.725) + (end -2.725 -2.465) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bd69302c-2e69-4b94-9892-dc2b935ae689") + ) + (fp_line + (start -2.725 2.725) + (end -2.725 2.465) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d89f01b0-2670-4c02-bea3-9571a7038802") + ) + (fp_line + (start 0 -2.725) + (end -2.725 -2.725) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0822b0e3-ce2f-4c71-a866-445843e78930") + ) + (fp_line + (start 0 -2.725) + (end 2.725 -2.725) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7ec35c54-9e5b-4fb2-83a9-7f80a293a8f9") + ) + (fp_line + (start 0 2.725) + (end -2.725 2.725) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c7b6e60-205a-489a-8866-17e2978a9ef2") + ) + (fp_line + (start 0 2.725) + (end 2.725 2.725) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "063be99f-d754-4530-acc7-ed0636d5ce6b") + ) + (fp_line + (start 2.725 -2.725) + (end 2.725 -2.465) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f9ac65ab-61f8-4232-855f-88131bc8d3a9") + ) + (fp_line + (start 2.725 2.725) + (end 2.725 2.465) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6ac12034-3925-4330-beb5-a6274b6c7fd8") + ) + (fp_poly + (pts + (xy -3.5075 -2.465) (xy -3.7475 -2.795) (xy -3.2675 -2.795) (xy -3.5075 -2.465) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "ebeabe3d-71c1-4251-a3c5-31eeffe9d963") + ) + (fp_line + (start -4.65 -2.86) + (end -4.65 2.86) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "23473d86-3112-4ad2-8320-b1818bff97a2") + ) + (fp_line + (start -4.65 2.86) + (end 4.65 2.86) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "61d0bc54-4bcd-4c4c-b12c-9ce6386eb5c5") + ) + (fp_line + (start 4.65 -2.86) + (end -4.65 -2.86) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b655f6bd-3503-4797-a917-8d7d4afeeee8") + ) + (fp_line + (start 4.65 2.86) + (end 4.65 -2.86) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "790f50b5-4fc0-4487-9a93-278c0a63ff84") + ) + (fp_line + (start -2.615 -1.615) + (end -1.615 -2.615) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ddf34d31-fde8-41e9-8fac-cafc3ec057b6") + ) + (fp_line + (start -2.615 2.615) + (end -2.615 -1.615) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c2cfd6bb-d93f-40f3-aa01-4e879e64ec93") + ) + (fp_line + (start -1.615 -2.615) + (end 2.615 -2.615) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6bbc5319-a308-4588-9707-9b20a5987d3f") + ) + (fp_line + (start 2.615 -2.615) + (end 2.615 2.615) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1acc214e-a868-4f59-8caa-b3942a01c67c") + ) + (fp_line + (start 2.615 2.615) + (end -2.615 2.615) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "30fe2847-e8dc-49b6-9ee3-5269b426db6c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "6fc0a2a8-8618-4dfa-ba64-e90af779e466") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -3.6 -1.905) + (size 1.6 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 77 "unconnected-(U3-~{CS}-Pad1)") + (pinfunction "~{CS}") + (pintype "input") + (uuid "43132f80-7015-43fe-9018-d3ef7e114d77") + ) + (pad "2" smd roundrect + (at -3.6 -0.635) + (size 1.6 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 79 "unconnected-(U3-DO(IO1)-Pad2)") + (pinfunction "DO(IO1)") + (pintype "bidirectional") + (uuid "651a0754-68a1-40e8-964d-92e0539b2235") + ) + (pad "3" smd roundrect + (at -3.6 0.635) + (size 1.6 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 74 "unconnected-(U3-IO2-Pad3)") + (pinfunction "IO2") + (pintype "bidirectional") + (uuid "0d7f24e5-51b1-4b3e-a0c2-21d8c406af50") + ) + (pad "4" smd roundrect + (at -3.6 1.905) + (size 1.6 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 75 "unconnected-(U3-GND-Pad4)") + (pinfunction "GND") + (pintype "power_in") + (uuid "208fe0d5-790c-4069-997a-083513c3c920") + ) + (pad "5" smd roundrect + (at 3.6 1.905) + (size 1.6 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 76 "unconnected-(U3-DI(IO0)-Pad5)") + (pinfunction "DI(IO0)") + (pintype "bidirectional") + (uuid "31379fea-8a7d-4759-ac76-0c944c768298") + ) + (pad "6" smd roundrect + (at 3.6 0.635) + (size 1.6 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 81 "unconnected-(U3-CLK-Pad6)") + (pinfunction "CLK") + (pintype "input") + (uuid "6c8322d5-0fc0-4fc7-9216-8a3b73dfe0ec") + ) + (pad "7" smd roundrect + (at 3.6 -0.635) + (size 1.6 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 78 "unconnected-(U3-IO3-Pad7)") + (pinfunction "IO3") + (pintype "bidirectional") + (uuid "5e4045e4-4cd1-4bef-ac0a-dfd1beeda44a") + ) + (pad "8" smd roundrect + (at 3.6 -1.905) + (size 1.6 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 80 "unconnected-(U3-VCC-Pad8)") + (pinfunction "VCC") + (pintype "power_in") + (uuid "658f3764-5bb9-428c-abaa-b06d5ddf160f") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_5.23x5.23mm_P1.27mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Ultra_Librarian:CONN4_2604-1104_WAG" + (layer "F.Cu") + (uuid "c0352fbd-7acc-424c-a15c-6c73eec7fe88") + (at 166 103.000001 90) + (tags "2604-1104 ") + (property "Reference" "J3" + (at 8.049999 4.099999 90) + (unlocked yes) + (layer "F.SilkS") + (uuid "a5e711e0-0b36-4079-b2db-c6e115e4fd86") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "2604-1104" + (at 8.049999 4.099999 90) + (unlocked yes) + (layer "F.Fab") + (uuid "99583807-4440-44a0-8a2f-dbd3ff439cc1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "CONN4_2604-1104_WAG" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "b7abb5f6-ee3a-435a-babd-be36fd2f4b76") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "b8616c31-e1a6-4ba4-8e71-65026043b43c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Speaker" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "6feb9133-a486-4085-aaf4-5a1d73743a22") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "WAGO" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "19fc2269-8c57-4cdf-b678-837a586b2b8c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MPN" "2604-1104" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c41620f4-c7ef-43f7-95b8-9a35736a4e63") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CONN4_2604-1104_WAG") + (path "/483db921-e22f-4490-b0a1-6d9a10b93246") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr through_hole) + (fp_circle + (center -4.605001 0) + (end -4.224001 0) + (stroke + (width 0.508) + (type solid) + ) + (fill none) + (layer "B.SilkS") + (uuid "1351afc9-e7fd-4c36-b3bf-c1964618aea9") + ) + (fp_line + (start 18.800001 -2.9) + (end 18.800001 13.400001) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "a61d41bc-1ae9-4bec-987d-3293d108a26d") + ) + (fp_line + (start -2.7 -2.9) + (end 18.800001 -2.9) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "7500c50b-90cd-4391-b6be-66fc72d519d8") + ) + (fp_line + (start -2.699999 3.600003) + (end -3.6 3.600003) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "04cbebb3-7f56-44d0-8d6a-7db6a9d5b2f3") + ) + (fp_line + (start -2.699999 9.000002) + (end -3.6 9.000002) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "2826bb8d-d039-4560-8280-d5bee529b058") + ) + (fp_line + (start -3.6 9.000002) + (end -3.6 3.600003) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "25922b02-04fe-45d6-8dcb-3dd46ee1de49") + ) + (fp_line + (start 17.479998 13.400001) + (end 17.479998 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "4a011f76-e145-448d-b785-d4e6cd53778b") + ) + (fp_line + (start 13.079999 13.400001) + (end 13.079999 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "23aca3d7-e70f-442f-8a80-25a07d1c5967") + ) + (fp_line + (start 12.479998 13.400001) + (end 12.479998 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "fbe26f7a-e534-4b3b-a679-5caf2533ca2f") + ) + (fp_line + (start 8.079999 13.400001) + (end 8.079999 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "09fe73ea-e7a9-40ad-890d-bebdca636f24") + ) + (fp_line + (start 7.479998 13.400001) + (end 7.479998 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "58f8e32a-9c2d-4ad8-8bc4-947692e77ac5") + ) + (fp_line + (start 3.079999 13.400001) + (end 3.079999 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "f0afb56f-7a88-4ac8-9b07-32c6f27f92d9") + ) + (fp_line + (start 2.479998 13.400001) + (end 2.479998 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "c7bf0e8b-4396-48a3-8557-c75f61fec7fc") + ) + (fp_line + (start -1.920001 13.400001) + (end -1.920001 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "58945b1e-9385-4b9f-873d-9da97db28392") + ) + (fp_line + (start -2.7 13.400001) + (end -2.7 -2.9) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "64ef6642-45ed-46de-ba1c-01ec99f169a9") + ) + (fp_line + (start -2.7 13.400001) + (end 18.800001 13.400001) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "8775e5db-2be0-4e90-8306-aa4fc1cfba4c") + ) + (fp_line + (start 13.079999 16.3) + (end 17.479998 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "0e9b2828-2eeb-4399-b96c-019aba0006b8") + ) + (fp_line + (start 8.079999 16.3) + (end 12.479998 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "84139282-edbe-44d6-817c-3f3ca1471ca1") + ) + (fp_line + (start 3.079999 16.3) + (end 7.479998 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "ae6295cd-c1a9-43ce-9923-6b24d2426d1d") + ) + (fp_line + (start -1.920001 16.3) + (end 2.479998 16.3) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.SilkS") + (uuid "7ae83cdf-3401-4d95-a576-a8757479714d") + ) + (fp_circle + (center -4.605001 0) + (end -4.224001 0) + (stroke + (width 0.508) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "db62021d-3781-4e08-8c13-555c07828ce2") + ) + (fp_line + (start 19.054001 -3.154) + (end -3.854 -3.154) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e4f2eb79-4f57-42f0-9feb-0c660c00c32d") + ) + (fp_line + (start -3.854 -3.154) + (end -3.854 16.554) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.CrtYd") + (uuid "db9d3762-3f1b-4b78-a14f-1464143553e9") + ) + (fp_line + (start -3.854 -3.154) + (end -3.854 16.554) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e76099d4-0d56-4f2c-abb0-3c082d78b2e8") + ) + (fp_line + (start 19.054001 16.554) + (end 19.054001 -3.154) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9f7ca0ed-2a09-4980-a048-df95c388321e") + ) + (fp_line + (start -3.854 16.554) + (end 19.054001 16.554) + (stroke + (width 0.1524) + (type solid) + ) + (layer "F.CrtYd") + (uuid "598e40a4-d54e-4333-ad41-c4427e7429fc") + ) + (fp_line + (start 18.800001 -2.9) + (end 18.800001 13.400001) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "2a13b347-38fa-4388-917f-2140b94a630f") + ) + (fp_line + (start -2.7 -2.9) + (end 18.800001 -2.9) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "49272a17-e936-4d8f-badf-f577a9997d27") + ) + (fp_line + (start -2.699999 3.600003) + (end -3.6 3.600003) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "9498409e-127c-4260-891a-5903d1bf6e3d") + ) + (fp_line + (start -2.699999 9.000002) + (end -3.6 9.000002) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "4d6a5cd9-f5b3-4666-99fd-08c621ab5e65") + ) + (fp_line + (start -3.6 9.000002) + (end -3.6 3.600003) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "55e1b59e-b92d-4a4a-aa63-bf511c02877f") + ) + (fp_line + (start 17.479998 13.400001) + (end 17.479998 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "d8cb23ef-3c22-4a56-b260-2afa94b8da3f") + ) + (fp_line + (start 13.079999 13.400001) + (end 13.079999 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "9164f8fb-4c63-4477-90e6-2a2275941967") + ) + (fp_line + (start 12.479998 13.400001) + (end 12.479998 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "904edfcc-c476-44ec-8a9f-717649b8a7f2") + ) + (fp_line + (start 8.079999 13.400001) + (end 8.079999 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "cb7563a2-b349-4417-89d2-fe78968e3e4c") + ) + (fp_line + (start 7.479998 13.400001) + (end 7.479998 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "1e42ce0f-932f-4e41-8d1f-fa5474c88356") + ) + (fp_line + (start 3.079999 13.400001) + (end 3.079999 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "9e1e137a-cb2c-4db3-8701-8c5799f2f0e8") + ) + (fp_line + (start 2.479998 13.400001) + (end 2.479998 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "5c067cd1-9052-443f-8ac6-e78473c31425") + ) + (fp_line + (start -1.920001 13.400001) + (end -1.920001 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "bad2704d-8ad6-4dee-9820-7adaaab13df3") + ) + (fp_line + (start -2.7 13.400001) + (end -2.7 -2.9) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "b3fcd3dc-1a2d-4bcf-a7fd-3384bc418ed3") + ) + (fp_line + (start -2.7 13.400001) + (end 18.800001 13.400001) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "529dd4f1-2086-47da-b351-05993801fbb8") + ) + (fp_line + (start 13.079999 16.3) + (end 17.479998 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "3c4cbe89-f9c6-4656-96d3-488cd16324ed") + ) + (fp_line + (start 8.079999 16.3) + (end 12.479998 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "4f2a9752-e042-4909-9064-1306a67d511a") + ) + (fp_line + (start 3.079999 16.3) + (end 7.479998 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "bea804dd-82e4-42dc-9580-67c0cb02076c") + ) + (fp_line + (start -1.920001 16.3) + (end 2.479998 16.3) + (stroke + (width 0.0254) + (type solid) + ) + (layer "F.Fab") + (uuid "0730088d-a02a-4562-9f51-2251b09db0b4") + ) + (fp_circle + (center 0 -1.905) + (end 0.381 -1.905) + (stroke + (width 0.508) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "21e3345b-d7a8-4cd6-af4d-7de836f653d9") + ) + (fp_text user "${REFERENCE}" + (at 8.049999 4.099999 90) + (unlocked yes) + (layer "F.Fab") + (uuid "ec3353c3-46da-4244-a9c6-6444822a8904") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 90) + (size 2 2) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 100 "unconnected-(J3-1_1-Pad1)") + (pinfunction "1_1") + (pintype "unspecified") + (uuid "78f98079-d46b-48e1-bc28-c3f211d86a22") + ) + (pad "2" thru_hole circle + (at 0 8.199999 90) + (size 2 2) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 101 "unconnected-(J3-1_2-Pad2)") + (pinfunction "1_2") + (pintype "unspecified") + (uuid "efbfc774-d644-4ad6-836f-d13da3b34f9f") + ) + (pad "3" thru_hole circle + (at 5 0 90) + (size 2 2) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 98 "unconnected-(J3-2_1-Pad3)") + (pinfunction "2_1") + (pintype "unspecified") + (uuid "1864bfa4-a711-4abc-ab25-8ced28e47b05") + ) + (pad "4" thru_hole circle + (at 5 8.199999 90) + (size 2 2) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 94 "unconnected-(J3-2_2-Pad4)") + (pinfunction "2_2") + (pintype "unspecified") + (uuid "2f7fedf8-044d-490e-bcba-6b70c869b53f") + ) + (pad "5" thru_hole circle + (at 10.000001 0 90) + (size 2 2) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 96 "unconnected-(J3-3_1-Pad5)") + (pinfunction "3_1") + (pintype "unspecified") + (uuid "db04463c-3029-4ffb-8d42-d9ee0bc9d178") + ) + (pad "6" thru_hole circle + (at 10.000001 8.199999 90) + (size 2 2) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 99 "unconnected-(J3-3_2-Pad6)") + (pinfunction "3_2") + (pintype "unspecified") + (uuid "ee7894c1-f41b-479c-b5d8-34f50e8c8145") + ) + (pad "7" thru_hole circle + (at 15.000001 0 90) + (size 2 2) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 95 "unconnected-(J3-4_1-Pad7)") + (pinfunction "4_1") + (pintype "unspecified") + (uuid "66cd4083-24fa-43d3-9d15-477c2d06bbe1") + ) + (pad "8" thru_hole circle + (at 15.000001 8.199999 90) + (size 2 2) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 97 "unconnected-(J3-4_2-Pad8)") + (pinfunction "4_2") + (pintype "unspecified") + (uuid "0424c885-9a62-452b-8181-d3091853006c") + ) + ) + (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (layer "F.Cu") + (uuid "d6be20a9-8714-44ce-b351-79bfe8bde3fe") + (at 127.475 103.905) + (descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOIC SO") + (property "Reference" "U4" + (at 0 -3.4 0) + (layer "F.SilkS") + (uuid "90348595-d75c-4e68-8985-f2e0b09201b5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "M95256-WMN6P" + (at 0 3.4 0) + (layer "F.Fab") + (uuid "8dca4b4c-ba1f-474e-8ae7-642ac348f170") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "f4bebfb0-cd4c-4f3a-92f5-6e80ef3e8a18") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/9d/75/f0/3e/76/00/4c/0b/CD00103810.pdf/files/CD00103810.pdf/jcr:content/translations/en.CD00103810.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "f04b4f0b-25a7-4f74-a42e-ee06231492a3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "EEPROM" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "265d31e2-72a8-4915-a062-1f7eaa585f6e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "M95256-WMN6P" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9682ae45-4cfb-48f6-967b-7959eb79a22c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "STMicroelectronics" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "07a164e9-1234-4d17-8c26-5f98b9cc1d16") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOIC*3.9x4.9mm*P1.27mm*") + (path "/e78e5f0d-ba34-405a-8a33-d318ce272e4b") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start 0 -2.56) + (end -1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "acea05b7-5cde-4fe2-8c63-66ca5798d45b") + ) + (fp_line + (start 0 -2.56) + (end 1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6f8aedff-4bdc-42b1-aca5-725ec0649a4d") + ) + (fp_line + (start 0 2.56) + (end -1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "26c80e7e-1da4-409b-8309-4cacdc93aa95") + ) + (fp_line + (start 0 2.56) + (end 1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "95c7a669-24bd-4b30-80de-cb6a17b7fd8d") + ) + (fp_poly + (pts + (xy -2.7 -2.465) (xy -2.94 -2.795) (xy -2.46 -2.795) (xy -2.7 -2.465) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "94cb43c8-f71d-4dd8-ac3b-22e9e52adf73") + ) + (fp_line + (start -3.7 -2.7) + (end -3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b9ed9d3f-9d76-4d07-883c-76fe70af3bac") + ) + (fp_line + (start -3.7 2.7) + (end 3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "574783b4-26c7-45fa-8bf9-82a87b410f9a") + ) + (fp_line + (start 3.7 -2.7) + (end -3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "93b71ac0-5c66-40d2-bfde-d5d8027a2bc9") + ) + (fp_line + (start 3.7 2.7) + (end 3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b4b4e371-ad81-49d4-b101-0e1b2d68bd61") + ) + (fp_line + (start -1.95 -1.475) + (end -0.975 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "92862b1e-86d0-4de6-acbd-c9b51f1635d7") + ) + (fp_line + (start -1.95 2.45) + (end -1.95 -1.475) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b95c081f-0838-4214-b8a2-d5f21f34bb66") + ) + (fp_line + (start -0.975 -2.45) + (end 1.95 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bec0f101-755f-4a18-ac0b-1ac1bbb1f710") + ) + (fp_line + (start 1.95 -2.45) + (end 1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8b1c295b-af0d-47d8-97f6-e97e44187b32") + ) + (fp_line + (start 1.95 2.45) + (end -1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a0366fa3-b2c0-410f-9d96-ceda2a1f89ba") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "4207b5ad-1958-4bad-b2fa-ebee91ac9f01") + (effects + (font + (size 0.98 0.98) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.475 -1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 104 "unconnected-(U4-~{S}-Pad1)") + (pinfunction "~{S}") + (pintype "input") + (uuid "1fd46f22-5ffa-482c-bae5-6a3fe78c34e6") + ) + (pad "2" smd roundrect + (at -2.475 -0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 105 "unconnected-(U4-Q-Pad2)") + (pinfunction "Q") + (pintype "output") + (uuid "2e75ee9b-d1d7-4ba4-a081-d94059277dbb") + ) + (pad "3" smd roundrect + (at -2.475 0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 106 "unconnected-(U4-~{W}-Pad3)") + (pinfunction "~{W}") + (pintype "input") + (uuid "661e04e8-7018-44a0-bd04-b832070ac331") + ) + (pad "4" smd roundrect + (at -2.475 1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 108 "unconnected-(U4-VSS-Pad4)") + (pinfunction "VSS") + (pintype "power_in") + (uuid "cba1fb51-a7dc-4bae-9c7e-7fc86aed4297") + ) + (pad "5" smd roundrect + (at 2.475 1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 102 "unconnected-(U4-D-Pad5)") + (pinfunction "D") + (pintype "input") + (uuid "0dfc3425-83ab-4996-bb94-651b6ad065d3") + ) + (pad "6" smd roundrect + (at 2.475 0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 107 "unconnected-(U4-C-Pad6)") + (pinfunction "C") + (pintype "input") + (uuid "7c477c3c-4ead-4737-853b-cb25cc4b2c2f") + ) + (pad "7" smd roundrect + (at 2.475 -0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 82 "unconnected-(U4-~{HOLD}-Pad7)") + (pinfunction "~{HOLD}") + (pintype "input") + (uuid "cc5e1c23-5439-416e-a792-68a4bacd6199") + ) + (pad "8" smd roundrect + (at 2.475 -1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 103 "unconnected-(U4-VCC-Pad8)") + (pinfunction "VCC") + (pintype "power_in") + (uuid "1136172e-64ca-4d8c-9795-b42af6b149bd") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LED_SMD:LED_1206_3216Metric" + (layer "F.Cu") + (uuid "e3206e15-d1ed-4f37-8bd3-4dfd0c3f7af7") + (at 142 104.22) + (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "Reference" "D1" + (at 0 -1.82 0) + (layer "F.SilkS") + (uuid "7ee5e9fc-58f4-4920-9b0a-8398e7fa5612") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "green" + (at 0 1.82 0) + (layer "F.Fab") + (uuid "e193bc1a-85b1-454b-b961-357c2d07f4be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED_1206_3216Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3626b647-5e2c-4103-8398-b2c189d8e1d3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://s3-us-west-2.amazonaws.com/catsy.557/Dialight_CBI_data_598-1206_Apr2018.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "90a2b99a-06f9-4a5a-9c88-7a52b65b95ae") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "ACT" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ca560a94-32e4-4557-9eea-334a1d82bdc9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "598-8270-107F" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "71da82bd-ef62-43ef-9141-9d1b2d7c066e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Dialight" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0c5e527f-1fe6-495d-a8ac-6030a200f3c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") + (path "/d3ac31d9-ccb8-4533-87a3-dddfdbc27404") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -2.285 -1.135) + (end -2.285 1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8911c501-42c3-4483-ac8f-298835a2fab6") + ) + (fp_line + (start -2.285 1.135) + (end 1.6 1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "602fac12-8124-405a-91dc-00cfd56edf30") + ) + (fp_line + (start 1.6 -1.135) + (end -2.285 -1.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1390203b-dc6c-432d-9785-c38a6c4953eb") + ) + (fp_line + (start -2.28 -1.12) + (end 2.28 -1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "407661dd-ac09-4083-9762-73524f328c42") + ) + (fp_line + (start -2.28 1.12) + (end -2.28 -1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f1007d50-8438-4559-b94f-18e7ee2e4756") + ) + (fp_line + (start 2.28 -1.12) + (end 2.28 1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "468cc75d-886e-4af4-9b5b-e79fd5b7ab11") + ) + (fp_line + (start 2.28 1.12) + (end -2.28 1.12) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d65ade35-d9c7-4dcb-a888-f0f330e5faed") + ) + (fp_line + (start -1.6 -0.4) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ccb9add-4fc1-4f5d-a1bf-c7f631fbb311") + ) + (fp_line + (start -1.6 0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fb6a9842-8e21-4593-ba11-f995884aff5a") + ) + (fp_line + (start -1.2 -0.8) + (end -1.6 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c1cd7cd6-7d3e-4755-87bb-d9b87d604439") + ) + (fp_line + (start 1.6 -0.8) + (end -1.2 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aa277143-298c-4e7c-ac1c-c0b7e2ace6dd") + ) + (fp_line + (start 1.6 0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8e316839-4d57-48cf-a11e-bacbeea2e2fb") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "3474f2ba-d2ae-4f6e-85f8-1e7fafb4d106") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -1.4 0) + (size 1.25 1.75) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.2) + (net 83 "Net-(D1-K)") + (pinfunction "K") + (pintype "passive") + (uuid "5c157402-cd37-4a8e-8902-a6766c11c2cc") + ) + (pad "2" smd roundrect + (at 1.4 0) + (size 1.25 1.75) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.2) + (net 84 "unconnected-(D1-A-Pad2)") + (pinfunction "A") + (pintype "passive") + (uuid "c0c4d5d1-9dbf-41ce-bd69-878f7c6d5868") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "fd3dd2df-e962-4536-8c1f-115ecaee055a") + (at 137.15 108.8) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R3" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "7bece808-bad2-4fca-9a35-15f61cbec8a2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "130R" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "e80c8cfd-2980-4624-b383-1c077f1e3afb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6bee8b1a-4935-4b47-b5a3-99aa8d2eecb3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C304.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "071fc548-1a5f-43fe-9bda-8702eb2851a4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b81d37d1-9931-4b38-9ead-f446bd87abb4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MPN" "ERJ-3EKF1300V" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4aac2bcf-6911-40c1-bfc2-060dc4b78cd3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8614b2b1-30a7-432c-9fec-693ba5a15806") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/57288bb7-160a-400f-aa53-1b9b006077a3") + (sheetname "Root") + (sheetfile "soundbox.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a0e6a581-d2c2-42e9-89e1-c1242895a620") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c32371f-2816-4c22-8741-9d0a42b29619") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "41e2666a-0a39-4a63-9852-ca2458267e42") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "125f8e08-7b6a-4701-83f0-3769ea484259") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1cdda99e-30c4-4549-bf3e-4f6c4797893b") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e92943e7-bfda-4f55-8992-75ef7f5c8963") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "194db0d2-4b2a-49f7-b7ba-db5bbb715228") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "756a42b6-207b-454c-b17c-1a13f1a6262a") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "22d73160-a922-48ec-b9a5-7657a3723336") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "115ddfb0-1b20-49fe-a8ac-6a8abd3d9e22") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "16ad3b6f-1abf-41f1-8ee0-079223f3e1f6") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 88 "Net-(D3-K)") + (pintype "passive") + (uuid "21780c86-5ea2-4d85-a6d1-8fa40588f60b") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 91 "unconnected-(R3-Pad2)") + (pintype "passive") + (uuid "c52ea485-c1eb-4080-b1b6-b9f3ec659e79") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (gr_arc + (start 115 120) + (mid 111.464466 118.535534) + (end 110 115) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "020ba8b1-957c-414c-a79a-a4b96bdaf09d") + ) + (gr_arc + (start 110 75) + (mid 111.464466 71.464466) + (end 115 70) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "546617eb-ea2d-4138-bfe4-7e7c35c19079") + ) + (gr_line + (start 175 120) + (end 115 120) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "65afeab3-036c-43f0-8c30-12530f1c6405") + ) + (gr_line + (start 115 70) + (end 175 70) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "819ee916-aab2-4b2a-9ab3-82e51493d614") + ) + (gr_arc + (start 180 115) + (mid 178.535534 118.535534) + (end 175 120) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "971a8b97-21d4-4401-a3a9-19033c995b2c") + ) + (gr_arc + (start 175 70) + (mid 178.535534 71.464466) + (end 180 75) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "afee4755-3efb-4b8c-b758-5a05fba29edc") + ) + (gr_line + (start 110 115) + (end 110 75) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "c75366af-62c6-49a7-8cba-7030899f316b") + ) + (gr_line + (start 180 75) + (end 180 115) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "e3008380-2409-442b-b110-f421e3213f0b") + ) + (gr_text "soundbox" + (at 141 117 0) + (layer "F.SilkS") + (uuid "aca5b3df-70e8-438b-9b9f-b23a38e3db4a") + (effects + (font + (size 1 1) + (thickness 0.1) + ) + (justify left bottom) + ) + ) +) diff --git a/pcb/soundbox.kicad_prl b/pcb/soundbox.kicad_prl deleted file mode 100644 index 0b1d2ff..0000000 --- a/pcb/soundbox.kicad_prl +++ /dev/null @@ -1,83 +0,0 @@ -{ - "board": { - "active_layer": 0, - "active_layer_preset": "", - "auto_track_width": true, - "hidden_netclasses": [], - "hidden_nets": [], - "high_contrast_mode": 0, - "net_color_mode": 1, - "opacity": { - "images": 0.6, - "pads": 1.0, - "tracks": 1.0, - "vias": 1.0, - "zones": 0.6 - }, - "selection_filter": { - "dimensions": true, - "footprints": true, - "graphics": true, - "keepouts": true, - "lockedItems": false, - "otherItems": true, - "pads": true, - "text": true, - "tracks": true, - "vias": true, - "zones": true - }, - "visible_items": [ - 0, - 1, - 2, - 3, - 4, - 5, - 8, - 9, - 10, - 11, - 12, - 13, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 32, - 33, - 34, - 35, - 36, - 39, - 40 - ], - "visible_layers": "fffffff_ffffffff", - "zone_display_mode": 0 - }, - "git": { - "repo_password": "", - "repo_type": "", - "repo_username": "", - "ssh_key": "" - }, - "meta": { - "filename": "soundbox.kicad_prl", - "version": 3 - }, - "project": { - "files": [] - } -} diff --git a/pcb/soundbox.kicad_pro b/pcb/soundbox.kicad_pro index 300ae66..48d5af2 100644 --- a/pcb/soundbox.kicad_pro +++ b/pcb/soundbox.kicad_pro @@ -2,12 +2,204 @@ "board": { "3dviewports": [], "design_settings": { - "defaults": {}, + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.05, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.05, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.1, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.1, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.1, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.1, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.5 + } + }, "diff_pair_dimensions": [], "drc_exclusions": [], - "rules": {}, + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "holes_co_located": "warning", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.0, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.5, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.0, + "min_via_annular_width": 0.1, + "min_via_diameter": 0.5, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], "track_widths": [], - "via_dimensions": [] + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [], + "zones_allow_external_fillets": false }, "ipc2581": { "dist": "", @@ -335,11 +527,35 @@ "label": "DNP", "name": "${DNP}", "show": true + }, + { + "group_by": false, + "label": "#", + "name": "${ITEM_NUMBER}", + "show": false + }, + { + "group_by": false, + "label": "Description", + "name": "Description", + "show": false + }, + { + "group_by": false, + "label": "Manufacturer", + "name": "Manufacturer", + "show": false + }, + { + "group_by": false, + "label": "MPN", + "name": "MPN", + "show": false } ], "filter_string": "", "group_symbols": true, - "name": "Grouped By Value", + "name": "", "sort_asc": true, "sort_field": "Reference" }, @@ -386,6 +602,14 @@ [ "455ca4d6-9dda-4003-9db8-aa66aec94f73", "Root" + ], + [ + "3e145403-4eb6-486a-91c4-df0c49c02a5b", + "USB" + ], + [ + "c63181b1-8a8c-4c63-9e6c-d94097bd8342", + "Audio" ] ], "text_variables": {} diff --git a/pcb/soundbox.kicad_sch b/pcb/soundbox.kicad_sch index 4fc6e07..c804154 100644 --- a/pcb/soundbox.kicad_sch +++ b/pcb/soundbox.kicad_sch @@ -8,28 +8,28 @@ (title "soundbox") ) (lib_symbols - (symbol "Amplifier_Audio:TAS5825MRHB" + (symbol "74xGxx:SN74LVC1G125DBV" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" - (at -11.43 24.13 0) + (at -10.16 7.62 0) (effects (font (size 1.27 1.27) ) ) ) - (property "Value" "TAS5825MRHB" - (at 13.97 24.13 0) + (property "Value" "SN74LVC1G125DBV" + (at 2.54 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) - (property "Footprint" "Package_DFN_QFN:VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm" - (at 0 -34.29 0) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 0 0 0) (effects (font (size 1.27 1.27) @@ -37,7 +37,7 @@ (hide yes) ) ) - (property "Datasheet" "www.ti.com/lit/ds/symlink/tas5825m.pdf" + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/sn74lvc1g125.pdf" (at 0 0 0) (effects (font @@ -46,7 +46,7 @@ (hide yes) ) ) - (property "Description" "38-W Stereo, Inductor-Less, Digital Input, Closed-Loop Class-D Audio Amplifier with 192-kHz Extended Audio Processing, VQFN-32" + (property "Description" "Single Buffer Gate Tri-State, Low-Voltage CMOS, SOT-23-5" (at 0 0 0) (effects (font @@ -55,7 +55,7 @@ (hide yes) ) ) - (property "ki_keywords" "Class-D Stereo" + (property "ki_keywords" "Single Gate Buff Tri-State LVC CMOS" (at 0 0 0) (effects (font @@ -64,7 +64,7 @@ (hide yes) ) ) - (property "ki_fp_filters" "VQFN*1EP*5x5mm*P0.5mm*" + (property "ki_fp_filters" "SOT?23*" (at 0 0 0) (effects (font @@ -73,10 +73,11 @@ (hide yes) ) ) - (symbol "TAS5825MRHB_0_1" - (rectangle - (start -12.7 22.86) - (end 12.7 -22.86) + (symbol "SN74LVC1G125DBV_0_1" + (polyline + (pts + (xy -7.62 6.35) (xy -7.62 -6.35) (xy 5.08 0) (xy -7.62 6.35) + ) (stroke (width 0.254) (type default) @@ -86,11 +87,11 @@ ) ) ) - (symbol "TAS5825MRHB_1_1" - (pin passive line - (at 15.24 15.24 180) - (length 2.54) - (name "BST_A+" + (symbol "SN74LVC1G125DBV_1_1" + (pin input inverted + (at 0 10.16 270) + (length 7.62) + (name "~" (effects (font (size 1.27 1.27) @@ -105,190 +106,10 @@ ) ) ) - (pin bidirectional line - (at -15.24 -12.7 0) - (length 2.54) - (name "GPIO1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -15.24 -15.24 0) - (length 2.54) - (name "GPIO2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -15.24 10.16 0) - (length 2.54) - (name "LRCLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -15.24 7.62 0) - (length 2.54) - (name "SCLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) (pin input line - (at -15.24 5.08 0) - (length 2.54) - (name "SDIN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line (at -15.24 0 0) - (length 2.54) - (name "SDA" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -15.24 -2.54 0) - (length 2.54) - (name "SCL" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -15.24 15.24 0) - (length 2.54) - (name "~{PDN}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 5.08 25.4 270) - (length 2.54) - (name "GVDD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -2.54 25.4 270) - (length 2.54) - (name "AVDD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 15.24 12.7 180) - (length 2.54) - (name "OUT_A+" + (length 7.62) + (name "~" (effects (font (size 1.27 1.27) @@ -304,189 +125,9 @@ ) ) (pin power_in line - (at -2.54 -25.4 90) - (length 2.54) - (name "AGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 25.4 270) - (length 2.54) hide - (name "PVDD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "21" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 25.4 270) - (length 2.54) hide - (name "PVDD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "22" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 15.24 -7.62 180) - (length 2.54) - (name "OUT_B+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "23" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 15.24 -5.08 180) - (length 2.54) - (name "BST_B+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "24" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 -25.4 90) - (length 2.54) - (name "PGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "25" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 -25.4 90) - (length 2.54) hide - (name "PGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "26" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 15.24 -12.7 180) - (length 2.54) - (name "OUT_B-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "27" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 15.24 -15.24 180) - (length 2.54) - (name "BST_B-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "28" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 15.24 5.08 180) - (length 2.54) - (name "BST_A-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "29" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 25.4 270) - (length 2.54) - (name "PVDD" + (at -5.08 -10.16 90) + (length 5.08) + (name "GND" (effects (font (size 1.27 1.27) @@ -501,82 +142,10 @@ ) ) ) - (pin output line - (at 15.24 7.62 180) - (length 2.54) - (name "OUT_A-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "30" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 -25.4 90) - (length 2.54) hide - (name "PGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "31" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 -25.4 90) - (length 2.54) hide - (name "PGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "32" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 5.08 -25.4 90) - (length 2.54) - (name "EP" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "33" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 25.4 270) - (length 2.54) hide - (name "PVDD" + (pin tri_state line + (at 12.7 0 180) + (length 7.62) + (name "~" (effects (font (size 1.27 1.27) @@ -592,9 +161,9 @@ ) ) (pin power_in line - (at 0 -25.4 90) - (length 2.54) - (name "DGND" + (at -5.08 10.16 270) + (length 5.08) + (name "VCC" (effects (font (size 1.27 1.27) @@ -609,240 +178,6 @@ ) ) ) - (pin power_in line - (at 0 25.4 270) - (length 2.54) - (name "DVDD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -5.08 25.4 270) - (length 2.54) - (name "VR_DIG" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -15.24 -5.08 0) - (length 2.54) - (name "ADR" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -15.24 -10.16 0) - (length 2.54) - (name "GPIO0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "Connector:Conn_01x02_Socket" - (pin_names - (offset 1.016) hide) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "J" - (at 0 2.54 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "Conn_01x02_Socket" - (at 0 -5.08 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "~" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Generic connector, single row, 01x02, script generated" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_locked" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "connector" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "Connector*:*_1x??_*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "Conn_01x02_Socket_1_1" - (arc - (start 0 -2.032) - (mid -0.5058 -2.54) - (end 0 -3.048) - (stroke - (width 0.1524) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 -2.54) (xy -0.508 -2.54) - ) - (stroke - (width 0.1524) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 0) (xy -0.508 0) - ) - (stroke - (width 0.1524) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 0.508) - (mid -0.5058 0) - (end 0 -0.508) - (stroke - (width 0.1524) - (type default) - ) - (fill - (type none) - ) - ) - (pin passive line - (at -5.08 0 0) - (length 3.81) - (name "Pin_1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -5.08 -2.54 0) - (length 3.81) - (name "Pin_2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) ) ) (symbol "Connector:Conn_ARM_JTAG_SWD_10" @@ -1199,15 +534,16 @@ ) ) ) - (symbol "Connector:USB_C_Receptacle" + (symbol "Device:C" + (pin_numbers hide) (pin_names - (offset 1.016) + (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) - (property "Reference" "J" - (at -10.16 29.21 0) + (property "Reference" "C" + (at 0.635 2.54 0) (effects (font (size 1.27 1.27) @@ -1215,17 +551,17 @@ (justify left) ) ) - (property "Value" "USB_C_Receptacle" - (at 10.16 29.21 0) + (property "Value" "C" + (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) - (justify right) + (justify left) ) ) (property "Footprint" "" - (at 3.81 0 0) + (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) @@ -1233,8 +569,8 @@ (hide yes) ) ) - (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" - (at 3.81 0 0) + (property "Datasheet" "~" + (at 0 0 0) (effects (font (size 1.27 1.27) @@ -1242,7 +578,7 @@ (hide yes) ) ) - (property "Description" "USB Full-Featured Type-C Receptacle connector" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (effects (font @@ -1251,7 +587,7 @@ (hide yes) ) ) - (property "ki_keywords" "usb universal serial bus type-C full-featured" + (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font @@ -1260,7 +596,7 @@ (hide yes) ) ) - (property "ki_fp_filters" "USB*C*Receptacle*" + (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font @@ -1269,304 +605,10 @@ (hide yes) ) ) - (symbol "USB_C_Receptacle_0_0" - (rectangle - (start -0.254 -35.56) - (end 0.254 -34.544) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -32.766) - (end 9.144 -33.274) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -30.226) - (end 9.144 -30.734) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -25.146) - (end 9.144 -25.654) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -22.606) - (end 9.144 -23.114) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -17.526) - (end 9.144 -18.034) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -14.986) - (end 9.144 -15.494) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -9.906) - (end 9.144 -10.414) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -7.366) - (end 9.144 -7.874) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -2.286) - (end 9.144 -2.794) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 0.254) - (end 9.144 -0.254) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 5.334) - (end 9.144 4.826) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 7.874) - (end 9.144 7.366) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 10.414) - (end 9.144 9.906) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 12.954) - (end 9.144 12.446) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 18.034) - (end 9.144 17.526) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 20.574) - (end 9.144 20.066) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 25.654) - (end 9.144 25.146) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "USB_C_Receptacle_0_1" - (rectangle - (start -10.16 27.94) - (end 10.16 -35.56) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (arc - (start -8.89 -3.81) - (mid -6.985 -5.7067) - (end -5.08 -3.81) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 -3.81) - (mid -6.985 -4.4423) - (end -6.35 -3.81) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 -3.81) - (mid -6.985 -4.4423) - (end -6.35 -3.81) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start -7.62 -3.81) - (end -6.35 3.81) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (arc - (start -6.35 3.81) - (mid -6.985 4.4423) - (end -7.62 3.81) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -6.35 3.81) - (mid -6.985 4.4423) - (end -7.62 3.81) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (arc - (start -5.08 3.81) - (mid -6.985 5.7067) - (end -8.89 3.81) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) + (symbol "C_0_1" (polyline (pts - (xy -8.89 -3.81) (xy -8.89 3.81) + (xy -2.032 -0.762) (xy 2.032 -0.762) ) (stroke (width 0.508) @@ -1578,7 +620,7 @@ ) (polyline (pts - (xy -5.08 3.81) (xy -5.08 -3.81) + (xy -2.032 0.762) (xy 2.032 0.762) ) (stroke (width 0.508) @@ -1589,189 +631,18 @@ ) ) ) - (symbol "USB_C_Receptacle_1_1" - (circle - (center -2.54 1.143) - (radius 0.635) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center 0 -5.842) - (radius 1.27) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (polyline - (pts - (xy 0 -5.842) (xy 0 4.318) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 -3.302) (xy -2.54 -0.762) (xy -2.54 0.508) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 -2.032) (xy 2.54 0.508) (xy 2.54 1.778) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 4.318) (xy 0 6.858) (xy 1.27 4.318) (xy -1.27 4.318) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 1.905 1.778) - (end 3.175 3.048) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (pin passive line - (at 0 -40.64 90) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 15.24 -15.24 180) - (length 5.08) - (name "RX2-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 15.24 -17.78 180) - (length 5.08) - (name "RX2+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) + (symbol "C_1_1" (pin passive line - (at 0 -40.64 90) - (length 5.08) hide - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 15.24 -10.16 180) - (length 5.08) - (name "TX1+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 15.24 -7.62 180) - (length 5.08) - (name "TX1-" + (at 0 3.81 270) + (length 2.794) + (name "~" (effects (font (size 1.27 1.27) ) ) ) - (number "A3" + (number "1" (effects (font (size 1.27 1.27) @@ -1780,34 +651,16 @@ ) ) (pin passive line - (at 15.24 25.4 180) - (length 5.08) - (name "VBUS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 15.24 20.32 180) - (length 5.08) - (name "CC1" + (at 0 -3.81 90) + (length 2.794) + (name "~" (effects (font (size 1.27 1.27) ) ) ) - (number "A5" + (number "2" (effects (font (size 1.27 1.27) @@ -1815,287 +668,144 @@ ) ) ) - (pin bidirectional line - (at 15.24 7.62 180) - (length 5.08) - (name "D+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A6" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + ) + (symbol "Device:D" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) ) ) - (pin bidirectional line - (at 15.24 12.7 180) - (length 5.08) - (name "D-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A7" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (property "Value" "D" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) ) ) - (pin bidirectional line - (at 15.24 -30.48 180) - (length 5.08) - (name "SBU1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A8" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) ) + (hide yes) ) - (pin passive line - (at 15.24 25.4 180) - (length 5.08) hide - (name "VBUS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A9" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) ) + (hide yes) ) - (pin passive line - (at 0 -40.64 90) - (length 5.08) hide - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B1" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (property "Description" "Diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) ) + (hide yes) ) - (pin bidirectional line - (at 15.24 0 180) - (length 5.08) - (name "RX1-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B10" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) ) + (hide yes) ) - (pin bidirectional line - (at 15.24 -2.54 180) - (length 5.08) - (name "RX1+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B11" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) ) + (hide yes) ) - (pin passive line - (at 0 -40.64 90) - (length 5.08) hide - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B12" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (property "ki_keywords" "diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) ) + (hide yes) ) - (pin bidirectional line - (at 15.24 -25.4 180) - (length 5.08) - (name "TX2+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B2" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) ) + (hide yes) ) - (pin bidirectional line - (at 15.24 -22.86 180) - (length 5.08) - (name "TX2-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B3" - (effects - (font - (size 1.27 1.27) - ) - ) + ) + (symbol "D_0_1" + (polyline + (pts + (xy -1.27 1.27) (xy -1.27 -1.27) ) - ) - (pin passive line - (at 15.24 25.4 180) - (length 5.08) hide - (name "VBUS" - (effects - (font - (size 1.27 1.27) - ) - ) + (stroke + (width 0.254) + (type default) ) - (number "B4" - (effects - (font - (size 1.27 1.27) - ) - ) + (fill + (type none) ) ) - (pin bidirectional line - (at 15.24 17.78 180) - (length 5.08) - (name "CC2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B5" - (effects - (font - (size 1.27 1.27) - ) - ) + (polyline + (pts + (xy 1.27 0) (xy -1.27 0) ) - ) - (pin bidirectional line - (at 15.24 5.08 180) - (length 5.08) - (name "D+" - (effects - (font - (size 1.27 1.27) - ) - ) + (stroke + (width 0) + (type default) ) - (number "B6" - (effects - (font - (size 1.27 1.27) - ) - ) + (fill + (type none) ) ) - (pin bidirectional line - (at 15.24 10.16 180) - (length 5.08) - (name "D-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B7" - (effects - (font - (size 1.27 1.27) - ) - ) + (polyline + (pts + (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) - ) - (pin bidirectional line - (at 15.24 -33.02 180) - (length 5.08) - (name "SBU2" - (effects - (font - (size 1.27 1.27) - ) - ) + (stroke + (width 0.254) + (type default) ) - (number "B8" - (effects - (font - (size 1.27 1.27) - ) - ) + (fill + (type none) ) ) + ) + (symbol "D_1_1" (pin passive line - (at 15.24 25.4 180) - (length 5.08) hide - (name "VBUS" + (at -3.81 0 0) + (length 2.54) + (name "K" (effects (font (size 1.27 1.27) ) ) ) - (number "B9" + (number "1" (effects (font (size 1.27 1.27) @@ -2104,16 +814,16 @@ ) ) (pin passive line - (at -7.62 -40.64 90) - (length 5.08) - (name "SHIELD" + (at 3.81 0 180) + (length 2.54) + (name "A" (effects (font (size 1.27 1.27) ) ) ) - (number "S1" + (number "2" (effects (font (size 1.27 1.27) @@ -2413,21 +1123,20 @@ ) ) ) - (symbol "Memory_EEPROM:25CSM04xxSN" + (symbol "Memory_EEPROM:M95256-WMN6P" (exclude_from_sim no) (in_bom yes) (on_board yes) - (property "Reference" "U3" - (at 1.9559 8.89 0) + (property "Reference" "U" + (at -7.62 6.35 0) (effects (font (size 1.27 1.27) ) - (justify left) ) ) - (property "Value" "25CSM04xxSN" - (at 1.9559 6.35 0) + (property "Value" "M95256-WMN6P" + (at 2.54 -6.35 0) (effects (font (size 1.27 1.27) @@ -2436,7 +1145,7 @@ ) ) (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" - (at 0 -17.78 0) + (at 0 0 0) (effects (font (size 1.27 1.27) @@ -2444,8 +1153,8 @@ (hide yes) ) ) - (property "Datasheet" "https://ww1.microchip.com/downloads/aemDocuments/documents/MPD/ProductDocuments/DataSheets/25CSM04-4-Mbit-SPI-Serial-EEPROM-With-128-Bit-Serial-Number-and-Enhanced-Write-Protection-20005817C.pdf" - (at 2.54 -20.32 0) + (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/9d/75/f0/3e/76/00/4c/0b/CD00103810.pdf/files/CD00103810.pdf/jcr:content/translations/en.CD00103810.pdf" + (at 0 0 0) (effects (font (size 1.27 1.27) @@ -2453,7 +1162,7 @@ (hide yes) ) ) - (property "Description" "4Mbit SPI Serial EEPROM, SOIC-8" + (property "Description" "SPI EEPROM, 256Kb (32K x 8), No Identification Page, 2.5 to 5.5V, SO8" (at 0 0 0) (effects (font @@ -2462,7 +1171,7 @@ (hide yes) ) ) - (property "ki_keywords" "EEPROM memory SPI serial" + (property "ki_keywords" "SPI EEPROM" (at 0 0 0) (effects (font @@ -2471,7 +1180,7 @@ (hide yes) ) ) - (property "ki_fp_filters" "SOIC*3.9x4.9mm*" + (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (at 0 0 0) (effects (font @@ -2480,7 +1189,7 @@ (hide yes) ) ) - (symbol "25CSM04xxSN_1_1" + (symbol "M95256-WMN6P_1_1" (rectangle (start -7.62 5.08) (end 7.62 -5.08) @@ -2495,7 +1204,7 @@ (pin input line (at -10.16 -2.54 0) (length 2.54) - (name "~{CS}" + (name "~{S}" (effects (font (size 1.27 1.27) @@ -2510,10 +1219,10 @@ ) ) ) - (pin tri_state line + (pin output line (at 10.16 -2.54 180) (length 2.54) - (name "SO" + (name "Q" (effects (font (size 1.27 1.27) @@ -2531,7 +1240,7 @@ (pin input line (at -10.16 2.54 0) (length 2.54) - (name "~{WP}" + (name "~{W}" (effects (font (size 1.27 1.27) @@ -2549,7 +1258,7 @@ (pin power_in line (at 0 -7.62 90) (length 2.54) - (name "V_{SS}" + (name "VSS" (effects (font (size 1.27 1.27) @@ -2567,7 +1276,7 @@ (pin input line (at 10.16 0 180) (length 2.54) - (name "SI" + (name "D" (effects (font (size 1.27 1.27) @@ -2585,7 +1294,7 @@ (pin input line (at 10.16 2.54 180) (length 2.54) - (name "SCK" + (name "C" (effects (font (size 1.27 1.27) @@ -2621,7 +1330,7 @@ (pin power_in line (at 0 7.62 270) (length 2.54) - (name "V_{CC}" + (name "VCC" (effects (font (size 1.27 1.27) @@ -4259,10 +2968,612 @@ ) ) ) + (symbol "Transistor_BJT:SS8050" + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.905 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SS8050" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 5.08 -7.366 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.secosgmbh.com/datasheet/products/SSMPTransistor/SOT-23/SS8050.pdf" + (at 5.08 -4.826 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "General Purpose NPN Transistor, 1.5A Ic, 25V Vce, SOT-23" + (at 34.036 -2.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "SS8050 NPN Transistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?23*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SS8050_0_1" + (polyline + (pts + (xy 0.635 0.635) (xy 2.54 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -0.635) (xy 2.54 -2.54) (xy 2.54 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 1.905) (xy 0.635 -1.905) (xy 0.635 -1.905) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.778) (xy 1.778 -1.27) (xy 2.286 -2.286) (xy 1.27 -1.778) (xy 1.27 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 1.27 0) + (radius 2.8194) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "SS8050_1_1" + (pin input line + (at -5.08 0 0) + (length 5.715) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "E" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+3V3" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+3V3_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3V3_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 242.57 55.88) + (diameter 0) + (color 0 0 0 0) + (uuid "1a1375ce-d817-4cce-82d7-f41311cce81a") + ) + (junction + (at 100.33 90.17) + (diameter 0) + (color 0 0 0 0) + (uuid "1fa9a52a-c6d9-4155-b2b3-0277b082d8c4") + ) + (junction + (at 255.27 55.88) + (diameter 0) + (color 0 0 0 0) + (uuid "4dfbec9e-da55-4b31-b285-1cb5158af8bd") + ) + (junction + (at 59.69 60.96) + (diameter 0) + (color 0 0 0 0) + (uuid "5a72f85d-8601-440e-8ce1-414da11308eb") + ) + (junction + (at 100.33 85.09) + (diameter 0) + (color 0 0 0 0) + (uuid "6e390fba-6839-4e0a-bde2-70a2fb0c83a5") + ) + (junction + (at 246.38 55.88) + (diameter 0) + (color 0 0 0 0) + (uuid "80e7435a-fa90-49ec-b147-96d29696732a") + ) + (junction + (at 67.31 170.18) + (diameter 0) + (color 0 0 0 0) + (uuid "8654963b-e8cf-4ec9-8ee7-252ffc7f68fa") + ) + (junction + (at 69.85 154.94) + (diameter 0) + (color 0 0 0 0) + (uuid "8c535156-a1b5-47a9-a149-f69619f45a8f") + ) + (no_connect + (at 140.97 88.9) + (uuid "d00319c8-e9a8-4b45-a65a-c4e908e20418") + ) + (no_connect + (at 140.97 81.28) + (uuid "e247cfb2-d172-43c9-a58c-75bd5b0799d5") + ) + (wire + (pts + (xy 222.25 55.88) (xy 242.57 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "01ce3107-aa3a-4e4d-84e0-01d3c6e9832f") ) (wire (pts - (xy 190.5 96.52) (xy 190.5 101.6) + (xy 242.57 53.34) (xy 242.57 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "03b36f13-0d5e-49e6-bbab-e7b6478af4a6") + ) + (wire + (pts + (xy 209.55 31.75) (xy 212.09 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0b07f016-b9d8-41a8-91e3-32b72f53d266") + ) + (wire + (pts + (xy 45.72 160.02) (xy 46.99 160.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0cde24ef-1baf-4627-aeef-799f8f1b958c") + ) + (wire + (pts + (xy 246.38 58.42) (xy 246.38 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0ef01510-a528-46e7-b483-d4d1af9c1f4c") + ) + (wire + (pts + (xy 231.14 20.32) (xy 231.14 21.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "11a0a5e5-d74e-4613-843f-6471dfc37644") + ) + (wire + (pts + (xy 64.77 154.94) (xy 69.85 154.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "12187123-f079-4177-88ff-ed21e15c801d") + ) + (wire + (pts + (xy 80.01 154.94) (xy 85.09 154.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "15b0a058-027e-41bd-ae8b-4977c9b1ff44") + ) + (wire + (pts + (xy 38.1 167.64) (xy 64.77 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "15f913ee-52ba-4cac-84e3-45fd0529a7aa") + ) + (wire + (pts + (xy 227.33 21.59) (xy 227.33 20.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "15f94169-93d0-49f8-87c5-8c898602c556") + ) + (wire + (pts + (xy 67.31 162.56) (xy 67.31 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1a3066c6-fc71-4c2e-add9-18e5cc2d5ed2") + ) + (wire + (pts + (xy 227.33 20.32) (xy 231.14 20.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1c8eeda7-f636-4f3c-8b97-f5e9bb9a0d32") + ) + (wire + (pts + (xy 38.1 170.18) (xy 67.31 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2ae82f0a-eb56-4392-b524-0d062f2808e4") + ) + (wire + (pts + (xy 209.55 29.21) (xy 209.55 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "34557c9d-c13a-40dc-9318-5d3574ad9bba") + ) + (wire + (pts + (xy 255.27 41.91) (xy 255.27 45.72) ) (stroke (width 0) @@ -4272,17 +3583,387 @@ ) (wire (pts - (xy 241.3 111.76) (xy 241.3 116.84) + (xy 92.71 160.02) (xy 92.71 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "34e2262c-d3ca-468f-916c-436c1d2e5229") + ) + (wire + (pts + (xy 64.77 167.64) (xy 64.77 154.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3975a03a-6354-4111-bdfc-c559f03599ee") + ) + (wire + (pts + (xy 36.83 87.63) (xy 53.34 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3a3e9171-668f-4774-a700-0ec53af5d616") + ) + (wire + (pts + (xy 57.15 59.69) (xy 57.15 60.96) ) (stroke (width 0) (type default) ) - (uuid "d3b63bf0-8a06-4c81-856c-1e911b563f6d") + (uuid "3f11e7a8-a816-4379-b135-c5d4f0618ef1") ) (wire (pts - (xy 203.2 96.52) (xy 203.2 101.6) + (xy 260.35 109.22) (xy 260.35 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4c8d8d8d-c4e2-472e-ac84-b1fe2ca04e04") + ) + (wire + (pts + (xy 257.81 93.98) (xy 261.62 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4d5559c5-569b-4406-8e94-ebd04b4b54e7") + ) + (wire + (pts + (xy 69.85 154.94) (xy 72.39 154.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "585fffee-6fe4-4b6f-b1be-c959202d4554") + ) + (wire + (pts + (xy 257.81 109.22) (xy 260.35 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "689ceb7c-b0c8-4cb4-94e0-e4eddd8bcb18") + ) + (wire + (pts + (xy 67.31 170.18) (xy 67.31 173.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6b0ef800-d87e-41a0-b5cf-36f0afd73ff6") + ) + (wire + (pts + (xy 255.27 55.88) (xy 267.97 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "728cf959-a41d-40a0-a156-f12a935f76af") + ) + (wire + (pts + (xy 26.67 87.63) (xy 29.21 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "740d83b0-3ad5-4831-a71d-1aa01cf6ae17") + ) + (wire + (pts + (xy 242.57 31.75) (xy 242.57 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7e3d5e72-1573-4514-9e33-7ef658f3bd00") + ) + (wire + (pts + (xy 261.62 90.17) (xy 261.62 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "82a94e0e-ef05-448d-8ad5-6a7da53eeb05") + ) + (wire + (pts + (xy 255.27 53.34) (xy 255.27 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "833b1c9c-c41f-4a92-9380-c694d0831ed2") + ) + (wire + (pts + (xy 240.03 31.75) (xy 242.57 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8596deda-8e81-4d35-ac09-d7b613e8c48d") + ) + (wire + (pts + (xy 59.69 62.23) (xy 59.69 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8606e5e3-4900-4b98-8337-ce7d440f5494") + ) + (wire + (pts + (xy 267.97 53.34) (xy 267.97 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "898b7cbe-118e-47cd-980a-63367d692141") + ) + (wire + (pts + (xy 92.71 168.91) (xy 92.71 166.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8b61aab1-0da6-44fe-aa40-0b497e701d11") + ) + (wire + (pts + (xy 255.27 55.88) (xy 246.38 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8b74cc2b-bc00-4b5a-8191-a3d60a2b992a") + ) + (wire + (pts + (xy 80.01 173.99) (xy 85.09 173.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8d190d5f-7164-42c6-a545-4d5ca2904fd4") + ) + (wire + (pts + (xy 67.31 173.99) (xy 72.39 173.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "923343ee-d6d7-4340-ac76-9f9a9e1b969c") + ) + (wire + (pts + (xy 38.1 162.56) (xy 43.18 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "94eda244-3bff-497f-aeab-613b3d82e5bd") + ) + (wire + (pts + (xy 92.71 179.07) (xy 92.71 181.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "98c4cc44-d268-452f-9eb8-5a97ffe04697") + ) + (wire + (pts + (xy 59.69 60.96) (xy 57.15 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9c39a934-e184-483d-8a4f-13ac74f532a8") + ) + (wire + (pts + (xy 100.33 85.09) (xy 100.33 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9eb3e437-c518-46ca-80f7-3bb7b84aefb2") + ) + (wire + (pts + (xy 246.38 55.88) (xy 242.57 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a341f5ac-2a5d-4ae9-9580-fa211f53590e") + ) + (wire + (pts + (xy 100.33 90.17) (xy 105.41 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "af8e64a6-6cbf-47d5-888d-dd5a1be6e78e") + ) + (wire + (pts + (xy 43.18 157.48) (xy 46.99 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b1f255af-2f6e-4bc2-9476-5caa3e2e2871") + ) + (wire + (pts + (xy 63.5 87.63) (xy 63.5 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b79156cf-2eeb-4fd3-81b3-a3de0a986872") + ) + (wire + (pts + (xy 100.33 81.28) (xy 100.33 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b99dbf02-99ca-4f9e-a48c-448fdd7baff5") + ) + (wire + (pts + (xy 92.71 162.56) (xy 67.31 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bc6a3bb6-48cf-4e75-aba2-d9cd5fe2db1e") + ) + (wire + (pts + (xy 43.18 162.56) (xy 43.18 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bfce8e20-16bb-4a3d-98a3-836210af5665") + ) + (wire + (pts + (xy 92.71 166.37) (xy 69.85 166.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c0284a7d-d74b-43ec-8b3c-43c95caabe3b") + ) + (wire + (pts + (xy 38.1 165.1) (xy 45.72 165.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c5e29cbb-5f85-4c03-8a82-2b27e499736a") + ) + (wire + (pts + (xy 45.72 165.1) (xy 45.72 160.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8e6a2ad-9302-4595-b969-121c956e80f2") + ) + (wire + (pts + (xy 69.85 166.37) (xy 69.85 154.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cc2ae34f-6148-4f2e-9479-2131a0207dcc") + ) + (wire + (pts + (xy 26.67 91.44) (xy 26.67 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d87d21d4-d966-4391-9e1c-83e07e9223d1") + ) + (wire + (pts + (xy 60.96 87.63) (xy 63.5 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e1808e2a-8009-498c-b71c-39f1e4ea4c1d") + ) + (wire + (pts + (xy 267.97 41.91) (xy 267.97 45.72) ) (stroke (width 0) @@ -4292,7 +3973,7 @@ ) (wire (pts - (xy 215.9 96.52) (xy 215.9 101.6) + (xy 242.57 41.91) (xy 242.57 45.72) ) (stroke (width 0) @@ -4300,39 +3981,824 @@ ) (uuid "e7075ca1-6e4b-4677-9383-f4bd622dd00c") ) - (text "Add EEPROM with EUI-48 MAC address\nif address cannot be retrieved on\ndev board" + (wire + (pts + (xy 222.25 41.91) (xy 222.25 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ea242011-715c-4eb1-9c4d-376a46277cfa") + ) + (wire + (pts + (xy 59.69 59.69) (xy 59.69 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f040a969-afef-4360-9ea7-363ccc8cc430") + ) + (text "Wipe: Full factory reset\nReboot: Reboot firmware" (exclude_from_sim no) - (at 63.754 163.322 0) + (at 234.696 101.854 0) (effects (font (size 1.27 1.27) ) ) - (uuid "61bc1ef3-4330-4b18-b057-0d1058381466") + (uuid "66be0d9f-1443-473a-9c11-8d06633632e7") ) - (text "Add USB-C PD and bridge\n(e.g. FT2232HPQ TRAY)" + (text "PCB version detection" (exclude_from_sim no) - (at 62.992 138.938 0) + (at 46.736 92.71 0) (effects (font (size 1.27 1.27) ) ) - (uuid "f888027b-118e-4881-96a4-5363b453dfa0") + (uuid "fcab79b8-a2e7-4707-b043-effd53cd6401") ) - (text "PCB version detection\nvoltage divider" - (exclude_from_sim no) - (at 253.238 114.808 0) + (label "SHELL_TX" + (at 140.97 96.52 180) (effects (font (size 1.27 1.27) ) + (justify right bottom) + ) + (uuid "036d375d-f65d-4472-8fc0-dae8db261b72") + ) + (label "VERSION" + (at 41.91 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "03b454f9-9351-4f70-b0be-3c5fe7d5c74f") + ) + (label "~{AUDIO_FAULT}" + (at 171.45 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "118c3c45-2e1d-4456-b873-26f8a4bbf7b7") + ) + (label "AUDIO_SDA" + (at 129.54 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "187bd160-c3a8-43fc-88bf-1550301a9725") + ) + (label "TCK" + (at 72.39 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1b8bfaea-d499-4c31-8f44-338826c36685") + ) + (label "LED_BTL" + (at 267.97 34.29 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "222331c3-4607-488b-9f2a-109e1f90004e") + ) + (label "AUDIO_SDIN" + (at 129.54 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "25059729-74fa-41dc-b601-37359e13e126") + ) + (label "AUDIO_EN" + (at 129.54 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "299ef883-c885-4c62-9708-1d603e817cbb") + ) + (label "~{REBOOT}" + (at 92.71 90.17 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "2f86413a-a1e9-437b-9033-16cf76629ab8") + ) + (label "~{REBOOT}" + (at 247.65 109.22 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "317c5bde-1466-401a-8d5e-0f9c975850c3") + ) + (label "~{AUDIO_WARN}" + (at 171.45 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "31a6892f-c459-4fc0-a682-72acf0aafe8a") + ) + (label "TDI" + (at 171.45 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "327895ed-ddd2-4ad6-b530-d6cb0e132f51") + ) + (label "BTL_RX" + (at 171.45 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3470c621-9420-4115-964f-fd7ab820c9ae") + ) + (label "TDO" + (at 171.45 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "36f2a70e-868c-484a-b10d-0a1f50c66c18") + ) + (label "AUDIO_SDIN" + (at 171.45 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3cb055ed-37c8-404f-b79e-f51908da7a73") + ) + (label "~{AUDIO_MUTE}" + (at 171.45 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3fd66969-e875-4d91-8d45-5c5fc55598c3") + ) + (label "AUDIO_SDA" + (at 171.45 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "40db436c-f04c-4f2c-b32f-4c65a5a58d8b") + ) + (label "LED_PWR" + (at 140.97 91.44 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "460cb2a5-a17c-488a-9137-e05d536c927d") + ) + (label "LED_BTL" + (at 140.97 86.36 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "46daa48a-317b-4992-9861-53886a617736") + ) + (label "JTAG_RST" + (at 92.71 85.09 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "53e2b8e7-09fd-4659-bd1f-ffb714846450") + ) + (label "LED_ACT" + (at 255.27 34.29 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "568c08dd-382c-47ed-ac38-8e8110abd5f5") + ) + (label "MCU_EN" + (at 140.97 71.12 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "57ad4d88-c5b3-4fa7-b2ca-af473f324c2a") + ) + (label "MCU_EN" + (at 92.71 149.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "673ad355-ed88-42f1-81e4-f5f3b4a50dd4") + ) + (label "AUDIO_LRCLK" + (at 129.54 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "67409146-9aac-4d0b-bfb3-40213bf7b4d9") + ) + (label "MCU_BOOT" + (at 92.71 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6933995d-582d-4561-ad80-fde88d4497f2") + ) + (label "MCU_BOOT" + (at 140.97 76.2 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "6b81e314-c42c-4b28-a3f5-ec52e7e28b65") + ) + (label "BTL_RX" + (at 54.61 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "70b2a82a-23fd-4e19-be10-2b2cde65207e") + ) + (label "JTAG_RST" + (at 72.39 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7319d327-533c-4147-821f-a8e8f8a46065") + ) + (label "AUDIO_SCL" + (at 171.45 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7a8e06c9-b96a-461a-a016-0a60ccaf776c") + ) + (label "MCU_EN" + (at 105.41 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7faa09ed-a691-4c50-bf33-1038e9280b35") + ) + (label "~{AUDIO_WARN}" + (at 129.54 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "826dfc48-f479-4ada-80e1-4cd0d62f554f") + ) + (label "TCK" + (at 171.45 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "83334657-e58a-4cb8-a8dc-e74fff07fb24") + ) + (label "SHELL_RX" + (at 38.1 149.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "8510a64e-6291-4fff-8f1e-74642564ff5d") + ) + (label "TDO" + (at 72.39 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "8b926999-354f-43c6-85bc-0ed23c3d0a6c") + ) + (label "BTL_TX" + (at 171.45 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "96625900-4c3c-4d63-a5ce-d0f6a36c6465") + ) + (label "AUDIO_SCLK" + (at 129.54 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a0d6298b-9391-4bb1-bfed-1eb66976b5ed") + ) + (label "BTL_TX" + (at 54.61 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a47c020a-403d-4ae3-90d0-032b9f48e580") + ) + (label "AUDIO_LRCLK" + (at 171.45 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a64c8d91-65bb-4bb0-a11c-b4f044232742") + ) + (label "~{AUDIO_MUTE}" + (at 129.54 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a76ccf56-2ecc-4072-802a-55a0d98669e6") + ) + (label "TMS" + (at 72.39 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b64e5366-e5d8-409d-811c-4397ad328640") + ) + (label "AUDIO_SCLK" + (at 171.45 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b8481a31-f1e9-4e31-82c3-f1d8358c564e") + ) + (label "SHELL_RX" + (at 140.97 93.98 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "bcc36b4f-f45a-4a97-a71e-8be27e416c05") + ) + (label "LED_PWR" + (at 209.55 31.75 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c2050fa9-0fde-4b08-886e-6f03b5fdaee4") + ) + (label "SHELL_TX" + (at 38.1 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c5a7bfc5-c866-4ecf-a8ea-825a0127f51b") + ) + (label "TMS" + (at 171.45 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c8dd9ffc-0b2d-4ee7-b117-c78cc90a0306") + ) + (label "LED_ACT" + (at 140.97 83.82 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "d0948199-b9af-4857-9c25-d8a20336aa14") + ) + (label "~{AUDIO_FAULT}" + (at 129.54 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "df01a3e8-622a-4e31-9efb-fc3b922521db") + ) + (label "AUDIO_EN" + (at 171.45 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "e0acc028-50cf-43bf-93f3-a54b8e9ef5d5") + ) + (label "VERSION" + (at 140.97 78.74 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "e655c7d8-ef1d-49c2-b81a-f0b4d2b84e49") + ) + (label "TDI" + (at 72.39 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ed4fd753-6f92-43c9-a4fa-3172ff7dd320") + ) + (label "AUDIO_SCL" + (at 129.54 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f35090e9-9f99-40cb-b994-dfe2cb71f8dc") + ) + (symbol + (lib_id "power:GND") + (at 156.21 127 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "04960a4f-eae8-4cd7-9f81-0b0f4f06ca27") + (property "Reference" "#PWR015" + (at 156.21 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 156.21 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 156.21 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 156.21 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 156.21 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6d83d1dd-7bcb-43ca-b58e-215be8f4dbff") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 246.38 58.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "121fec5a-6609-4057-9ba5-0ce4bbe0d100") + (property "Reference" "#PWR012" + (at 246.38 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 246.38 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 246.38 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 246.38 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 246.38 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0b5cabde-4e52-4a20-9662-2dd4ca0cae21") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 76.2 154.94 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "13a828da-bd7a-4cf5-ba62-0e19106de57b") + (property "Reference" "R9" + (at 76.2 149.86 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10K" + (at 76.2 152.4 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 76.2 153.162 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 76.2 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 76.2 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "ae20efaf-ed2f-4a7a-8f7b-72912b827b67") + ) + (pin "1" + (uuid "b69672d9-cece-449f-a2ea-22b82b7f47e7") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "R9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 26.67 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "15e2f61f-5db7-46d6-9435-1a2f36362558") + (property "Reference" "#PWR01" + (at 26.67 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 26.67 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 26.67 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 26.67 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 26.67 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "703e90ae-09fd-4f22-826b-b4974e69173e") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR01") + (unit 1) + ) + ) ) - (uuid "fcab79b8-a2e7-4707-b043-effd53cd6401") ) (symbol (lib_id "RF_Module:ESP32-S3-MINI-1") - (at 146.05 97.79 0) + (at 156.21 96.52 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -4340,7 +4806,7 @@ (dnp no) (uuid "1d27c785-80ad-4e14-9406-8515becf138a") (property "Reference" "U1" - (at 148.336 62.738 0) + (at 158.496 61.468 0) (effects (font (size 1.27 1.27) @@ -4349,7 +4815,7 @@ ) ) (property "Value" "ESP32-S3-MINI-1" - (at 148.336 65.278 0) + (at 158.496 64.008 0) (effects (font (size 1.27 1.27) @@ -4358,7 +4824,7 @@ ) ) (property "Footprint" "RF_Module:ESP32-S2-MINI-1" - (at 161.29 127 0) + (at 171.45 125.73 0) (effects (font (size 1.27 1.27) @@ -4367,7 +4833,7 @@ ) ) (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf" - (at 146.05 57.15 0) + (at 156.21 55.88 0) (effects (font (size 1.27 1.27) @@ -4375,14 +4841,32 @@ (hide yes) ) ) - (property "Description" "Microcontroller and WLAN interface" - (at 165.354 67.818 0) + (property "Description" "MCU with WLAN" + (at 165.862 66.548 0) (effects (font (size 1.27 1.27) ) ) ) + (property "MPN" "ESP32-S3-MINI-1-N8" + (at 156.21 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Espressif Systems" + (at 156.21 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) (pin "45" (uuid "12a82820-4fb5-4385-bad0-67d946ab003b") ) @@ -4589,7 +5073,7 @@ ) (symbol (lib_id "Memory_Flash:W25Q32JVSS") - (at 134.62 148.59 0) + (at 252.73 140.97 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -4597,7 +5081,7 @@ (dnp no) (uuid "2a49ee48-3849-4608-89d2-57d8e20c4e48") (property "Reference" "U3" - (at 143.51 147.3199 0) + (at 261.62 139.6999 0) (effects (font (size 1.27 1.27) @@ -4606,7 +5090,7 @@ ) ) (property "Value" "W25Q32JVSS" - (at 143.51 149.8599 0) + (at 261.62 142.2399 0) (effects (font (size 1.27 1.27) @@ -4615,7 +5099,7 @@ ) ) (property "Footprint" "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" - (at 134.62 148.59 0) + (at 252.73 140.97 0) (effects (font (size 1.27 1.27) @@ -4624,7 +5108,24 @@ ) ) (property "Datasheet" "http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf" - (at 134.62 148.59 0) + (at 252.73 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "External flash" + (at 268.478 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "W25Q32JVSSIQ" + (at 252.73 140.97 0) (effects (font (size 1.27 1.27) @@ -4632,12 +5133,13 @@ (hide yes) ) ) - (property "Description" "External flash memory" - (at 154.432 152.4 0) + (property "Manufacturer" "Winbond Electronics" + (at 252.73 140.97 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) (pin "1" @@ -4675,7 +5177,7 @@ ) (symbol (lib_id "Connector:Conn_ARM_JTAG_SWD_10") - (at 80.01 99.06 0) + (at 59.69 44.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -4683,25 +5185,25 @@ (dnp no) (uuid "2cb1f2f5-c3a3-4e8f-bc83-f4591990e265") (property "Reference" "J1" - (at 68.58 97.7899 0) + (at 61.722 58.928 0) (effects (font (size 1.27 1.27) ) - (justify right) + (justify left) ) ) (property "Value" "Conn_ARM_JTAG_SWD_10" - (at 68.58 100.3299 0) + (at 61.722 60.96 0) (effects (font (size 1.27 1.27) ) - (justify right) + (justify left) ) ) (property "Footprint" "" - (at 80.01 99.06 0) + (at 59.69 44.45 0) (effects (font (size 1.27 1.27) @@ -4709,8 +5211,8 @@ (hide yes) ) ) - (property "Datasheet" "http://infocenter.arm.com/help/topic/com.arm.doc.ddi0314h/DDI0314H_coresight_components_trm.pdf" - (at 71.12 130.81 90) + (property "Datasheet" "https://mm.digikey.com/Volume0/opasdata/d220001/medias/docus/6209/ftsh-1xx-xx-xxx-dv-xxx-xxx-x-xx-mkt.pdf" + (at 50.8 76.2 90) (effects (font (size 1.27 1.27) @@ -4718,12 +5220,31 @@ (hide yes) ) ) - (property "Description" "JTAG connector" - (at 60.96 103.124 0) + (property "Description" "JTAG" + (at 61.722 62.992 0) (effects (font (size 1.27 1.27) ) + (justify left) + ) + ) + (property "MPN" "FTSH-105-01-L-DV-007-K-TR" + (at 59.69 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "samtec" + (at 59.69 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) ) ) (pin "8" @@ -4767,7 +5288,7 @@ ) (symbol (lib_id "Switch:SW_Push") - (at 146.05 46.99 0) + (at 252.73 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -4775,7 +5296,7 @@ (dnp no) (uuid "2df93158-1d66-4506-a3fe-9fa3d5d1421d") (property "Reference" "SW2" - (at 146.05 39.37 0) + (at 252.73 101.6 0) (effects (font (size 1.27 1.27) @@ -4783,15 +5304,15 @@ ) ) (property "Value" "SW_Push" - (at 146.05 41.91 0) + (at 252.73 104.14 0) (effects (font (size 1.27 1.27) ) ) ) - (property "Footprint" "" - (at 146.05 41.91 0) + (property "Footprint" "Button_Switch_SMD:SW_SPST_TL3305B" + (at 252.73 104.14 0) (effects (font (size 1.27 1.27) @@ -4799,8 +5320,25 @@ (hide yes) ) ) - (property "Datasheet" "~" - (at 146.05 41.91 0) + (property "Datasheet" "https://www.e-switch.com/wp-content/uploads/2024/08/TL3305.pdf" + (at 252.73 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Reboot" + (at 252.73 110.744 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "TL3305BF260QG" + (at 252.73 109.22 0) (effects (font (size 1.27 1.27) @@ -4808,12 +5346,13 @@ (hide yes) ) ) - (property "Description" "Reset button" - (at 146.05 48.514 0) + (property "Manufacturer" "E-Switch" + (at 252.73 109.22 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) (pin "2" @@ -4832,34 +5371,32 @@ ) ) (symbol - (lib_id "Connector:Conn_01x02_Socket") - (at 259.08 54.61 0) + (lib_id "Device:R") + (at 76.2 173.99 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "3b4b201d-eb1c-4ee8-a9af-3cca05c64d32") - (property "Reference" "J4" - (at 260.35 54.6099 0) + (uuid "33102136-5e81-4068-8401-fde3fce40dc0") + (property "Reference" "R10" + (at 76.2 168.91 90) (effects (font (size 1.27 1.27) ) - (justify left) ) ) - (property "Value" "Conn_01x02_Socket" - (at 260.35 57.1499 0) + (property "Value" "10K" + (at 76.2 171.45 90) (effects (font (size 1.27 1.27) ) - (justify left) ) ) (property "Footprint" "" - (at 259.08 54.61 0) + (at 76.2 172.212 90) (effects (font (size 1.27 1.27) @@ -4868,7 +5405,7 @@ ) ) (property "Datasheet" "~" - (at 259.08 54.61 0) + (at 76.2 173.99 0) (effects (font (size 1.27 1.27) @@ -4876,58 +5413,59 @@ (hide yes) ) ) - (property "Description" "Right audio channel connector" - (at 266.446 59.436 0) + (property "Description" "Resistor" + (at 76.2 173.99 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) (pin "2" - (uuid "b0c43978-cc88-48fc-9a4c-62b0223e6242") + (uuid "9549b5bd-f7d6-4f86-b0d2-50fed7254cc2") ) (pin "1" - (uuid "1b731bb7-6061-4cdd-9ec4-db947e26cf69") + (uuid "0028bedc-d048-4d4a-90db-cb5ae8b0db4c") ) (instances (project "soundbox" (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" - (reference "J4") + (reference "R10") (unit 1) ) ) ) ) (symbol - (lib_id "Connector:Conn_01x02_Socket") - (at 259.08 41.91 0) + (lib_id "power:+3V3") + (at 59.69 29.21 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "4725fe57-0876-4157-b924-f1176e3dfe83") - (property "Reference" "J3" - (at 260.35 41.9099 0) + (fields_autoplaced yes) + (uuid "38f18e1a-1f6f-4c1b-ad74-b790656f981e") + (property "Reference" "#PWR016" + (at 59.69 33.02 0) (effects (font (size 1.27 1.27) ) - (justify left) + (hide yes) ) ) - (property "Value" "Conn_01x02_Socket" - (at 260.35 44.4499 0) + (property "Value" "+3V3" + (at 59.69 24.13 0) (effects (font (size 1.27 1.27) ) - (justify left) ) ) (property "Footprint" "" - (at 259.08 41.91 0) + (at 59.69 29.21 0) (effects (font (size 1.27 1.27) @@ -4935,8 +5473,8 @@ (hide yes) ) ) - (property "Datasheet" "~" - (at 259.08 41.91 0) + (property "Datasheet" "" + (at 59.69 29.21 0) (effects (font (size 1.27 1.27) @@ -4944,24 +5482,88 @@ (hide yes) ) ) - (property "Description" "Left audio channel connector" - (at 266.446 46.736 0) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 59.69 29.21 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) - (pin "2" - (uuid "bb24cc0f-b1ac-48d6-966b-56976518b96e") + (pin "1" + (uuid "4983620d-71b2-40cd-9e66-9a0adddd8449") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 156.21 66.04 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3bcea68d-22e2-46fa-98cb-41f15b8c069d") + (property "Reference" "#PWR014" + (at 156.21 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 156.21 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 156.21 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 156.21 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 156.21 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) (pin "1" - (uuid "c4496426-9f28-4343-86f8-6c16d987661b") + (uuid "f51edfc3-be22-490e-8e8b-5a08b7208834") ) (instances (project "" (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" - (reference "J3") + (reference "#PWR014") (unit 1) ) ) @@ -4969,16 +5571,16 @@ ) (symbol (lib_id "Device:R") - (at 215.9 105.41 0) + (at 100.33 77.47 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) - (uuid "57288bb7-160a-400f-aa53-1b9b006077a3") - (property "Reference" "R3" - (at 218.44 104.1399 0) + (uuid "43e46b30-f279-4799-af75-ab37d418a5ac") + (property "Reference" "R6" + (at 102.87 76.1999 0) (effects (font (size 1.27 1.27) @@ -4986,8 +5588,8 @@ (justify left) ) ) - (property "Value" "R" - (at 218.44 106.6799 0) + (property "Value" "10k" + (at 102.87 78.7399 0) (effects (font (size 1.27 1.27) @@ -4996,7 +5598,7 @@ ) ) (property "Footprint" "" - (at 214.122 105.41 90) + (at 98.552 77.47 90) (effects (font (size 1.27 1.27) @@ -5005,7 +5607,7 @@ ) ) (property "Datasheet" "~" - (at 215.9 105.41 0) + (at 100.33 77.47 0) (effects (font (size 1.27 1.27) @@ -5014,7 +5616,7 @@ ) ) (property "Description" "Resistor" - (at 215.9 105.41 0) + (at 100.33 77.47 0) (effects (font (size 1.27 1.27) @@ -5022,40 +5624,42 @@ (hide yes) ) ) - (pin "1" - (uuid "bd26713c-21af-4796-83ef-2b687164dc74") - ) (pin "2" - (uuid "d8e5956d-54e6-4788-b618-1d27483f7684") + (uuid "98dda184-aa85-4a2c-a59c-9ba35dbd1d69") + ) + (pin "1" + (uuid "fba0e13c-7ff6-450e-8962-2528aa35c6a5") ) (instances (project "" (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" - (reference "R3") + (reference "R6") (unit 1) ) ) ) ) (symbol - (lib_id "Connector:USB_C_Receptacle") - (at 33.02 50.8 0) + (lib_id "power:+3V3") + (at 63.5 83.82 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "5ddfc130-f836-4dee-ac58-c1f750b14af3") - (property "Reference" "J2" - (at 33.02 15.748 0) + (fields_autoplaced yes) + (uuid "514ba1fb-2894-44ff-b2c9-7c0325b580ef") + (property "Reference" "#PWR02" + (at 63.5 87.63 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) - (property "Value" "USB_C_Receptacle" - (at 33.02 18.288 0) + (property "Value" "+3V3" + (at 63.5 78.74 0) (effects (font (size 1.27 1.27) @@ -5063,7 +5667,7 @@ ) ) (property "Footprint" "" - (at 36.83 50.8 0) + (at 63.5 83.82 0) (effects (font (size 1.27 1.27) @@ -5071,8 +5675,8 @@ (hide yes) ) ) - (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" - (at 36.83 50.8 0) + (property "Datasheet" "" + (at 63.5 83.82 0) (effects (font (size 1.27 1.27) @@ -5080,93 +5684,244 @@ (hide yes) ) ) - (property "Description" "USB-C connector" - (at 33.02 21.082 0) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 63.5 83.82 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) - (pin "A6" - (uuid "8fdbcb1b-9385-484d-be40-f7e8d6c0ba7b") + (pin "1" + (uuid "57479e59-9e57-43ad-a73f-b40f6aa52456") ) - (pin "A9" - (uuid "1ec1acad-8f3e-4430-8541-c05f986b1a2e") + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR02") + (unit 1) + ) + ) ) - (pin "B10" - (uuid "be8e2e2d-6c3c-4772-984c-24aabbecce01") + ) + (symbol + (lib_id "Device:R") + (at 242.57 49.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "57288bb7-160a-400f-aa53-1b9b006077a3") + (property "Reference" "R3" + (at 245.11 48.2599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) ) - (pin "B11" - (uuid "37687a42-eadc-4117-936d-603705b72b5e") + (property "Value" "130R" + (at 245.11 50.7999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) ) - (pin "B2" - (uuid "dd9c9420-375b-4fb4-b8a8-20d9aedb80ba") + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 240.792 49.53 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "A5" - (uuid "1a9c2b47-72de-404d-8fe2-823601f3b9d9") + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C304.pdf" + (at 242.57 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "B9" - (uuid "ab47ae93-7659-4aec-8002-32822d362cb1") + (property "Description" "Resistor" + (at 242.57 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "A11" - (uuid "605fb4a8-e653-45df-98e6-de804e49950d") + (property "MPN" "ERJ-3EKF1300V" + (at 242.57 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "A12" - (uuid "df81f02c-2ba2-424d-b968-1ba3f7ad8331") + (property "Manufacturer" "Panasonic Electronic Components" + (at 242.57 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "A2" - (uuid "d5d9d534-584b-4af5-a3ee-c069bb517cad") + (pin "1" + (uuid "bd26713c-21af-4796-83ef-2b687164dc74") ) - (pin "A3" - (uuid "b78acfc5-8509-4369-b971-f3b2db7cbff2") + (pin "2" + (uuid "d8e5956d-54e6-4788-b618-1d27483f7684") ) - (pin "A4" - (uuid "da9372a0-86ef-489c-97e2-e5365c4328fe") + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "R3") + (unit 1) + ) + ) ) - (pin "B1" - (uuid "2c509aba-eb11-4547-a8bc-ecc645f0aa2d") + ) + (symbol + (lib_id "power:GND") + (at 231.14 21.59 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "635f8df0-49ea-45b4-89b3-5f27bdf6bbd8") + (property "Reference" "#PWR013" + (at 231.14 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "B8" - (uuid "1eac32e6-91f7-4495-b8dc-0d2da3c5b44e") + (property "Value" "GND" + (at 231.14 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "A7" - (uuid "39f9b179-82e1-48fe-bced-444d6eacb367") + (property "Footprint" "" + (at 231.14 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "A8" - (uuid "0eeb9b22-2c40-44f5-801f-162196b71f01") + (property "Datasheet" "" + (at 231.14 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "B5" - (uuid "02bf302d-e914-4f57-b279-6bc99230d7ec") + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 231.14 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "B6" - (uuid "8602ac07-efff-44e8-82ce-fc1060ca847d") + (pin "1" + (uuid "a4b62481-8253-4cd2-96f0-91d1940c72d0") ) - (pin "B7" - (uuid "cc822729-9d9f-4134-8292-09d650e743bd") + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR013") + (unit 1) + ) + ) ) - (pin "S1" - (uuid "d049085a-796d-40ea-a858-fe54f890a750") + ) + (symbol + (lib_id "Device:R") + (at 50.8 160.02 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "68f4666c-abfc-4cbd-a5a3-3ab8eeb14788") + (property "Reference" "R8" + (at 50.8 162.56 90) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "B3" - (uuid "d68dfeeb-36f8-4f8a-bbb1-654cf759549c") + (property "Value" "0R" + (at 50.8 165.1 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 50.8 158.242 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "B12" - (uuid "4ab48581-684a-47bb-a801-b0b4661177ef") + (property "Datasheet" "~" + (at 50.8 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "B4" - (uuid "cfdd72ec-b8a2-4bea-82a3-a1182f8d6127") + (property "Description" "Resistor" + (at 50.8 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "A1" - (uuid "04ddde63-eed0-475e-8b6d-e277ecb731b4") + (pin "1" + (uuid "1be977c7-a003-43f2-a7ff-06804eee6fff") ) - (pin "A10" - (uuid "51db960d-ec7d-4a0d-807a-238aff05afa0") + (pin "2" + (uuid "78f94527-772d-40e9-913d-f383d6e71fac") ) (instances - (project "" + (project "soundbox" (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" - (reference "J2") + (reference "R8") (unit 1) ) ) @@ -5174,7 +5929,7 @@ ) (symbol (lib_id "Switch:SW_Push") - (at 146.05 31.75 0) + (at 252.73 93.98 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -5182,7 +5937,7 @@ (dnp no) (uuid "69e6d5d3-d27a-49b0-b7f4-ff672ddcc6a0") (property "Reference" "SW1" - (at 146.05 24.13 0) + (at 252.73 86.36 0) (effects (font (size 1.27 1.27) @@ -5190,15 +5945,15 @@ ) ) (property "Value" "SW_Push" - (at 146.05 26.67 0) + (at 252.73 88.9 0) (effects (font (size 1.27 1.27) ) ) ) - (property "Footprint" "" - (at 146.05 26.67 0) + (property "Footprint" "Button_Switch_SMD:SW_SPST_TL3305B" + (at 252.73 88.9 0) (effects (font (size 1.27 1.27) @@ -5206,8 +5961,8 @@ (hide yes) ) ) - (property "Datasheet" "~" - (at 146.05 26.67 0) + (property "Datasheet" "https://www.e-switch.com/wp-content/uploads/2024/08/TL3305.pdf" + (at 252.73 88.9 0) (effects (font (size 1.27 1.27) @@ -5215,14 +5970,32 @@ (hide yes) ) ) - (property "Description" "Factory reset button" - (at 146.05 33.528 0) + (property "Description" "Wipe" + (at 252.73 95.758 0) (effects (font (size 1.27 1.27) ) ) ) + (property "MPN" "TL3305BF260QG" + (at 252.73 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "E-Switch" + (at 252.73 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) (pin "2" (uuid "1211eb0b-56d4-46b0-8bf6-0b545164d36a") ) @@ -5239,34 +6012,34 @@ ) ) (symbol - (lib_id "Memory_EEPROM:25CSM04xxSN") - (at 190.5 139.7 0) + (lib_id "power:+3V3") + (at 100.33 73.66 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "6ebff592-e515-4023-972e-e091ec275b61") - (property "Reference" "U4" - (at 192.786 127.508 0) + (fields_autoplaced yes) + (uuid "7690c748-ae61-4a4a-a604-a07de83c87a0") + (property "Reference" "#PWR018" + (at 100.33 77.47 0) (effects (font (size 1.27 1.27) ) - (justify left) + (hide yes) ) ) - (property "Value" "25CSM04xxSN" - (at 192.786 130.048 0) + (property "Value" "+3V3" + (at 100.33 68.58 0) (effects (font (size 1.27 1.27) ) - (justify left) ) ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" - (at 190.5 157.48 0) + (property "Footprint" "" + (at 100.33 73.66 0) (effects (font (size 1.27 1.27) @@ -5274,8 +6047,8 @@ (hide yes) ) ) - (property "Datasheet" "https://ww1.microchip.com/downloads/aemDocuments/documents/MPD/ProductDocuments/DataSheets/25CSM04-4-Mbit-SPI-Serial-EEPROM-With-128-Bit-Serial-Number-and-Enhanced-Write-Protection-20005817C.pdf" - (at 193.04 160.02 0) + (property "Datasheet" "" + (at 100.33 73.66 0) (effects (font (size 1.27 1.27) @@ -5283,42 +6056,107 @@ (hide yes) ) ) - (property "Description" "Configuration EEPROM memory" - (at 207.772 132.588 0) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 100.33 73.66 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) (pin "1" - (uuid "221e9d1b-b771-4a1f-98db-c0ac9f02c7b4") + (uuid "d911f3a6-2bd8-4381-8ed6-0e5890e493cb") ) - (pin "8" - (uuid "f8cb7020-5692-4341-bc12-726cff1af7e5") + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR018") + (unit 1) + ) + ) ) - (pin "5" - (uuid "b8b4bd4e-e7b7-4acf-9182-e22c29ce9688") + ) + (symbol + (lib_id "Device:D") + (at 96.52 90.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "79385e98-627e-4487-ba97-f07cee61b216") + (property "Reference" "D4" + (at 96.52 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "7" - (uuid "65fee943-a0d9-412a-87d6-9ee99e2ec878") + (property "Value" "D" + (at 96.52 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "6" - (uuid "0a3d801f-3a20-4100-acda-92c250b1be74") + (property "Footprint" "" + (at 96.52 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "3" - (uuid "a1220f5f-df4d-47cd-a603-6deb14fc41b7") + (property "Datasheet" "~" + (at 96.52 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "4" - (uuid "e2e48be9-87f0-4a20-8614-a15eb28bce5f") + (property "Description" "Diode" + (at 96.52 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 96.52 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 96.52 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bf6324ab-bdf8-4491-8a24-0cb1a660be7e") ) (pin "2" - (uuid "0f49a55c-0fc1-4094-afa6-5c62de8012d8") + (uuid "4246e7f9-f4a0-4e22-b190-8228fd81ba2a") ) (instances (project "" (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" - (reference "U4") + (reference "D4") (unit 1) ) ) @@ -5326,7 +6164,7 @@ ) (symbol (lib_id "Device:R") - (at 203.2 105.41 0) + (at 267.97 49.53 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -5335,7 +6173,7 @@ (fields_autoplaced yes) (uuid "7c450492-392a-42f0-8291-06d7ab953e15") (property "Reference" "R2" - (at 205.74 104.1399 0) + (at 270.51 48.2599 0) (effects (font (size 1.27 1.27) @@ -5343,8 +6181,8 @@ (justify left) ) ) - (property "Value" "R" - (at 205.74 106.6799 0) + (property "Value" "10R" + (at 270.51 50.7999 0) (effects (font (size 1.27 1.27) @@ -5352,8 +6190,8 @@ (justify left) ) ) - (property "Footprint" "" - (at 201.422 105.41 90) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 266.192 49.53 90) (effects (font (size 1.27 1.27) @@ -5361,8 +6199,8 @@ (hide yes) ) ) - (property "Datasheet" "~" - (at 203.2 105.41 0) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDO0000/AOA0000C331.pdf" + (at 267.97 49.53 0) (effects (font (size 1.27 1.27) @@ -5371,7 +6209,25 @@ ) ) (property "Description" "Resistor" - (at 203.2 105.41 0) + (at 267.97 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MPN" "ERJ-PA3F10R0V" + (at 267.97 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 267.97 49.53 0) (effects (font (size 1.27 1.27) @@ -5395,16 +6251,17 @@ ) ) (symbol - (lib_id "Amplifier_Audio:TAS5825MRHB") - (at 229.87 50.8 0) + (lib_id "Transistor_BJT:SS8050") + (at 90.17 154.94 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "84819cd8-71aa-4c55-98cf-f59300a49124") - (property "Reference" "U2" - (at 237.1441 76.2 0) + (fields_autoplaced yes) + (uuid "89a9bfa8-08ea-46e4-ab2f-bc9264feed4d") + (property "Reference" "Q1" + (at 95.25 153.6699 0) (effects (font (size 1.27 1.27) @@ -5412,8 +6269,8 @@ (justify left) ) ) - (property "Value" "TAS5825MRHB" - (at 237.1441 78.74 0) + (property "Value" "SS8050" + (at 95.25 156.2099 0) (effects (font (size 1.27 1.27) @@ -5421,152 +6278,559 @@ (justify left) ) ) - (property "Footprint" "Package_DFN_QFN:VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm" - (at 229.87 85.09 0) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 95.25 162.306 0) (effects (font (size 1.27 1.27) + (italic yes) ) + (justify left) (hide yes) ) ) - (property "Datasheet" "www.ti.com/lit/ds/symlink/tas5825m.pdf" - (at 229.87 50.8 0) + (property "Datasheet" "http://www.secosgmbh.com/datasheet/products/SSMPTransistor/SOT-23/SS8050.pdf" + (at 95.25 159.766 0) (effects (font (size 1.27 1.27) ) + (justify left) (hide yes) ) ) - (property "Description" "Audio amplifier" - (at 244.602 81.28 0) + (property "Description" "General Purpose NPN Transistor, 1.5A Ic, 25V Vce, SOT-23" + (at 124.206 157.226 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) - (pin "19" - (uuid "457be5a9-b658-4df7-b408-eff5a98d2b07") + (pin "1" + (uuid "08ae813d-6773-4c12-92a6-45423097c1e6") ) - (pin "11" - (uuid "1cb7c1dc-626c-433c-a45e-67173cd1cb0e") + (pin "3" + (uuid "ef987027-5678-4fbe-b632-f6a44a167cad") ) - (pin "10" - (uuid "e1175596-1728-4c33-8220-32a4b324db70") + (pin "2" + (uuid "33f469e0-c648-41a3-b8bf-b9c084bf1f90") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "Q1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 261.62 90.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8b42469d-c494-41c0-8cbf-eaaabefd7c48") + (property "Reference" "#PWR011" + (at 261.62 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 261.62 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 261.62 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 261.62 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 261.62 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) (pin "1" - (uuid "8b9a8b2f-35d3-42f8-bef2-c220abcc8ec6") + (uuid "25a3e579-430a-4dc1-8777-b3f939cd7822") ) - (pin "15" - (uuid "52b71ded-e4c1-42fe-b3e5-965f9c735ee1") + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR011") + (unit 1) + ) + ) ) - (pin "7" - (uuid "f44b3e62-1c26-4ddc-83f9-de0a514119d6") + ) + (symbol + (lib_id "power:GND") + (at 59.69 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9761d6fb-b976-410e-a4c6-5c12f94a6faf") + (property "Reference" "#PWR017" + (at 59.69 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "12" - (uuid "64801df1-98ac-4ec0-abb8-c2bc7038d5a6") + (property "Value" "GND" + (at 59.69 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "13" - (uuid "563f9f36-a1bd-4c2d-b3b7-d7dd593a06fa") + (property "Footprint" "" + (at 59.69 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "26" - (uuid "e3033cbc-ce8d-4415-aa57-de48a4ec509a") + (property "Datasheet" "" + (at 59.69 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "18" - (uuid "76fdf483-9cf9-4246-8238-c7a351d627de") + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 59.69 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "31" - (uuid "d4ec5c31-b40f-4bde-92a7-7da6f15f0e17") + (pin "1" + (uuid "4d13b85c-ef8b-4fcb-b9b9-6c17c38eb6a7") ) - (pin "4" - (uuid "c4a6b029-c025-4364-a9ca-970bc0437813") + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR017") + (unit 1) + ) + ) ) - (pin "25" - (uuid "91e90183-449b-4385-819f-8d315b8ebe4f") + ) + (symbol + (lib_id "power:GND") + (at 105.41 97.79 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "aa8614dd-afe1-49f9-9ac7-3ab129e53fe9") + (property "Reference" "#PWR020" + (at 105.41 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "22" - (uuid "6ede3eba-fb79-4d80-9d85-c9eea88c46dd") + (property "Value" "GND" + (at 105.41 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "6" - (uuid "79e26abe-a005-47d1-807c-ae66aa65ebfd") + (property "Footprint" "" + (at 105.41 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "24" - (uuid "dd0cab19-9997-482c-aeb5-8c9f353980a5") + (property "Datasheet" "" + (at 105.41 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "32" - (uuid "ca6764f9-054a-4279-9429-1d8fa3cd66c8") + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 105.41 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "20" - (uuid "c4a1b867-d037-46db-900b-8c3be28f2c01") + (pin "1" + (uuid "e70a29f0-ab70-436e-b387-e6eb36e9601c") ) - (pin "14" - (uuid "353e648a-2143-44da-8d1c-eea2287662e1") + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR020") + (unit 1) + ) + ) ) - (pin "29" - (uuid "baff958d-4360-44c5-814d-5f913574931e") + ) + (symbol + (lib_id "power:GND") + (at 92.71 189.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b12ef36a-c807-4b66-8cc1-9b7300e331a0") + (property "Reference" "#PWR021" + (at 92.71 195.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "17" - (uuid "4c9e4c04-9db1-4fdb-92d1-3239f89808bd") + (property "Value" "GND" + (at 92.71 194.31 0) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "33" - (uuid "6b2f3199-42d7-44fd-94c7-089da5929833") + (property "Footprint" "" + (at 92.71 189.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "16" - (uuid "2c4bcac8-866f-4f41-a2bf-0784c47b0de0") + (property "Datasheet" "" + (at 92.71 189.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "3" - (uuid "788c3e21-b78c-4d13-973e-11718e5856f9") + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 92.71 189.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) ) - (pin "28" - (uuid "c2b54eaa-6eb3-4b93-8d7c-8e8dd7207d08") + (pin "1" + (uuid "6be4950b-eb35-41b9-b384-5cc80477f800") ) - (pin "30" - (uuid "eefbd8f4-710a-4205-adec-09b5d8bdfb7d") + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR021") + (unit 1) + ) + ) ) - (pin "23" - (uuid "ded25a2c-212e-4742-8c35-381dd061af82") + ) + (symbol + (lib_id "Transistor_BJT:SS8050") + (at 90.17 173.99 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b4b9847c-bc28-4a3a-9be0-377e306a4b9c") + (property "Reference" "Q2" + (at 95.25 175.2601 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) ) - (pin "9" - (uuid "6412ce8c-393e-4845-a2ae-8b173a779aa4") + (property "Value" "SS8050" + (at 95.25 172.7201 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 95.25 166.624 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.secosgmbh.com/datasheet/products/SSMPTransistor/SOT-23/SS8050.pdf" + (at 95.25 169.164 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "General Purpose NPN Transistor, 1.5A Ic, 25V Vce, SOT-23" + (at 124.206 171.704 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "279dc351-0f7b-4fe8-9359-d0e8af8c8c85") + ) + (pin "3" + (uuid "ab92ce8a-a0a2-434a-8936-a5b7a1fc60b9") ) (pin "2" - (uuid "3e123eb9-e3d0-469e-8878-833bbd726244") + (uuid "b37032cb-bb7c-4b0d-95a2-88d9bc480c57") ) - (pin "5" - (uuid "a49f7b20-9aea-4f71-8757-6b9b23c067ad") + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "Q2") + (unit 1) + ) + ) ) - (pin "21" - (uuid "eb6a5c09-f954-49e0-90d3-3afca0afb0ce") + ) + (symbol + (lib_id "Device:R") + (at 50.8 157.48 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b942dce3-2340-4583-b08a-a57c21f3f10f") + (property "Reference" "R7" + (at 50.8 152.4 90) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "27" - (uuid "3d3ef57e-50aa-40de-85c8-1ced8193145f") + (property "Value" "0R" + (at 50.8 154.94 90) + (effects + (font + (size 1.27 1.27) + ) + ) ) - (pin "8" - (uuid "19a85ba0-4c96-475a-8e17-2e03b9ff612b") + (property "Footprint" "" + (at 50.8 155.702 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 50.8 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 50.8 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cf07b60f-a2bb-4cd5-a278-d8f90212f8c5") + ) + (pin "2" + (uuid "eb5cdc2b-bf13-4d0b-875a-ac66ce2ec152") ) (instances (project "" (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" - (reference "U2") + (reference "R7") (unit 1) ) ) ) ) (symbol - (lib_id "Device:R") - (at 241.3 120.65 0) + (lib_id "Device:D") + (at 96.52 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cb72eb9b-0f65-485d-9df7-0a4f807d6116") + (property "Reference" "D5" + (at 96.52 79.756 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "D" + (at 96.52 82.296 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 96.52 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 96.52 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Diode" + (at 96.52 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 96.52 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 96.52 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d8a1fe85-6c99-47cb-8fa4-ab71a2f7612f") + ) + (pin "2" + (uuid "9aa83a82-3e8a-49fa-9960-9fd3538932cc") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "D5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 92.71 185.42 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) - (uuid "ce5febd8-eb28-4f55-a2c7-c191c30792ad") - (property "Reference" "R5" - (at 243.84 119.3799 0) + (uuid "cbea7ae4-81e7-46b0-bbda-b8fb3b43a059") + (property "Reference" "C13" + (at 96.52 184.1499 0) (effects (font (size 1.27 1.27) @@ -5574,8 +6838,8 @@ (justify left) ) ) - (property "Value" "R" - (at 243.84 121.9199 0) + (property "Value" "0.1uF" + (at 96.52 186.6899 0) (effects (font (size 1.27 1.27) @@ -5584,7 +6848,7 @@ ) ) (property "Footprint" "" - (at 239.522 120.65 90) + (at 93.6752 189.23 0) (effects (font (size 1.27 1.27) @@ -5593,7 +6857,141 @@ ) ) (property "Datasheet" "~" - (at 241.3 120.65 0) + (at 92.71 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 92.71 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "b528ddf2-0713-4098-aa57-d51206633a41") + ) + (pin "1" + (uuid "6023c5e8-db81-4ef1-b686-1214073e6205") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "C13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 209.55 21.59 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cc1cdfb4-60a5-4d2d-a4fb-c27c7327d266") + (property "Reference" "#PWR023" + (at 209.55 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 203.2 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 209.55 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 209.55 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 209.55 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2801c29b-2dc1-45c0-998e-36234b006fdd") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR023") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 33.02 87.63 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ce5febd8-eb28-4f55-a2c7-c191c30792ad") + (property "Reference" "R5" + (at 33.02 81.28 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "5K1" + (at 33.02 83.82 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 33.02 85.852 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C304.pdf" + (at 33.02 87.63 0) (effects (font (size 1.27 1.27) @@ -5602,7 +7000,25 @@ ) ) (property "Description" "Resistor" - (at 241.3 120.65 0) + (at 33.02 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MPN" "ERJ-3EKF5101V" + (at 33.02 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 33.02 87.63 0) (effects (font (size 1.27 1.27) @@ -5626,8 +7042,84 @@ ) ) (symbol + (lib_id "74xGxx:SN74LVC1G125DBV") + (at 227.33 31.75 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d0f09df0-4b05-406d-95a6-f8767ba14d9f") + (property "Reference" "U6" + (at 231.648 35.306 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SN74LVC1G125DBV" + (at 231.648 37.846 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 227.33 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/sn74lvc1g125.pdf" + (at 227.33 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single Buffer Gate Tri-State, Low-Voltage CMOS, SOT-23-5" + (at 227.33 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3561fafb-1495-45c7-a75a-56dbea0bbda6") + ) + (pin "3" + (uuid "9227b32f-587e-486a-8663-675b15d142f9") + ) + (pin "4" + (uuid "a839124a-3cd5-4941-b0c1-e5ae1f356030") + ) + (pin "5" + (uuid "ca45733f-f96a-4585-94b0-af4b33eb250f") + ) + (pin "2" + (uuid "6e6c8ada-d86f-473c-862d-3e2068ec044b") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "U6") + (unit 1) + ) + ) + ) + ) + (symbol (lib_id "Device:LED") - (at 190.5 92.71 90) + (at 255.27 38.1 90) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -5635,7 +7127,7 @@ (dnp no) (uuid "d3ac31d9-ccb8-4533-87a3-dddfdbc27404") (property "Reference" "D1" - (at 194.31 93.0274 90) + (at 259.08 38.4174 90) (effects (font (size 1.27 1.27) @@ -5644,7 +7136,7 @@ ) ) (property "Value" "green" - (at 194.31 95.5674 90) + (at 259.08 40.9574 90) (effects (font (size 1.27 1.27) @@ -5652,8 +7144,8 @@ (justify right) ) ) - (property "Footprint" "" - (at 190.5 92.71 0) + (property "Footprint" "LED_SMD:LED_1206_3216Metric" + (at 255.27 38.1 0) (effects (font (size 1.27 1.27) @@ -5661,8 +7153,8 @@ (hide yes) ) ) - (property "Datasheet" "~" - (at 190.5 92.71 0) + (property "Datasheet" "https://s3-us-west-2.amazonaws.com/catsy.557/Dialight_CBI_data_598-1206_Apr2018.pdf" + (at 255.27 38.1 0) (effects (font (size 1.27 1.27) @@ -5670,14 +7162,32 @@ (hide yes) ) ) - (property "Description" "ACT LED" - (at 195.072 99.06 90) + (property "Description" "ACT" + (at 260.858 43.688 90) (effects (font (size 1.27 1.27) ) ) ) + (property "MPN" "598-8270-107F" + (at 255.27 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Dialight" + (at 255.27 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) (pin "1" (uuid "d3912ff4-e4d9-4a1d-88d0-23d719bd4d41") ) @@ -5695,7 +7205,7 @@ ) (symbol (lib_id "Device:R") - (at 241.3 107.95 0) + (at 57.15 87.63 90) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -5704,25 +7214,23 @@ (fields_autoplaced yes) (uuid "d3d3f4c2-e7c8-41b7-b731-90b3c2910323") (property "Reference" "R4" - (at 243.84 106.6799 0) + (at 57.15 81.28 90) (effects (font (size 1.27 1.27) ) - (justify left) ) ) - (property "Value" "R" - (at 243.84 109.2199 0) + (property "Value" "5K1" + (at 57.15 83.82 90) (effects (font (size 1.27 1.27) ) - (justify left) ) ) - (property "Footprint" "" - (at 239.522 107.95 90) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 57.15 89.408 90) (effects (font (size 1.27 1.27) @@ -5730,8 +7238,8 @@ (hide yes) ) ) - (property "Datasheet" "~" - (at 241.3 107.95 0) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C304.pdf" + (at 57.15 87.63 0) (effects (font (size 1.27 1.27) @@ -5740,7 +7248,25 @@ ) ) (property "Description" "Resistor" - (at 241.3 107.95 0) + (at 57.15 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MPN" "ERJ-3EKF5101V" + (at 57.15 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 57.15 87.63 0) (effects (font (size 1.27 1.27) @@ -5765,16 +7291,16 @@ ) (symbol (lib_id "Device:R") - (at 190.5 105.41 0) + (at 209.55 25.4 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) - (uuid "da7e4072-0bc0-43cc-a178-0ab1edcfc920") - (property "Reference" "R1" - (at 193.04 104.1399 0) + (uuid "d9b05ecd-5dd0-4e2b-9534-5ae09f850ad6") + (property "Reference" "R11" + (at 212.09 24.1299 0) (effects (font (size 1.27 1.27) @@ -5782,8 +7308,8 @@ (justify left) ) ) - (property "Value" "R" - (at 193.04 106.6799 0) + (property "Value" "10k" + (at 212.09 26.6699 0) (effects (font (size 1.27 1.27) @@ -5792,7 +7318,7 @@ ) ) (property "Footprint" "" - (at 188.722 105.41 90) + (at 207.772 25.4 90) (effects (font (size 1.27 1.27) @@ -5801,7 +7327,77 @@ ) ) (property "Datasheet" "~" - (at 190.5 105.41 0) + (at 209.55 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 209.55 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6437ab9b-0800-46ab-8326-adf2c74001f1") + ) + (pin "2" + (uuid "e1e647cb-d3be-4737-b53a-1c8fe318d4bc") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "R11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 255.27 49.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "da7e4072-0bc0-43cc-a178-0ab1edcfc920") + (property "Reference" "R1" + (at 257.81 48.2599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "130R" + (at 257.81 50.7999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 253.492 49.53 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C304.pdf" + (at 255.27 49.53 0) (effects (font (size 1.27 1.27) @@ -5810,7 +7406,25 @@ ) ) (property "Description" "Resistor" - (at 190.5 105.41 0) + (at 255.27 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MPN" "ERJ-3EKF1300V" + (at 255.27 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Panasonic Electronic Components" + (at 255.27 49.53 0) (effects (font (size 1.27 1.27) @@ -5834,8 +7448,248 @@ ) ) (symbol + (lib_id "Device:C") + (at 105.41 93.98 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e4f8cbd9-f9c4-4ef8-b698-f5aa648a644a") + (property "Reference" "C12" + (at 109.22 92.7099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1uF" + (at 109.22 95.2499 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 106.3752 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 105.41 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 105.41 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7335026b-85b2-436a-821c-cfbe6388eb4f") + ) + (pin "2" + (uuid "e1438dee-03c9-46f8-b94a-3ed73092f243") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "C12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Memory_EEPROM:M95256-WMN6P") + (at 156.21 31.75 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e78e5f0d-ba34-405a-8a33-d318ce272e4b") + (property "Reference" "U4" + (at 158.242 19.812 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "M95256-WMN6P" + (at 158.242 22.352 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 156.21 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/9d/75/f0/3e/76/00/4c/0b/CD00103810.pdf/files/CD00103810.pdf/jcr:content/translations/en.CD00103810.pdf" + (at 156.21 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "EEPROM" + (at 162.1439 24.892 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "M95256-WMN6P" + (at 156.21 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "STMicroelectronics" + (at 156.21 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "470b74c6-830a-4643-af41-12c6c00668db") + ) + (pin "7" + (uuid "0f221a91-021e-4b92-97cc-cac10c3fc7af") + ) + (pin "2" + (uuid "563d03b5-bebe-4078-9baf-9bbd5e434731") + ) + (pin "5" + (uuid "2f490caa-466f-49ec-ae26-0e2fca32647f") + ) + (pin "6" + (uuid "c98f7a85-145a-4f54-a32d-399ef9d0d117") + ) + (pin "4" + (uuid "8c4547cb-bded-4b8e-818b-ff5a9fc05be5") + ) + (pin "1" + (uuid "f9e2e543-1843-4168-80e9-0b0ac7c86045") + ) + (pin "8" + (uuid "355fdfde-ab0b-46b9-b37d-15f43ddd5e12") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "U4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 222.25 21.59 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e92422fc-c9ec-468c-8b80-766183991315") + (property "Reference" "#PWR022" + (at 222.25 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 215.9 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 222.25 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 222.25 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 222.25 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ca90d70e-e3c7-4a0f-baab-f465d5134318") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR022") + (unit 1) + ) + ) + ) + ) + (symbol (lib_id "Device:LED") - (at 215.9 92.71 90) + (at 242.57 38.1 90) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -5843,7 +7697,7 @@ (dnp no) (uuid "e9f9db47-1290-4906-81da-ea2e04b33994") (property "Reference" "D3" - (at 219.71 93.0274 90) + (at 246.38 38.4174 90) (effects (font (size 1.27 1.27) @@ -5852,7 +7706,7 @@ ) ) (property "Value" "red" - (at 219.71 95.5674 90) + (at 246.38 40.9574 90) (effects (font (size 1.27 1.27) @@ -5860,8 +7714,8 @@ (justify right) ) ) - (property "Footprint" "" - (at 215.9 92.71 0) + (property "Footprint" "LED_SMD:LED_1206_3216Metric" + (at 242.57 38.1 0) (effects (font (size 1.27 1.27) @@ -5869,8 +7723,25 @@ (hide yes) ) ) - (property "Datasheet" "~" - (at 215.9 92.71 0) + (property "Datasheet" "https://s3-us-west-2.amazonaws.com/catsy.557/Dialight_CBI_data_598-1206_Apr2018.pdf" + (at 242.57 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "PWR" + (at 248.412 43.434 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "598-8210-107F" + (at 242.57 38.1 0) (effects (font (size 1.27 1.27) @@ -5878,12 +7749,13 @@ (hide yes) ) ) - (property "Description" "PWR LED" - (at 220.726 99.06 90) + (property "Manufacturer" "Dialight" + (at 242.57 38.1 0) (effects (font (size 1.27 1.27) ) + (hide yes) ) ) (pin "1" @@ -5902,8 +7774,74 @@ ) ) (symbol + (lib_id "power:GND") + (at 260.35 113.03 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ea7b7b68-fa65-434e-8b8f-36a738005418") + (property "Reference" "#PWR019" + (at 260.35 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 260.35 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 260.35 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 260.35 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 260.35 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fa2edbf7-d553-460f-9857-1d7c53e38298") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (reference "#PWR019") + (unit 1) + ) + ) + ) + ) + (symbol (lib_id "Device:LED") - (at 203.2 92.71 90) + (at 267.97 38.1 90) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -5911,7 +7849,7 @@ (dnp no) (uuid "f9a839c7-a495-47eb-9f54-daede48765b3") (property "Reference" "D2" - (at 207.01 93.0274 90) + (at 271.78 38.4174 90) (effects (font (size 1.27 1.27) @@ -5920,7 +7858,7 @@ ) ) (property "Value" "blue" - (at 207.01 95.5674 90) + (at 271.78 40.9574 90) (effects (font (size 1.27 1.27) @@ -5928,8 +7866,8 @@ (justify right) ) ) - (property "Footprint" "" - (at 203.2 92.71 0) + (property "Footprint" "LED_SMD:LED_1206_3216Metric" + (at 267.97 38.1 0) (effects (font (size 1.27 1.27) @@ -5937,8 +7875,8 @@ (hide yes) ) ) - (property "Datasheet" "~" - (at 203.2 92.71 0) + (property "Datasheet" "https://s3-us-west-2.amazonaws.com/catsy.557/Dialight_CBI_data_598-1206_Apr2018.pdf" + (at 267.97 38.1 0) (effects (font (size 1.27 1.27) @@ -5946,14 +7884,32 @@ (hide yes) ) ) - (property "Description" "BTL LED" - (at 207.772 99.06 90) + (property "Description" "BTL" + (at 273.558 43.434 90) (effects (font (size 1.27 1.27) ) ) ) + (property "MPN" "598-8291-107F" + (at 267.97 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Dialight" + (at 267.97 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) (pin "1" (uuid "93ec7c79-922a-4675-bebb-cfbab9971fd5") ) @@ -5969,6 +7925,312 @@ ) ) ) + (sheet + (at 19.05 121.92) + (size 19.05 50.8) + (fields_autoplaced yes) + (stroke + (width 0.1524) + (type solid) + ) + (fill + (color 0 0 0 0.0000) + ) + (uuid "3e145403-4eb6-486a-91c4-df0c49c02a5b") + (property "Sheetname" "USB" + (at 19.05 121.2084 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Sheetfile" "usb.kicad_sch" + (at 19.05 173.3046 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (pin "PORT_A_TXD" output + (at 38.1 149.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "a0b33cf5-feaf-46a9-9d70-b0bd4731e616") + ) + (pin "PORT_A_RXD" input + (at 38.1 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d9ed1f96-79c1-4bf2-824b-beb470c0858c") + ) + (pin "PORT_B_TXD" output + (at 38.1 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "b6993739-7a39-4183-b7b7-ee21a7cff3ba") + ) + (pin "PORT_B_RXD" input + (at 38.1 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "c9fc049d-f01a-4444-8618-e05c0b1669f9") + ) + (pin "~{PORT_B_RTS}" output + (at 38.1 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "f021ccc4-aae8-48ab-a558-a2f6e0dbb2fb") + ) + (pin "~{PORT_B_DTR}" output + (at 38.1 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "3dcffd69-6320-4bf3-aef8-3705ff32cf3f") + ) + (pin "USB_EN" input + (at 38.1 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "a1ae16bd-dd93-455e-868a-cc5642441ad1") + ) + (pin "GPIO0" bidirectional + (at 38.1 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "1261066d-6d9d-4edd-a638-1ab12070effc") + ) + (pin "GPIO2" bidirectional + (at 38.1 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "2810ae47-88cd-43ac-98ab-d5542a3087aa") + ) + (pin "GPIO1" bidirectional + (at 38.1 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "c822d89a-0d79-4ad9-9f56-0bbfc7627af7") + ) + (pin "GPIO3" bidirectional + (at 38.1 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "f862a11f-8f05-4892-9ad7-3ce445c3910b") + ) + (pin "~{PWREN}" bidirectional + (at 38.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "91ee69d1-a6cc-4bd7-98e6-26f8d72a9cc6") + ) + (pin "~{SUSPEND}" bidirectional + (at 38.1 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "362bd303-6dea-4c0a-8211-21249285c372") + ) + (pin "USB_VBUS" output + (at 38.1 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "5b9dab87-e86c-40ae-b6c5-0c6e18b4fe74") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (page "2") + ) + ) + ) + ) + (sheet + (at 114.3 152.4) + (size 15.24 33.02) + (fields_autoplaced yes) + (stroke + (width 0.1524) + (type solid) + ) + (fill + (color 0 0 0 0.0000) + ) + (uuid "c63181b1-8a8c-4c63-9e6c-d94097bd8342") + (property "Sheetname" "Audio" + (at 114.3 151.6884 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Sheetfile" "audio.kicad_sch" + (at 114.3 186.0046 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (pin "~{PDN}" input + (at 129.54 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "289ead78-fc25-44c0-975f-d2d713df1bbb") + ) + (pin "LRCLK" input + (at 129.54 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "a05e2b0d-4986-4ea7-b84b-8d721c08e155") + ) + (pin "SCLK" input + (at 129.54 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "fc4748c6-f54a-4a77-b098-d2f71201dee7") + ) + (pin "SDIN" input + (at 129.54 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "0987140a-f363-4c7f-b6ec-a172ddc7b13b") + ) + (pin "SCL" input + (at 129.54 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "8ba8715d-28be-4bf4-af3c-33d3fc5317d4") + ) + (pin "SDA" bidirectional + (at 129.54 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "99da096e-5d5c-49f8-8c3a-87a319c6dda1") + ) + (pin "~{FAULT}" bidirectional + (at 129.54 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "a98177e5-b661-4156-b5d1-3a70817d4518") + ) + (pin "~{MUTE}" bidirectional + (at 129.54 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "b91f5720-4977-4aec-8222-5d7e88aa5528") + ) + (pin "~{WARN}" bidirectional + (at 129.54 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d372334b-f108-46b4-9009-5bafb9a929e0") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73" + (page "3") + ) + ) + ) + ) (sheet_instances (path "/" (page "1") diff --git a/pcb/sym-lib-table b/pcb/sym-lib-table new file mode 100644 index 0000000..4d6b40d --- /dev/null +++ b/pcb/sym-lib-table @@ -0,0 +1,4 @@ +(sym_lib_table + (version 7) + (lib (name "xengineering")(type "KiCad")(uri "${KIPRJMOD}/parts-kicad/xengineering.kicad_sym")(options "")(descr "")) +) diff --git a/pcb/usb.kicad_sch b/pcb/usb.kicad_sch new file mode 100644 index 0000000..baa7336 --- /dev/null +++ b/pcb/usb.kicad_sch @@ -0,0 +1,5610 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "1f4f25b5-d8e7-49f2-b6ef-0ca767dd6eec") + (paper "A4") + (lib_symbols + (symbol "Connector:USB_C_Receptacle" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -10.16 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "USB_C_Receptacle" + (at 10.16 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 3.81 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" + (at 3.81 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB Full-Featured Type-C Receptacle connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "usb universal serial bus type-C full-featured" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "USB*C*Receptacle*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "USB_C_Receptacle_0_0" + (rectangle + (start -0.254 -35.56) + (end 0.254 -34.544) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -32.766) + (end 9.144 -33.274) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -30.226) + (end 9.144 -30.734) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -25.146) + (end 9.144 -25.654) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -22.606) + (end 9.144 -23.114) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -17.526) + (end 9.144 -18.034) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -14.986) + (end 9.144 -15.494) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -9.906) + (end 9.144 -10.414) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -7.366) + (end 9.144 -7.874) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -2.286) + (end 9.144 -2.794) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 0.254) + (end 9.144 -0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 5.334) + (end 9.144 4.826) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 7.874) + (end 9.144 7.366) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 10.414) + (end 9.144 9.906) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 12.954) + (end 9.144 12.446) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 18.034) + (end 9.144 17.526) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 20.574) + (end 9.144 20.066) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 25.654) + (end 9.144 25.146) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "USB_C_Receptacle_0_1" + (rectangle + (start -10.16 27.94) + (end 10.16 -35.56) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (arc + (start -8.89 -3.81) + (mid -6.985 -5.7067) + (end -5.08 -3.81) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 -3.81) + (mid -6.985 -4.4423) + (end -6.35 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 -3.81) + (mid -6.985 -4.4423) + (end -6.35 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 -3.81) + (end -6.35 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -6.35 3.81) + (mid -6.985 4.4423) + (end -7.62 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -6.35 3.81) + (mid -6.985 4.4423) + (end -7.62 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -5.08 3.81) + (mid -6.985 5.7067) + (end -8.89 3.81) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.89 -3.81) (xy -8.89 3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 3.81) (xy -5.08 -3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "USB_C_Receptacle_1_1" + (circle + (center -2.54 1.143) + (radius 0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 0 -5.842) + (radius 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 0 -5.842) (xy 0 4.318) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -3.302) (xy -2.54 -0.762) (xy -2.54 0.508) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -2.032) (xy 2.54 0.508) (xy 2.54 1.778) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 4.318) (xy 0 6.858) (xy 1.27 4.318) (xy -1.27 4.318) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 1.905 1.778) + (end 3.175 3.048) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 0 -40.64 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -15.24 180) + (length 5.08) + (name "RX2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -17.78 180) + (length 5.08) + (name "RX2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -40.64 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -10.16 180) + (length 5.08) + (name "TX1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -7.62 180) + (length 5.08) + (name "TX1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 25.4 180) + (length 5.08) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 20.32 180) + (length 5.08) + (name "CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 7.62 180) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 12.7 180) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -30.48 180) + (length 5.08) + (name "SBU1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 25.4 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -40.64 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 0 180) + (length 5.08) + (name "RX1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -2.54 180) + (length 5.08) + (name "RX1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -40.64 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -25.4 180) + (length 5.08) + (name "TX2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -22.86 180) + (length 5.08) + (name "TX2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 25.4 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 17.78 180) + (length 5.08) + (name "CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 5.08 180) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 10.16 180) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -33.02 180) + (length 5.08) + (name "SBU2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 25.4 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 -40.64 90) + (length 5.08) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:Crystal" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Y" + (at 0 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Crystal" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Two pin crystal" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "quartz ceramic resonator oscillator" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Crystal*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Crystal_0_1" + (rectangle + (start -1.143 2.54) + (end 1.143 -2.54) + (stroke + (width 0.3048) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 0) (xy -1.905 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 -1.27) (xy -1.905 1.27) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.905 -1.27) (xy 1.905 1.27) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 0) (xy 1.905 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Crystal_1_1" + (pin passive line + (at -3.81 0 0) + (length 1.27) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 1.27) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+3V3" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+3V3_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3V3_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "xengineering:FT2232HPQ" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 20.828 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "FT2232HPQ" + (at 25.654 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 3.81 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://ftdichip.com/wp-content/uploads/2024/09/DS_FT2233HP.pdf" + (at 0.762 -64.516 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "High Speed USB Bridge with Type-C/PD3.0 Controller, QFN-68" + (at 0.254 -60.198 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "FT2232HPQ_0_1" + (rectangle + (start -26.67 46.99) + (end 26.67 -48.26) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "FT2232HPQ_1_1" + (pin output line + (at -30.48 7.62 0) + (length 3.81) + (name "EECLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 8.89 50.8 270) + (length 3.81) + (name "VCCIO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 36.83 180) + (length 3.81) + (name "ADBUS2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 34.29 180) + (length 3.81) + (name "ADBUS3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 31.75 180) + (length 3.81) + (name "ADBUS4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 29.21 180) + (length 3.81) + (name "ADBUS5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 26.67 180) + (length 3.81) + (name "ADBUS6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 24.13 180) + (length 3.81) + (name "ADBUS7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 19.05 180) + (length 3.81) + (name "ACBUS0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 16.51 180) + (length 3.81) + (name "ACBUS1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 13.97 180) + (length 3.81) + (name "ACBUS2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 5.08 0) + (length 3.81) + (name "EEDATA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 11.43 180) + (length 3.81) + (name "ACBUS3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 8.89 180) + (length 3.81) + (name "ACBUS4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 6.35 180) + (length 3.81) + (name "ACBUS5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 3.81 180) + (length 3.81) + (name "ACBUS6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 1.27 180) + (length 3.81) + (name "ACBUS7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 0 50.8 270) + (length 3.81) + (name "VCORE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 11.43 50.8 270) + (length 3.81) + (name "VCCIO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -30.48 0 0) + (length 3.81) + (name "OSCI" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -30.48 -2.54 0) + (length 3.81) + (name "OSCO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 1.27 -52.07 90) + (length 3.81) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -30.48 -7.62 0) + (length 3.81) + (name "TEST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -30.48 35.56 0) + (length 3.81) + (name "VREGIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -30.48 33.02 0) + (length 3.81) + (name "VREGOUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -13.97 50.8 270) + (length 3.81) + (name "FSOURCE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -17.78 50.8 270) + (length 3.81) + (name "VPP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -3.81 180) + (length 3.81) + (name "BDBUS0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -6.35 180) + (length 3.81) + (name "BDBUS1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -8.89 180) + (length 3.81) + (name "BDBUS2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -11.43 180) + (length 3.81) + (name "BDBUS3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -13.97 180) + (length 3.81) + (name "BDBUS4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 13.97 50.8 270) + (length 3.81) + (name "VCCIO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -30.48 15.24 0) + (length 3.81) + (name "~{RESET}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -16.51 180) + (length 3.81) + (name "BDBUS5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -19.05 180) + (length 3.81) + (name "BDBUS6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -21.59 180) + (length 3.81) + (name "BDBUS7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -30.48 -40.64 0) + (length 3.81) + (name "~{SUSPEND}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 2.54 50.8 270) + (length 3.81) + (name "VCORE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -26.67 180) + (length 3.81) + (name "BCBUS0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -29.21 180) + (length 3.81) + (name "BCBUS1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -31.75 180) + (length 3.81) + (name "BCBUS2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -34.29 180) + (length 3.81) + (name "BCBUS3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -36.83 180) + (length 3.81) + (name "BCBUS4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 -33.02 0) + (length 3.81) + (name "GPIO3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -39.37 180) + (length 3.81) + (name "BCBUS5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 16.51 50.8 270) + (length 3.81) + (name "VCCIO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -41.91 180) + (length 3.81) + (name "BCBUS6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 -44.45 180) + (length 3.81) + (name "BCBUS7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 -30.48 0) + (length 3.81) + (name "GPIO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 -27.94 0) + (length 3.81) + (name "GPIO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 -25.4 0) + (length 3.81) + (name "GPIO0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -6.35 50.8 270) + (length 3.81) + (name "VCC_USB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 27.94 0) + (length 3.81) + (name "DM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 25.4 0) + (length 3.81) + (name "DP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "59" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 41.91 180) + (length 3.81) + (name "ADBUS0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -30.48 20.32 0) + (length 3.81) + (name "REF" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "60" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 50.8 270) + (length 3.81) + (name "VCC_PD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "61" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 -20.32 0) + (length 3.81) + (name "PD1_CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "62" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -30.48 -12.7 0) + (length 3.81) + (name "PD1_SVBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "63" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -30.48 -15.24 0) + (length 3.81) + (name "PD1_VCONN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "64" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 -17.78 0) + (length 3.81) + (name "PD1_CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "65" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 5.08 50.8 270) + (length 3.81) + (name "VCORE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "66" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -30.48 -38.1 0) + (length 3.81) + (name "~{PWREN}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -30.48 10.16 0) + (length 3.81) + (name "EECS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 30.48 39.37 180) + (length 3.81) + (name "ADBUS1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -2.54 50.8 270) + (length 3.81) + (name "VCORE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -1.27 -52.07 90) + (length 3.81) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 189.23 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "02b23597-898d-4244-a7c8-65f1121ef04f") + ) + (junction + (at 175.26 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "0ed79218-7a30-4c72-a038-550ed95f47d8") + ) + (junction + (at 58.42 78.74) + (diameter 0) + (color 0 0 0 0) + (uuid "1fa2c8da-63d5-4ab5-b0fe-40d2713426e4") + ) + (junction + (at 186.69 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "21ae18e0-3b5c-4ec9-9116-e80335d95273") + ) + (junction + (at 41.91 129.54) + (diameter 0) + (color 0 0 0 0) + (uuid "2f109b68-c426-4564-8aa2-3c5bd86dab9b") + ) + (junction + (at 129.54 99.06) + (diameter 0) + (color 0 0 0 0) + (uuid "3f11506c-5def-4f95-920d-958e46320018") + ) + (junction + (at 184.15 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "477a126c-bf58-4c35-b1a1-4e074a215102") + ) + (junction + (at 107.95 123.19) + (diameter 0) + (color 0 0 0 0) + (uuid "62c88fbd-8d98-4151-bfc1-fd78ddce5ae9") + ) + (junction + (at 170.18 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "6afb55f1-73e3-4d98-ad2c-f2e07ddb1082") + ) + (junction + (at 171.45 144.78) + (diameter 0) + (color 0 0 0 0) + (uuid "72639ab8-4ee2-4352-b59a-89f9a3086b6c") + ) + (junction + (at 115.57 99.06) + (diameter 0) + (color 0 0 0 0) + (uuid "976cf459-da6a-48b0-a212-fc15a55ae7a5") + ) + (junction + (at 113.03 109.22) + (diameter 0) + (color 0 0 0 0) + (uuid "cb3c1a0f-0328-4322-a357-6c6119416e6d") + ) + (junction + (at 115.57 95.25) + (diameter 0) + (color 0 0 0 0) + (uuid "d595a0b2-6ed7-464d-9b6c-d4fc21991eef") + ) + (junction + (at 172.72 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "dd85b8e2-c878-4b16-ae1a-a9c76975c5f2") + ) + (junction + (at 102.87 111.76) + (diameter 0) + (color 0 0 0 0) + (uuid "e1cd7ae9-1389-46c1-b023-fb9f55671042") + ) + (junction + (at 129.54 91.44) + (diameter 0) + (color 0 0 0 0) + (uuid "e44eeb0c-2cd2-4490-a569-ded144850fef") + ) + (junction + (at 58.42 76.2) + (diameter 0) + (color 0 0 0 0) + (uuid "f56f1d2f-802c-47dc-a3af-4d4bf6c0799d") + ) + (junction + (at 124.46 76.2) + (diameter 0) + (color 0 0 0 0) + (uuid "f6df24ab-c053-4f2b-883a-251974278756") + ) + (no_connect + (at 203.2 80.01) + (uuid "049e3689-9d56-4401-8eb3-ac0f0319312a") + ) + (no_connect + (at 203.2 128.27) + (uuid "103a7c7b-f3f6-48d4-9c07-70857684abff") + ) + (no_connect + (at 57.15 111.76) + (uuid "10b4aa53-fa99-4568-ac8d-aadbf2f99b86") + ) + (no_connect + (at 203.2 120.65) + (uuid "12feafb6-b92b-4f20-b47e-874631071f72") + ) + (no_connect + (at 203.2 118.11) + (uuid "13d9bf4a-ae4b-4665-a04f-d484b99fc231") + ) + (no_connect + (at 203.2 59.69) + (uuid "191a2064-5318-453b-895f-0803d7a1404a") + ) + (no_connect + (at 154.94 40.64) + (uuid "1970cca0-1908-4182-8cb4-92863dc50789") + ) + (no_connect + (at 203.2 133.35) + (uuid "198d87f2-dd09-468d-b684-fdc135f488b1") + ) + (no_connect + (at 57.15 104.14) + (uuid "27ab083e-220b-4c64-a820-dfb7be43856a") + ) + (no_connect + (at 57.15 88.9) + (uuid "293ff04e-2139-4ec2-86f5-10a6fbccedf4") + ) + (no_connect + (at 57.15 93.98) + (uuid "2ba82985-0379-4f54-8326-c833b04e5c5f") + ) + (no_connect + (at 203.2 87.63) + (uuid "300d0f36-cd2d-4bd3-821e-9954c5aef4cf") + ) + (no_connect + (at 203.2 74.93) + (uuid "33be5519-8847-4be7-9bfe-110434ce7d0b") + ) + (no_connect + (at 57.15 116.84) + (uuid "408b0fe2-a92d-4502-9a8e-3494b9f57766") + ) + (no_connect + (at 203.2 85.09) + (uuid "466102af-7829-4554-8892-2f38b0c66e3d") + ) + (no_connect + (at 203.2 54.61) + (uuid "74678c0f-caa9-4b24-96da-17d0119cdc93") + ) + (no_connect + (at 203.2 110.49) + (uuid "86a82605-c562-4fa8-aef7-108cbe45aba7") + ) + (no_connect + (at 203.2 102.87) + (uuid "8fd03309-da5a-47e2-9564-63d2b19cafef") + ) + (no_connect + (at 158.75 40.64) + (uuid "911b9c87-8aa2-479e-9257-c8491853f9a7") + ) + (no_connect + (at 203.2 77.47) + (uuid "95ebea55-f6c4-4ebe-a9ee-97880b3bdb2a") + ) + (no_connect + (at 57.15 109.22) + (uuid "a3ab8e8b-a1d5-42de-b05f-726b22c2f7c3") + ) + (no_connect + (at 203.2 82.55) + (uuid "a824f602-9d04-460a-b5e6-4f749a73f3df") + ) + (no_connect + (at 203.2 130.81) + (uuid "adaf6c06-2b08-4abd-9c83-aec29461c16e") + ) + (no_connect + (at 203.2 62.23) + (uuid "ae50d539-944c-40a9-9434-23f5a93f4071") + ) + (no_connect + (at 57.15 119.38) + (uuid "b6f2770d-d3ed-47ad-a830-c48f14b8bbec") + ) + (no_connect + (at 203.2 107.95) + (uuid "b8374690-14b4-48e3-98eb-0f81f0bae419") + ) + (no_connect + (at 203.2 135.89) + (uuid "c94cda74-af2e-4f65-b399-0332cc5c253a") + ) + (no_connect + (at 203.2 67.31) + (uuid "cb388132-7c2b-40c3-9b73-07b19b290f01") + ) + (no_connect + (at 203.2 57.15) + (uuid "cda855cf-a1f3-480a-9791-94b9859dfc89") + ) + (no_connect + (at 203.2 64.77) + (uuid "d0482dcc-6904-437d-ae6d-250124c62b2f") + ) + (no_connect + (at 203.2 123.19) + (uuid "d0da4cb0-7ffd-4d01-99bd-31657ba21a18") + ) + (no_connect + (at 57.15 96.52) + (uuid "d23327fc-78e0-4119-9e51-40870b57af7c") + ) + (no_connect + (at 203.2 113.03) + (uuid "dcaef24b-75fe-48c2-b3a0-a26dd2fff72b") + ) + (no_connect + (at 203.2 125.73) + (uuid "dffb2230-eae5-43ad-8c6f-e341d32a1498") + ) + (no_connect + (at 57.15 101.6) + (uuid "edebf504-d27e-4578-b109-5fcce9b517f9") + ) + (no_connect + (at 203.2 72.39) + (uuid "f481816f-809f-4ec4-b04e-fdcf7625ef58") + ) + (no_connect + (at 203.2 90.17) + (uuid "f5221037-71dc-4fba-96f5-96d4af16a41d") + ) + (no_connect + (at 57.15 86.36) + (uuid "f70e8601-8206-4e57-865c-fdf6cd90bbec") + ) + (wire + (pts + (xy 181.61 35.56) (xy 184.15 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "014998ce-2fef-4eae-a2f7-81f919c8f236") + ) + (wire + (pts + (xy 102.87 111.76) (xy 102.87 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "026f34b8-9934-420b-9dc3-4177b0217e5f") + ) + (wire + (pts + (xy 41.91 132.08) (xy 41.91 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f1583d7-0cea-480c-ba06-301bc88f2aaf") + ) + (wire + (pts + (xy 173.99 144.78) (xy 171.45 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "12e18b42-8040-4c10-9791-ad95977507ec") + ) + (wire + (pts + (xy 129.54 99.06) (xy 139.7 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "13d3be62-039d-478d-a329-6c0487d54340") + ) + (wire + (pts + (xy 177.8 35.56) (xy 175.26 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "17f5cea5-f976-4b47-8be0-91b17df97068") + ) + (wire + (pts + (xy 34.29 129.54) (xy 41.91 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "182e3fac-f1c7-452f-b1d0-c9eb7f5c4d1d") + ) + (wire + (pts + (xy 115.57 91.44) (xy 115.57 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "18dadef3-4d2a-43a2-a8d2-3e1fd55ff12d") + ) + (wire + (pts + (xy 124.46 91.44) (xy 129.54 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1afe4cd9-07f4-4eb9-9237-5cbbc3c2709e") + ) + (wire + (pts + (xy 170.18 35.56) (xy 130.81 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1dd77983-a154-4f75-8b35-f8acaab029cf") + ) + (wire + (pts + (xy 181.61 40.64) (xy 181.61 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2def98fa-682b-4a08-b5f7-a946fc57d30f") + ) + (wire + (pts + (xy 142.24 66.04) (xy 71.12 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "30678bce-d0b0-4fba-a3e4-55b4fb4fcc3c") + ) + (wire + (pts + (xy 62.23 60.96) (xy 57.15 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "346bba66-bdef-403c-a758-be8e6074015a") + ) + (wire + (pts + (xy 124.46 99.06) (xy 129.54 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "358ec675-85cd-4598-bcee-61217529b284") + ) + (wire + (pts + (xy 63.5 111.76) (xy 102.87 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "383f313f-829a-4308-9555-5167ad3a4e00") + ) + (wire + (pts + (xy 102.87 123.19) (xy 107.95 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3a324c65-e850-48a5-9f52-b53dfe7d7a21") + ) + (wire + (pts + (xy 186.69 35.56) (xy 189.23 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3b11e95a-b218-48f4-8f14-0220dbd5c206") + ) + (wire + (pts + (xy 173.99 143.51) (xy 173.99 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3ff1fa8f-4f95-4b1e-a8bd-bbe2fc7e1f87") + ) + (wire + (pts + (xy 71.12 78.74) (xy 58.42 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "40cdb6f1-ade1-417b-a3c3-45e599abddbe") + ) + (wire + (pts + (xy 58.42 81.28) (xy 58.42 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4198d8b0-ba5b-40af-a7f2-aa7cf9e09b76") + ) + (wire + (pts + (xy 57.15 66.04) (xy 66.04 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "47a14015-40f1-447e-aafe-258d6f5fe00e") + ) + (wire + (pts + (xy 102.87 111.76) (xy 142.24 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a59ea42-f2ea-429b-abc9-f6c004621ea0") + ) + (wire + (pts + (xy 34.29 127) (xy 34.29 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4cef00a1-0329-4b72-ad8b-4b78256dcaf0") + ) + (wire + (pts + (xy 62.23 58.42) (xy 62.23 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4e84f890-3e32-4473-929e-7eb9cc8f42ca") + ) + (wire + (pts + (xy 177.8 40.64) (xy 177.8 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "545b3055-1af2-497c-a095-bda76f544978") + ) + (wire + (pts + (xy 142.24 99.06) (xy 140.97 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ce7513f-820e-4d50-942e-c00df28bcf78") + ) + (wire + (pts + (xy 184.15 35.56) (xy 184.15 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5e2b5bb9-dc56-4ad9-a5f3-8c6803dccf85") + ) + (wire + (pts + (xy 113.03 121.92) (xy 113.03 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "63d46a72-16f6-436c-b342-3c2eab854dfa") + ) + (wire + (pts + (xy 102.87 121.92) (xy 102.87 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "681c54af-8b09-4540-b08a-5f9211c23f5f") + ) + (wire + (pts + (xy 120.65 69.85) (xy 124.46 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6b7c8e96-ef54-4cfb-8582-3fa78dc47a79") + ) + (wire + (pts + (xy 57.15 76.2) (xy 58.42 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "732a1b99-95da-402f-8ffe-e4ed76fbdefa") + ) + (wire + (pts + (xy 184.15 35.56) (xy 186.69 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7445e285-e0f8-4b47-999d-3d8ed3ad4a57") + ) + (wire + (pts + (xy 170.18 35.56) (xy 170.18 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "77e9f93b-d8cb-4c93-8472-25bde35acf25") + ) + (wire + (pts + (xy 142.24 93.98) (xy 139.7 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "79842cfb-5559-4c4d-b95a-13089dd7f404") + ) + (wire + (pts + (xy 130.81 58.42) (xy 142.24 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7fcf078e-cb78-43d8-bb56-e8b738e2cfe9") + ) + (wire + (pts + (xy 63.5 68.58) (xy 63.5 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "80e2045a-3fb6-4cf6-90bf-7003ce5769cf") + ) + (wire + (pts + (xy 142.24 63.5) (xy 68.58 63.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "81fb24d9-1830-42a9-8f24-09e189f849d3") + ) + (wire + (pts + (xy 130.81 35.56) (xy 130.81 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8298cb2a-9f16-4696-adcf-4696fa43f431") + ) + (wire + (pts + (xy 71.12 66.04) (xy 71.12 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8311376f-2cff-4ad6-af13-db88f8cbe692") + ) + (wire + (pts + (xy 175.26 35.56) (xy 175.26 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "84a122d7-7ed3-44ee-a639-7f740cb4dc9b") + ) + (wire + (pts + (xy 58.42 76.2) (xy 58.42 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "865a279b-7b7e-42ac-975f-b77b7d4ab04f") + ) + (wire + (pts + (xy 170.18 35.56) (xy 172.72 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "87bca9aa-01b7-43ed-9cbf-b1f64efc318e") + ) + (wire + (pts + (xy 124.46 69.85) (xy 124.46 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8c234ae0-46a5-4268-9b3c-a4fdb028dc5c") + ) + (wire + (pts + (xy 115.57 95.25) (xy 114.3 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "92f9f450-3ae8-4ba6-8431-266ff5de72f9") + ) + (wire + (pts + (xy 171.45 143.51) (xy 171.45 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9501e6d0-07fd-4969-b617-0a6b0f024eed") + ) + (wire + (pts + (xy 203.2 95.25) (xy 215.9 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "954894fc-5611-45a9-bc3e-0db92042e307") + ) + (wire + (pts + (xy 116.84 91.44) (xy 115.57 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "97019efb-1f8d-45b0-874d-65d9d4232f33") + ) + (wire + (pts + (xy 58.42 78.74) (xy 57.15 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "986c9798-7c38-4f48-8477-c18488353a06") + ) + (wire + (pts + (xy 140.97 102.87) (xy 115.57 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9a4c2c92-bb8a-416c-af59-f743ca179e25") + ) + (wire + (pts + (xy 139.7 93.98) (xy 139.7 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9f0df89d-b633-4236-b2f6-5896b8a781d0") + ) + (wire + (pts + (xy 68.58 63.5) (xy 68.58 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9f2301fd-5263-4a73-8c4b-ef42077bf451") + ) + (wire + (pts + (xy 203.2 105.41) (xy 215.9 105.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a1eb5fde-4dff-49b5-a3c2-ec3f425fa290") + ) + (wire + (pts + (xy 189.23 35.56) (xy 189.23 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a2f2d50c-5920-4532-9272-a6453c253259") + ) + (wire + (pts + (xy 171.45 144.78) (xy 171.45 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a4f8a9b8-5d16-4d01-8a37-38b41c9f3a70") + ) + (wire + (pts + (xy 172.72 35.56) (xy 172.72 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a60b1b6d-f081-47fe-a25b-659ed75cba92") + ) + (wire + (pts + (xy 191.77 35.56) (xy 189.23 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b52b2497-8d91-48cc-856c-d9b65b4ed4b9") + ) + (wire + (pts + (xy 57.15 68.58) (xy 63.5 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b72fbcad-e485-49a8-8595-21fb0c796246") + ) + (wire + (pts + (xy 115.57 95.25) (xy 115.57 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bbb8dc4c-ad6c-4b5a-9596-7a67ce730b80") + ) + (wire + (pts + (xy 57.15 81.28) (xy 58.42 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "be387f2f-861d-496e-857a-7b2422428281") + ) + (wire + (pts + (xy 68.58 76.2) (xy 58.42 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c0707d75-2ac9-4bad-8ae8-f55170240652") + ) + (wire + (pts + (xy 121.92 76.2) (xy 124.46 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c3521f8c-3013-49ef-acb0-3c38e4bfb1a4") + ) + (wire + (pts + (xy 113.03 109.22) (xy 142.24 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cf764527-b135-4be4-b834-9a837ca5c15d") + ) + (wire + (pts + (xy 203.2 100.33) (xy 215.9 100.33) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d1335816-e4e0-49a8-bcc8-9b85e94d74f4") + ) + (wire + (pts + (xy 175.26 35.56) (xy 172.72 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d42d3127-f35b-490d-b4d1-748ad41c07ac") + ) + (wire + (pts + (xy 203.2 52.07) (xy 215.9 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d55a73eb-59e5-4d78-979c-928ff3396bad") + ) + (wire + (pts + (xy 113.03 123.19) (xy 107.95 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d6854511-a9ac-4f3c-bf10-cbac896f39af") + ) + (wire + (pts + (xy 203.2 49.53) (xy 215.9 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d90ff8f4-7ade-444d-bc5a-d29c4cbef33d") + ) + (wire + (pts + (xy 58.42 73.66) (xy 57.15 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd680f98-4fd4-4816-aa7f-0b17ffd12770") + ) + (wire + (pts + (xy 41.91 129.54) (xy 41.91 127) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dee81281-8575-4072-ab18-f4cafcade219") + ) + (wire + (pts + (xy 66.04 66.04) (xy 66.04 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e71b52a8-3d41-4f08-8706-b012ae1d6ee6") + ) + (wire + (pts + (xy 129.54 91.44) (xy 142.24 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e8bd7356-db6c-4043-a8c5-cafb6ff8be24") + ) + (wire + (pts + (xy 203.2 97.79) (xy 215.9 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ea81d804-51ec-4a63-8e5f-31d6de6fd89b") + ) + (wire + (pts + (xy 115.57 99.06) (xy 115.57 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ec27f24f-4cc7-46cd-86c6-280c5c2705f9") + ) + (wire + (pts + (xy 116.84 99.06) (xy 115.57 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ef98ef73-05ad-4fb4-9359-24c5ff6e74a0") + ) + (wire + (pts + (xy 186.69 35.56) (xy 186.69 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f67ae18f-ffbe-41c6-81a1-a0f4b85c08f9") + ) + (wire + (pts + (xy 66.04 109.22) (xy 113.03 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f86505ef-f440-419e-882f-0b93d651a5f3") + ) + (wire + (pts + (xy 107.95 123.19) (xy 107.95 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f8b0aada-cfd6-4345-ac12-d71c81933eb3") + ) + (wire + (pts + (xy 124.46 76.2) (xy 142.24 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fc891d20-5b41-4712-98f5-98a8561210bb") + ) + (wire + (pts + (xy 140.97 99.06) (xy 140.97 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fc89f015-bf80-4415-a591-6ae90c6ac0eb") + ) + (wire + (pts + (xy 113.03 109.22) (xy 113.03 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fd234c84-75e6-4028-a43a-18d283717899") + ) + (text "TODO:\nEEPROM for FTDI chip config" + (exclude_from_sim no) + (at 172.212 73.914 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "65100956-027c-4f06-8eb9-e6c633e27f51") + ) + (text "TODO: ESD protection for\ninput pins from USB-C receptacle" + (exclude_from_sim no) + (at 109.474 148.844 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "a58f0835-1bdc-4e8b-8c21-28cfc1151f7d") + ) + (text "FTDI TN_181 used as reference\n\nLikely good example: https://ftdichip.com/wp-content/uploads/2021/12/DS_FT232HP_SinkModule.pdf" + (exclude_from_sim no) + (at 120.904 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "dbac9c43-5dd6-474e-8384-a9ce43d80ac6") + ) + (label "PORT_B_RXD" + (at 203.2 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0588e8e8-3aca-4ac9-ae43-96e1cc506fa0") + ) + (label "PORT_B_TXD" + (at 203.2 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "15c5fcae-3def-4771-a7f8-c0be3d888d64") + ) + (label "PORT_A_RXD" + (at 203.2 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4dace03a-2ea5-40c8-b3d8-61c319fa57f9") + ) + (label "~{PORT_B_DTR}" + (at 203.2 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6fc9158e-bc45-4edb-b42a-c25f10766d46") + ) + (label "~{PORT_B_RTS}" + (at 203.2 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "71619ffa-e85c-4112-b200-403ae0af0cd3") + ) + (label "PORT_A_TXD" + (at 203.2 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a7562aa5-30a0-4374-b53f-4224c36b28b8") + ) + (hierarchical_label "~{PORT_B_RTS}" + (shape output) + (at 215.9 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "0f584a4f-2f8c-47bc-94c8-2b56adfadefb") + ) + (hierarchical_label "GPIO2" + (shape bidirectional) + (at 142.24 121.92 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "2e57a77a-5ca7-4c1e-862b-83e1d24a3f85") + ) + (hierarchical_label "USB_EN" + (shape input) + (at 120.65 69.85 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "3866e228-f076-4eef-bade-922edb916003") + ) + (hierarchical_label "PORT_B_RXD" + (shape input) + (at 215.9 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "418f0bdb-a425-4811-9f5a-061aef970a42") + ) + (hierarchical_label "~{PWREN}" + (shape bidirectional) + (at 142.24 129.54 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "4ca9f76a-dd29-4050-8318-806aae9f77d8") + ) + (hierarchical_label "GPIO1" + (shape bidirectional) + (at 142.24 119.38 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "573ff0e6-2bc9-41d6-84f3-964d07d5ce47") + ) + (hierarchical_label "GPIO3" + (shape bidirectional) + (at 142.24 124.46 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "6f88a926-1f48-41c1-b827-4860e7b29835") + ) + (hierarchical_label "PORT_A_TXD" + (shape output) + (at 215.9 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "8e7d3f55-2029-4fef-9914-73819c9a985f") + ) + (hierarchical_label "~{PORT_B_DTR}" + (shape output) + (at 215.9 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "9b5b78e3-755f-427e-a370-bfc91ec6f3d5") + ) + (hierarchical_label "~{SUSPEND}" + (shape bidirectional) + (at 142.24 132.08 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "ca180977-f209-4162-b228-b3b347b5f1bf") + ) + (hierarchical_label "PORT_A_RXD" + (shape input) + (at 215.9 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "da0f57bc-e6d6-4471-88ee-c8765ab522c1") + ) + (hierarchical_label "GPIO0" + (shape bidirectional) + (at 142.24 116.84 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "e58e6251-3587-40e1-8855-0568e02e744e") + ) + (hierarchical_label "PORT_B_TXD" + (shape output) + (at 215.9 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "e787c864-7706-40b4-b13a-178843e2578f") + ) + (hierarchical_label "USB_VBUS" + (shape output) + (at 62.23 58.42 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "f76fb678-9103-4756-bf35-a7227a22a361") + ) + (symbol + (lib_id "power:+3V3") + (at 114.3 76.2 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0f8874ac-0d94-48d4-ba27-425cab1cb1b5") + (property "Reference" "#PWR029" + (at 118.11 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 111.506 76.2 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 114.3 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 114.3 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5989ed9d-4608-46b1-b07c-b053f671e6a9") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "#PWR029") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 134.62 71.12 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "20133810-333e-464a-80ae-d9dcc765a1fa") + (property "Reference" "#PWR028" + (at 128.27 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 131.572 71.12 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 134.62 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 134.62 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 134.62 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f4aa1b18-6b3f-410b-8f22-7c6f39c6b599") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "#PWR028") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 102.87 118.11 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2ffc478b-6343-4811-8769-e7b09c15074c") + (property "Reference" "R14" + (at 105.41 116.8399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "5k1" + (at 105.41 119.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 101.092 118.11 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 102.87 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 102.87 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "66974235-612e-4d4e-97e9-fac43300fb9f") + ) + (pin "2" + (uuid "67f46a8e-7e03-4876-a20f-5285f19de722") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "R14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 138.43 71.12 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "388adac3-f965-4732-85f4-94aa151033f0") + (property "Reference" "R12" + (at 138.43 69.088 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "12k 1%" + (at 138.43 73.406 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 138.43 69.342 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 138.43 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 138.43 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "30dcbffe-2748-4c60-86b9-fae67fbcc4f2") + ) + (pin "2" + (uuid "c3ca9dad-721a-4778-9b08-7f263d8b1846") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "R12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 107.95 124.46 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "561386bb-36b0-4b7d-aab5-9553285c331c") + (property "Reference" "#PWR032" + (at 107.95 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 107.95 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 107.95 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 107.95 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 107.95 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a26c4ee9-8b52-4702-90aa-89b64f95ce6f") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "#PWR032") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 120.65 99.06 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5f206b9f-1b01-45e6-a3e2-4c5e6c8dfd60") + (property "Reference" "C15" + (at 123.952 97.536 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "18pF" + (at 124.46 100.584 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 116.84 100.0252 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 120.65 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 120.65 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e0733fe6-801e-4ee0-884f-8cfa922386e8") + ) + (pin "2" + (uuid "836178ab-98bd-45fc-8501-e72a64553894") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "C15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 41.91 132.08 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7345851e-d041-48c6-ab56-3410469e3128") + (property "Reference" "#PWR025" + (at 41.91 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 41.91 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 41.91 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 41.91 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 41.91 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "80813d94-181b-49e7-986e-a01c816a3b05") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "#PWR025") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 191.77 35.56 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7b9157f6-c15f-4e64-aa99-a53f60fe47ab") + (property "Reference" "#PWR026" + (at 187.96 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 195.58 35.5599 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 191.77 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 191.77 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 191.77 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f3b62d7a-0183-49e4-94a9-4400b55fc757") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "#PWR026") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 113.03 118.11 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9ae18d0c-9981-4c72-b483-26b370343d03") + (property "Reference" "R15" + (at 115.57 116.8399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "5k1" + (at 115.57 119.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 111.252 118.11 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 113.03 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 113.03 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3bf5bb13-08c0-4479-93d7-e4577a4a32b9") + ) + (pin "2" + (uuid "24d77e32-8227-4a63-9e9d-0492b30027e1") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "R15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 171.45 146.05 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a50d6dd2-9012-428a-b333-976e0509640c") + (property "Reference" "#PWR024" + (at 171.45 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 171.45 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 171.45 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 171.45 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 171.45 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5b049a97-8557-4d05-8c70-a664de217909") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "#PWR024") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 118.11 76.2 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b35b51a5-62e5-4c51-a384-34d502f11b37") + (property "Reference" "R13" + (at 118.11 74.168 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 118.11 78.486 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 118.11 74.422 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 118.11 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 118.11 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "eb6c81e8-20d9-4534-ad4b-af23e85959de") + ) + (pin "2" + (uuid "668833c4-67a9-410f-9bb0-8e81cbf87588") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "R13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:USB_C_Receptacle") + (at 41.91 86.36 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c43a55ab-d770-4b24-9263-00f750679af5") + (property "Reference" "J2" + (at 41.91 51.308 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "USB_C_Receptacle" + (at 41.91 53.848 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 45.72 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://cdn.amphenol-cs.com/media/wysiwyg/files/documentation/datasheet/inputoutput/io_usb_3_2_type_c.pdf" + (at 45.72 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB-C" + (at 41.91 56.642 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "12401610E4#2A" + (at 41.91 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Amphenol ICC" + (at 41.91 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "A6" + (uuid "37587edf-5bd3-4e14-92f1-e12439e2647e") + ) + (pin "A9" + (uuid "7d8f72cd-e269-47bb-99b4-a0753a19d2ec") + ) + (pin "B10" + (uuid "533a0692-733a-40ec-b1ed-1edf73297125") + ) + (pin "B11" + (uuid "1ac269a2-37ce-48d1-bd54-0ca4fbd656fc") + ) + (pin "B2" + (uuid "b22871fb-6f5e-4ad7-9ff9-5074701a7c14") + ) + (pin "A5" + (uuid "7f20b85b-0f19-4a79-bac5-8d1a9f93410a") + ) + (pin "B9" + (uuid "867ef6a8-2ff6-4359-bd93-287c5d785af8") + ) + (pin "A11" + (uuid "9f5120c1-5541-4c42-8e4d-fdd734b6ca16") + ) + (pin "A12" + (uuid "9bdeafbf-4026-4ee7-8a76-e4b4a68d6d39") + ) + (pin "A2" + (uuid "91e42ffd-ca5f-4ce3-80b3-5d7de228f93c") + ) + (pin "A3" + (uuid "803afe37-df09-4934-b677-7e1840a0baf1") + ) + (pin "A4" + (uuid "26807c2a-f9a5-4364-989e-a2f0c1cb3d07") + ) + (pin "B1" + (uuid "ca537a36-a71e-4bee-9c9e-f89250c90023") + ) + (pin "B8" + (uuid "019858b5-4be6-43a0-9fa0-6bb8484b6759") + ) + (pin "A7" + (uuid "58a938dc-81cc-490e-837f-7f4d37b2ba13") + ) + (pin "A8" + (uuid "5c92befa-6bb7-405f-b908-2c95ca63eb30") + ) + (pin "B5" + (uuid "067ec8da-7303-4083-a570-1913de3aa828") + ) + (pin "B6" + (uuid "57596116-2527-4369-b195-03f613980733") + ) + (pin "B7" + (uuid "46af7f9f-f78c-4374-a991-c961aa61bb34") + ) + (pin "S1" + (uuid "baf758eb-ce89-4888-bed5-b06aa0a81ae5") + ) + (pin "B3" + (uuid "61f72fab-6688-453f-a56e-cb2d77035d5b") + ) + (pin "B12" + (uuid "7009df58-da8f-4302-aa0b-87545c22c457") + ) + (pin "B4" + (uuid "406266b3-0bc5-480a-951a-58c516bf6ebf") + ) + (pin "A1" + (uuid "d4deb762-3a67-4382-99a3-c7fb74087d0c") + ) + (pin "A10" + (uuid "18232a0b-c47d-483e-b416-c15c5a3bc604") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 142.24 55.88 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d8d83073-f5df-414e-ab37-8e4f93126f8f") + (property "Reference" "#PWR027" + (at 146.05 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 138.43 55.8799 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 142.24 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 142.24 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 142.24 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ab601de9-a443-40fc-b868-78a742c702d7") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "#PWR027") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 114.3 95.25 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d94419b0-988a-4cf7-bf2a-b9eb9fefc857") + (property "Reference" "#PWR030" + (at 107.95 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 111.252 95.25 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 114.3 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 114.3 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9114984e-d645-45ff-bc87-d2fecf902e28") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "#PWR030") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Crystal") + (at 129.54 95.25 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ee3f7038-a7a4-4fe7-a588-6e759c94e321") + (property "Reference" "Y1" + (at 132.334 93.98 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "12MHz" + (at 132.334 96.52 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 129.54 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 129.54 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Two pin crystal" + (at 129.54 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "823398e9-0320-4cc3-9737-e7ce3e65bc3f") + ) + (pin "1" + (uuid "c0ebca2b-4f39-4f1a-bb5a-477a26814036") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "Y1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "xengineering:FT2232HPQ") + (at 172.72 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f54597a9-5dfe-4060-88ec-4613354706a8") + (property "Reference" "U5" + (at 176.022 141.986 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "FT2232HPQ" + (at 176.022 144.526 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 176.53 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://ftdichip.com/wp-content/uploads/2024/09/DS_FT2233HP.pdf" + (at 183.388 165.354 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB PD and dual UART bridge" + (at 176.022 147.066 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Manufacturer" "FTDI Limited" + (at 172.72 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MPN" "FT2232HPQ-TRAY" + (at 172.72 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "38" + (uuid "4548c519-f658-423a-943f-6eed79a1deee") + ) + (pin "47" + (uuid "c495052b-7937-47b8-bf72-fae174bade78") + ) + (pin "40" + (uuid "9e96cb25-86df-4f77-9b51-d11ce31269df") + ) + (pin "45" + (uuid "bf60e3d7-2892-406b-bb92-45b8502dd4ff") + ) + (pin "37" + (uuid "7c4e58af-f6f0-40b9-b85d-b4f88b2f1dae") + ) + (pin "6" + (uuid "0082ff0f-63a7-40f7-afb5-2926ca8db6e1") + ) + (pin "41" + (uuid "0da44d64-a486-464d-b6e0-b24385e67632") + ) + (pin "67" + (uuid "5f6c942e-6562-4e3f-9362-3e8deefa325f") + ) + (pin "50" + (uuid "1f1a527b-3e09-405b-a4b9-6ce296d2d12e") + ) + (pin "17" + (uuid "10801b2f-39aa-44a6-b06f-6a1696d381cf") + ) + (pin "16" + (uuid "de9e23aa-b0f9-451c-b07a-94afc7f5e1a5") + ) + (pin "14" + (uuid "68a8a128-b523-4646-9e48-034b61da9ccf") + ) + (pin "12" + (uuid "87547459-0879-4d47-9a92-63c9b3909493") + ) + (pin "13" + (uuid "4a637d05-8450-4647-81b1-170cb4f45e29") + ) + (pin "11" + (uuid "4f3b0a0f-8c94-4080-8f55-fc035c6a89a4") + ) + (pin "15" + (uuid "55f5e783-a1d1-42bd-95f9-55232be156ed") + ) + (pin "7" + (uuid "e387c5ad-6d72-48fd-be50-aa387cf6d447") + ) + (pin "43" + (uuid "570594b9-75e8-4177-bf89-3fcb17c1ecd6") + ) + (pin "53" + (uuid "87e8cb52-b14e-4e95-8129-78551c354c69") + ) + (pin "49" + (uuid "c68e2085-fc28-4129-ad23-6383b72be6d9") + ) + (pin "36" + (uuid "e9cc2227-2f88-4a0b-88f9-8bac5b29c0f3") + ) + (pin "35" + (uuid "09b28e4b-80bb-4094-94dd-6e8bac455b5f") + ) + (pin "24" + (uuid "e0c47a4e-6f55-41ca-b2a7-bf3afb27f178") + ) + (pin "19" + (uuid "06a720b9-590b-4c91-bb26-6da48b066970") + ) + (pin "42" + (uuid "6584bd53-afa4-4c41-b6b2-fa8afca4d617") + ) + (pin "23" + (uuid "cd659670-f3a1-468b-a20f-e535a97aac6c") + ) + (pin "52" + (uuid "a6957436-3336-4b1a-858d-76cfb59535f2") + ) + (pin "48" + (uuid "9020860e-a6bb-4d2b-a372-04289cf6a7fb") + ) + (pin "22" + (uuid "e45c56bb-3791-46e5-9131-a549fa8277fe") + ) + (pin "34" + (uuid "9599fe4a-640a-45a1-9aaf-06b53b7daff3") + ) + (pin "20" + (uuid "7204063f-aced-44ef-a896-b357f38018d7") + ) + (pin "21" + (uuid "02599237-24a6-4d62-b4f9-08e5e078fc5c") + ) + (pin "46" + (uuid "058f3e1f-f66d-41de-b3c4-4a372fe6c865") + ) + (pin "18" + (uuid "29687b43-dc6d-4919-805c-5a4e6aaf794a") + ) + (pin "26" + (uuid "95ce38bb-3e87-448d-a6c6-e4acc2fe5057") + ) + (pin "51" + (uuid "2c31043c-0b55-44c4-9f65-372f55689076") + ) + (pin "25" + (uuid "eab8c91e-aafc-4a90-95fd-a29e3f822fef") + ) + (pin "10" + (uuid "c2685beb-a2b2-4ee8-bf53-c5ccf75ac7ed") + ) + (pin "39" + (uuid "47d863fe-56db-4d6d-b6f5-174a86221615") + ) + (pin "44" + (uuid "499a6e3a-87e7-4369-95f5-7801077b76fb") + ) + (pin "8" + (uuid "0e5b3a25-0da3-47e7-9f91-7678edbd74e2") + ) + (pin "57" + (uuid "3474efb4-5744-4075-be38-bc908cf9fd5e") + ) + (pin "66" + (uuid "f5cb5a3d-ef35-445f-8010-d156e2663133") + ) + (pin "1" + (uuid "bf178753-7e90-4e80-b73b-6ea6a1ec681a") + ) + (pin "4" + (uuid "507f1098-46d8-49c1-97fe-acaecad7c109") + ) + (pin "58" + (uuid "8f16a11b-af44-49ac-a405-c8eb18ff5c4b") + ) + (pin "59" + (uuid "ad3d9efd-58ce-42f3-9eb6-b82848620fe7") + ) + (pin "33" + (uuid "ad1676e3-7dd5-417d-8e77-ea88118927b6") + ) + (pin "27" + (uuid "987ed309-5e1f-4705-b340-68eec1f84ecd") + ) + (pin "9" + (uuid "e6059c39-437e-4633-ba64-bb3fc3db7401") + ) + (pin "68" + (uuid "0ec75d01-6364-4ab0-bbee-f4a16fd27dcc") + ) + (pin "2" + (uuid "f6cd26a5-c94d-4ab3-9a4f-40447f8037a0") + ) + (pin "31" + (uuid "e983f149-7ea8-49e4-8a11-55f2f963f3f1") + ) + (pin "32" + (uuid "ba9122a2-f1ed-4b58-a3c4-4c07d471a376") + ) + (pin "3" + (uuid "73729d0e-21c9-4e3c-8809-ad6ac1d9f9b7") + ) + (pin "30" + (uuid "34cc0c9d-480e-44ec-9df8-c5044bce6aba") + ) + (pin "60" + (uuid "9daacb33-527f-4833-8338-24590a8ac2c7") + ) + (pin "61" + (uuid "dfce6574-0ac0-48b2-9d4f-f6ff9379c58f") + ) + (pin "28" + (uuid "92fe138d-4b07-41eb-b0f2-6c1ce2029060") + ) + (pin "29" + (uuid "58b61c65-2b41-4b5a-9f54-f5dc850dc20d") + ) + (pin "5" + (uuid "8da3b642-b5b5-49f7-a3ff-b7f735d970f3") + ) + (pin "54" + (uuid "03b615af-3ffe-4ae6-807b-7e18f7cbf8ec") + ) + (pin "55" + (uuid "514456d4-16c1-4df5-b0f6-49e31d69a164") + ) + (pin "56" + (uuid "527cf522-3617-493f-addf-db8bdb0bf429") + ) + (pin "62" + (uuid "a142b6ab-cf3f-44de-b762-9c90e4b224d3") + ) + (pin "63" + (uuid "c60dcee9-a7c0-4cbe-8d3a-b4cf780c0866") + ) + (pin "64" + (uuid "599777f4-554d-499c-8b32-a39d3590918f") + ) + (pin "65" + (uuid "cc75eeaa-a5c5-46e4-aff1-db123c2e68a2") + ) + (instances + (project "soundbox" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "U5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 120.65 91.44 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f809e31a-6599-441d-839f-5461625c43f4") + (property "Reference" "C14" + (at 123.952 89.916 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "18pF" + (at 124.46 92.964 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 116.84 92.4052 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 120.65 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 120.65 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1101e3eb-c895-4a09-a0c8-682d585f5cf7") + ) + (pin "2" + (uuid "759d9413-a834-4200-915f-28aefd175287") + ) + (instances + (project "" + (path "/455ca4d6-9dda-4003-9db8-aa66aec94f73/3e145403-4eb6-486a-91c4-df0c49c02a5b" + (reference "C14") + (unit 1) + ) + ) + ) + ) +) |