From 6d3d2c37d0312cf001ff40829fdbb6994deefa41 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 31 Oct 2022 10:16:21 -0300 Subject: [PATCH] [Render_3D] Added option to highlight components --- CHANGELOG.md | 1 + README.md | 3 + docs/samples/generic_plot.kibot.yaml | 6 + kibot/out_base.py | 76 +- kibot/out_base_3d.py | 4 +- kibot/out_render_3d.py | 14 +- .../data/ArduinoLearningKitStarter.kicad_sch | 6128 +++++++++++++++++ tests/data/ArduinoLearningKitStarter.sch | 2060 ------ tests/yaml_samples/render_3d_list.kibot.yaml | 3 + 9 files changed, 6229 insertions(+), 2066 deletions(-) create mode 100644 tests/data/ArduinoLearningKitStarter.kicad_sch delete mode 100644 tests/data/ArduinoLearningKitStarter.sch diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dea3ffd..8927c6af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Render_3D: - Option to render only some components (like in PcbDraw) - Option to auto-crop the resulting PNG + - Option to highlight components - SVG: - Option to control the *SVG precision* (units scale) diff --git a/README.md b/README.md index d0206bd8..2440e475 100644 --- a/README.md +++ b/README.md @@ -3105,6 +3105,9 @@ Notes: - `dnf_filter`: [string|list(string)='_none'] Name of the filter to mark components as not fitted. A short-cut to use for simple cases where a variant is an overkill. - `height`: [number=720] Image height (aprox.). + - `highlight`: [list(string)=[]] List of components to highlight. + - `highlight_on_top`: [boolean=false] Highlight over the component (not under). + - `highlight_padding`: [number=1.5] [0,1000] How much the highlight extends around the component [mm]. - `kicad_3d_url`: [string='https://gitlab.com/kicad/libraries/kicad-packages3D/-/raw/master/'] Base URL for the KiCad 3D models. - `no_smd`: [boolean=false] Used to exclude 3D models for surface mount components. - `no_tht`: [boolean=false] Used to exclude 3D models for through hole components. diff --git a/docs/samples/generic_plot.kibot.yaml b/docs/samples/generic_plot.kibot.yaml index 147a9a34..7c88018f 100644 --- a/docs/samples/generic_plot.kibot.yaml +++ b/docs/samples/generic_plot.kibot.yaml @@ -1853,6 +1853,12 @@ outputs: download: true # [number=720] Image height (aprox.) height: 720 + # [list(string)=[]] List of components to highlight + highlight: [] + # [boolean=false] Highlight over the component (not under) + highlight_on_top: false + # [number=1.5] [0,1000] How much the highlight extends around the component [mm] + highlight_padding: 1.5 # [string='https://gitlab.com/kicad/libraries/kicad-packages3D/-/raw/master/'] Base URL for the KiCad 3D models kicad_3d_url: 'https://gitlab.com/kicad/libraries/kicad-packages3D/-/raw/master/' # [number=0] Steps to move in the X axis, positive is to the right. diff --git a/kibot/out_base.py b/kibot/out_base.py index 389bd696..4e945f38 100644 --- a/kibot/out_base.py +++ b/kibot/out_base.py @@ -17,9 +17,10 @@ if not GS.kicad_version_n: detect_kicad() if GS.ki6: # New name, no alias ... - from pcbnew import FP_SHAPE, wxPoint, LSET + from pcbnew import FP_SHAPE, wxPoint, LSET, FP_3DMODEL, ToMM else: - from pcbnew import EDGE_MODULE, wxPoint, LSET + from pcbnew import EDGE_MODULE, wxPoint, LSET, MODULE_3D_SETTINGS, ToMM + FP_3DMODEL = MODULE_3D_SETTINGS from .registrable import RegOutput from .optionable import Optionable, BaseOptions from .fil_base import BaseFilter, apply_fitted_filter, reset_filters, apply_pre_transform @@ -29,6 +30,26 @@ from .error import KiPlotConfigurationError from . import log logger = log.get_logger() +HIGHLIGHT_3D_WRL = """#VRML V2.0 utf8 +#KiBot generated highlight +Shape { + appearance Appearance { + material DEF RED-01 Material { + ambientIntensity 0.494 + diffuseColor 0.895 0.291 0.213 + specularColor 0.047 0.055 0.109 + emissiveColor 0.0 0.0 0.0 + transparency 0.5 + shininess 0.25 + } + } +} +Shape { + geometry Box { size 1 1 1 } + appearance Appearance {material USE RED-01 } +} + +""" class BaseOutput(RegOutput): @@ -204,6 +225,8 @@ class VariantOptions(BaseOptions): self._comps = None self.undo_3d_models = {} self.undo_3d_models_rep = {} + self._highlight_3D_file = None + self._highlighted_3D_components = None def config(self, parent): super().config(parent) @@ -584,7 +607,44 @@ class VariantOptions(BaseOptions): if not matched and default is not None: self.apply_list_of_3D_models(enable, slots, m, '_default_') - def filter_pcb_components(self, board, do_3D=False, do_2D=True): + def create_3D_highlight_file(self): + if self._highlight_3D_file: + return + with NamedTemporaryFile(mode='w', suffix='.wrl', delete=False) as f: + self._highlight_3D_file = f.name + logger.debug('Creating temporal highlight file '+f.name) + f.write(HIGHLIGHT_3D_WRL) + + def highlight_3D_models(self, board, highlight): + if not highlight: + return + self.create_3D_highlight_file() + # TODO: Adjust? Configure? + z = (100.0 if self.highlight_on_top else 0.1)/2.54 + for m in GS.get_modules_board(board): + if m.GetReference() not in highlight: + continue + models = m.Models() + bbox = m.GetBoundingBox() + # Create a new 3D model for the highlight + hl = FP_3DMODEL() + hl.m_Scale.x = ToMM(bbox.GetWidth()+self.highlight_padding)/2.54 + hl.m_Scale.y = ToMM(bbox.GetHeight()+self.highlight_padding)/2.54 + hl.m_Scale.z = z + hl.m_Filename = self._highlight_3D_file + models.push_back(hl) + self._highlighted_3D_components = highlight + + def unhighlight_3D_models(self, board): + if not self._highlighted_3D_components: + return + for m in GS.get_modules_board(board): + if m.GetReference() not in self._highlighted_3D_components: + continue + m.Models().pop() + self._highlighted_3D_components = None + + def filter_pcb_components(self, board, do_3D=False, do_2D=True, highlight=None): if not self._comps: return False self.comps_hash = self.get_refs_hash() @@ -598,6 +658,8 @@ class VariantOptions(BaseOptions): self.apply_3D_variant_aspect(board) # Remove the 3D models for not fitted components (also rename) self.remove_3D_models(board, self.comps_hash) + # Highlight selected components + self.highlight_3D_models(board, highlight) return True def unfilter_pcb_components(self, board, do_3D=False, do_2D=True): @@ -613,6 +675,14 @@ class VariantOptions(BaseOptions): self.restore_3D_models(board, self.comps_hash) # Re-enable the modules that aren't for this variant self.apply_3D_variant_aspect(board, enable=True) + # Remove the highlight 3D object + self.unhighlight_3D_models(board) + + def remove_highlight_3D_file(self): + # Remove the highlight 3D file if it was created + if self._highlight_3D_file: + os.remove(self._highlight_3D_file) + self._highlight_3D_file = None def set_title(self, title, sch=False): self.old_title = None diff --git a/kibot/out_base_3d.py b/kibot/out_base_3d.py index a6dad2b5..f9a14ba9 100644 --- a/kibot/out_base_3d.py +++ b/kibot/out_base_3d.py @@ -190,7 +190,7 @@ class Base3DOptions(VariantOptions): models.add(full_name) return list(models) - def filter_components(self): + def filter_components(self, highlight=None): if not self._comps: # No variant/filter to apply if self.download_models(): @@ -201,7 +201,7 @@ class Base3DOptions(VariantOptions): self.undo_3d_models_rename(GS.board) return ret return GS.pcb_file - self.filter_pcb_components(GS.board, do_3D=True, do_2D=True) + self.filter_pcb_components(GS.board, do_3D=True, do_2D=True, highlight=highlight) self.download_models() fname = self.save_tmp_board() self.unfilter_pcb_components(GS.board, do_3D=True, do_2D=True) diff --git a/kibot/out_render_3d.py b/kibot/out_render_3d.py index e7234791..89c6c422 100644 --- a/kibot/out_render_3d.py +++ b/kibot/out_render_3d.py @@ -124,6 +124,12 @@ class Render3DOptions(Base3DOptions): self.show_components = Optionable """ *[list(string)|string=all] [none,all] List of components to draw, can be also a string for `none` or `all`. Unlike the `pcbdraw` output, the default is `all` """ + self.highlight = Optionable + """ [list(string)=[]] List of components to highlight """ + self.highlight_padding = 1.5 + """ [0,1000] How much the highlight extends around the component [mm] """ + self.highlight_on_top = False + """ Highlight over the component (not under) """ self.auto_crop = False """ When enabled the image will be post-processed to make the background transparent and then remove the empty space around the image. In this mode the `background1` and `background2` colors are ignored """ @@ -187,6 +193,11 @@ class Render3DOptions(Base3DOptions): else: # a list self.show_components = set(self.show_components) self._expand_id += '_'+self._rviews.get(self.view) + # highlight + if isinstance(self.highlight, type): + self.highlight = set() + else: + self.highlight = set(self.highlight) def add_step(self, cmd, steps, ops): if steps: @@ -265,13 +276,14 @@ class Render3DOptions(Base3DOptions): self.add_options(cmd) # The board self.apply_show_components() - board_name = self.filter_components() + board_name = self.filter_components(highlight=self.highlight) cmd.extend([board_name, os.path.dirname(output)]) cmd, video_remove = add_extra_options(cmd) # Execute it ret = exec_with_retry(cmd) # Remove the temporal PCB self.remove_tmp_board(board_name) + self.remove_highlight_3D_file() # Remove the downloaded 3D models if self._tmp_dir: rmtree(self._tmp_dir) diff --git a/tests/data/ArduinoLearningKitStarter.kicad_sch b/tests/data/ArduinoLearningKitStarter.kicad_sch new file mode 100644 index 00000000..ddd10133 --- /dev/null +++ b/tests/data/ArduinoLearningKitStarter.kicad_sch @@ -0,0 +1,6128 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 8a49f674-e7d3-44e4-99dc-a3e950b0740c) + + (paper "A4") + + (title_block + (title "ArduinoLearningKitStarter") + (date "2018-12-20") + (rev "3.2") + (company "RoboticsBrno") + ) + + (lib_symbols + (symbol "ArduinoLearningKitStarter:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3V3_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3V3_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.254 1.778 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "C_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_Small_0_1" + (polyline + (pts + (xy -1.524 -0.508) + (xy 1.524 -0.508) + ) + (stroke (width 0.3302) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 0.508) + (xy 1.524 0.508) + ) + (stroke (width 0.3048) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "C_Small_1_1" + (pin passive line (at 0 2.54 270) (length 2.032) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -2.54 90) (length 2.032) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x04" (id 1) (at 0 -7.62 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_??x*mm* Connector*:*1x??x*mm* Pin?Header?Straight?1X* Pin?Header?Angled?1X* Socket?Strip?Straight?1X* Socket?Strip?Angled?1X*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x04_1_1" + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 3.81) (end 1.27 -6.35) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at -5.08 2.54 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 0 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:ESP32-DEVKIT-C-yaqwsx" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "ESP32-DEVKIT-C-yaqwsx" (id 1) (at 0 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 -8.89 0) + (effects (font (size 1.524 1.524)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 -8.89 0) + (effects (font (size 1.524 1.524)) hide) + ) + (symbol "ESP32-DEVKIT-C-yaqwsx_0_1" + (rectangle (start 8.89 -24.13) (end -7.62 24.13) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "ESP32-DEVKIT-C-yaqwsx_1_1" + (pin input line (at -12.7 22.86 0) (length 5.08) + (name "3V3" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 0 0) (length 5.08) + (name "IO26" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -2.54 0) (length 5.08) + (name "IO27" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -5.08 0) (length 5.08) + (name "IO14" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -7.62 0) (length 5.08) + (name "IO12" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -10.16 0) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -12.7 0) (length 5.08) + (name "IO13" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -15.24 0) (length 5.08) + (name "SD2" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -17.78 0) (length 5.08) + (name "SD3" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -20.32 0) (length 5.08) + (name "CMD" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -22.86 0) (length 5.08) + (name "5V" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 20.32 0) (length 5.08) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -22.86 180) (length 5.08) + (name "CLK" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -20.32 180) (length 5.08) + (name "SD0" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -17.78 180) (length 5.08) + (name "SD1" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -15.24 180) (length 5.08) + (name "IO15" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -12.7 180) (length 5.08) + (name "IO2" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -10.16 180) (length 5.08) + (name "IO0" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -7.62 180) (length 5.08) + (name "IO4" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -5.08 180) (length 5.08) + (name "IO16" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 -2.54 180) (length 5.08) + (name "IO17" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 0 180) (length 5.08) + (name "IO5" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 17.78 0) (length 5.08) + (name "SVP" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 2.54 180) (length 5.08) + (name "IO18" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 5.08 180) (length 5.08) + (name "IO19" (effects (font (size 1.27 1.27)))) + (number "31" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 7.62 180) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "32" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 10.16 180) (length 5.08) + (name "IO21" (effects (font (size 1.27 1.27)))) + (number "33" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 12.7 180) (length 5.08) + (name "RXD0" (effects (font (size 1.27 1.27)))) + (number "34" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 15.24 180) (length 5.08) + (name "TXD0" (effects (font (size 1.27 1.27)))) + (number "35" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 17.78 180) (length 5.08) + (name "IO22" (effects (font (size 1.27 1.27)))) + (number "36" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 20.32 180) (length 5.08) + (name "IO23" (effects (font (size 1.27 1.27)))) + (number "37" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 13.97 22.86 180) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "38" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 15.24 0) (length 5.08) + (name "SVN" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 12.7 0) (length 5.08) + (name "IO34" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 10.16 0) (length 5.08) + (name "IO35" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 7.62 0) (length 5.08) + (name "IO32" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 5.08 0) (length 5.08) + (name "IO33" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 2.54 0) (length 5.08) + (name "IO25" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (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) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:PIEZO-yaqwsx" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "PIEZO-yaqwsx" (id 1) (at 0 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PIEZO-yaqwsx_0_1" + (rectangle (start -1.27 3.81) (end 1.27 -3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -2.54 3.81) + (xy -2.54 -3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 3.81) + (xy 2.54 -3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PIEZO-yaqwsx_1_1" + (pin unspecified line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin unspecified line (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "VCC" (id 1) (at 0 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "VCC_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 1.905) (radius 0.635) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "VCC_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:arduino_nano-yaqwsx" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "arduino_nano-yaqwsx" (id 1) (at 0 -20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -7.62 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -7.62 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "arduino_nano-yaqwsx_0_1" + (rectangle (start -15.24 19.05) (end 13.97 -19.05) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "arduino_nano-yaqwsx_1_1" + (pin tri_state line (at -20.32 17.78 0) (length 5.08) + (name "D13/SCK/LED" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at -20.32 -5.08 0) (length 5.08) + (name "A6" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at -20.32 -7.62 0) (length 5.08) + (name "A7" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at -20.32 -10.16 0) (length 5.08) + (name "5V" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -20.32 -12.7 0) (length 5.08) + (name "RST" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -20.32 -15.24 0) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -20.32 -17.78 0) (length 5.08) + (name "VIN" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 -17.78 180) (length 5.08) + (name "TX/D1" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 -15.24 180) (length 5.08) + (name "RX/D0" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 -12.7 180) (length 5.08) + (name "RST" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 19.05 -10.16 180) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at -20.32 15.24 0) (length 5.08) + (name "3V3" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 -7.62 180) (length 5.08) + (name "INT/D2" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 -5.08 180) (length 5.08) + (name "INT/PWM/D3" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 -2.54 180) (length 5.08) + (name "D4" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 0 180) (length 5.08) + (name "PWM/D5" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 2.54 180) (length 5.08) + (name "PWM/D6" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 5.08 180) (length 5.08) + (name "D7" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 7.62 180) (length 5.08) + (name "D8" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 10.16 180) (length 5.08) + (name "PWM/D9" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 12.7 180) (length 5.08) + (name "PWM/SS/D10" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 15.24 180) (length 5.08) + (name "PWM/MOSI/D11" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -20.32 12.7 0) (length 5.08) + (name "AREF" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 19.05 17.78 180) (length 5.08) + (name "MISO/D12" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at -20.32 10.16 0) (length 5.08) + (name "A0" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at -20.32 7.62 0) (length 5.08) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at -20.32 5.08 0) (length 5.08) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at -20.32 2.54 0) (length 5.08) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at -20.32 0 0) (length 5.08) + (name "A4/SDA" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at -20.32 -2.54 0) (length 5.08) + (name "A5/SCL" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "ArduinoLearningKitStarter:arduino_uno-yaqwsx" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "arduino_uno-yaqwsx" (id 1) (at 0 -25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -5.08 -10.16 0) + (effects (font (size 1.524 1.524)) hide) + ) + (property "Datasheet" "" (id 3) (at -5.08 -10.16 0) + (effects (font (size 1.524 1.524)) hide) + ) + (symbol "arduino_uno-yaqwsx_0_1" + (rectangle (start 13.97 24.13) (end -13.97 -24.13) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "arduino_uno-yaqwsx_1_1" + (pin input line (at -19.05 12.7 0) (length 5.08) + (name "NC" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 -12.7 0) (length 5.08) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 -15.24 0) (length 5.08) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 -17.78 0) (length 5.08) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 -20.32 0) (length 5.08) + (name "A4/SDA" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 -22.86 0) (length 5.08) + (name "A5/SCL" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 -22.86 180) (length 5.08) + (name "RX/D0" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 -20.32 180) (length 5.08) + (name "TX/D1" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 -17.78 180) (length 5.08) + (name "INT/D2" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 -15.24 180) (length 5.08) + (name "INT/PWM/D3" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 -12.7 180) (length 5.08) + (name "D4" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 10.16 0) (length 5.08) + (name "IOREF" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 -10.16 180) (length 5.08) + (name "PWM/D5" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 -7.62 180) (length 5.08) + (name "PWM/D6" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 -5.08 180) (length 5.08) + (name "D7" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 0 180) (length 5.08) + (name "D8" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 2.54 180) (length 5.08) + (name "PWM/D9" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 5.08 180) (length 5.08) + (name "PWM/SS/D10" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 7.62 180) (length 5.08) + (name "PWM/MOSI/D11" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 10.16 180) (length 5.08) + (name "MISO/D12" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 12.7 180) (length 5.08) + (name "LED/SCK/D13" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 15.24 180) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 7.62 0) (length 5.08) + (name "RESET" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 17.78 180) (length 5.08) + (name "AREF" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 20.32 180) (length 5.08) + (name "SDA/A4" (effects (font (size 1.27 1.27)))) + (number "31" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 19.05 22.86 180) (length 5.08) + (name "SCL/A5" (effects (font (size 1.27 1.27)))) + (number "32" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 5.08 0) (length 5.08) + (name "3V3" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 2.54 0) (length 5.08) + (name "5V" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 0 0) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 -2.54 0) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 -5.08 0) (length 5.08) + (name "VIN" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -19.05 -10.16 0) (length 5.08) + (name "A0" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:USB_B_Micro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -5.08 11.43 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "USB_B_Micro" (id 1) (at -5.08 8.89 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 3.81 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 3.81 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector USB micro" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "USB Micro Type B connector" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "USB*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "USB_B_Micro_0_1" + (rectangle (start -5.08 -7.62) (end 5.08 7.62) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (circle (center -3.81 2.159) (radius 0.635) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center -0.635 3.429) (radius 0.381) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.127 -7.62) (end 0.127 -6.858) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.905 2.159) + (xy 0.635 2.159) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.175 2.159) + (xy -2.54 2.159) + (xy -1.27 3.429) + (xy -0.635 3.429) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 2.159) + (xy -1.905 2.159) + (xy -1.27 0.889) + (xy 0 0.889) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 2.794) + (xy 0.635 1.524) + (xy 1.905 2.159) + (xy 0.635 2.794) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -4.318 5.588) + (xy -1.778 5.588) + (xy -2.032 4.826) + (xy -4.064 4.826) + (xy -4.318 5.588) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -4.699 5.842) + (xy -4.699 5.588) + (xy -4.445 4.826) + (xy -4.445 4.572) + (xy -1.651 4.572) + (xy -1.651 4.826) + (xy -1.397 5.588) + (xy -1.397 5.842) + (xy -4.699 5.842) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.254 1.27) (end -0.508 0.508) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.08 -5.207) (end 4.318 -4.953) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 -2.667) (end 4.318 -2.413) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 -0.127) (end 4.318 0.127) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 4.953) (end 4.318 5.207) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "USB_B_Micro_1_1" + (pin power_out line (at 7.62 5.08 180) (length 2.54) + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 7.62 -2.54 180) (length 2.54) + (name "D-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 7.62 0 180) (length 2.54) + (name "D+" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -5.08 180) (length 2.54) + (name "ID" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -10.16 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -10.16 90) (length 2.54) + (name "Shield" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x02_1_1" + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 1.27) (end 1.27 -3.81) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (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_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x03_1_1" + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 3.81) (end 1.27 -3.81) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at -5.08 2.54 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 0 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x04" (id 1) (at 0 -7.62 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x04_1_1" + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 3.81) (end 1.27 -6.35) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at -5.08 2.54 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 0 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 7.62 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x06" (id 1) (at 0 -10.16 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x06_1_1" + (rectangle (start -1.27 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 6.35) (end 1.27 -8.89) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at -5.08 5.08 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)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x08" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 10.16 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x08" (id 1) (at 0 -12.7 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x08_1_1" + (rectangle (start -1.27 -10.033) (end 0 -10.287) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 7.747) (end 0 7.493) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 8.89) (end 1.27 -11.43) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at -5.08 7.62 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 5.08 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -10.16 0) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x10" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 12.7 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x10" (id 1) (at 0 -15.24 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x10_1_1" + (rectangle (start -1.27 -12.573) (end 0 -12.827) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -10.033) (end 0 -10.287) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 7.747) (end 0 7.493) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 10.287) (end 0 10.033) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 11.43) (end 1.27 -13.97) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at -5.08 10.16 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 -12.7 0) (length 3.81) + (name "Pin_10" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 7.62 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 5.08 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -10.16 0) (length 3.81) + (name "Pin_9" (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)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) + (xy 2.032 -0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (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:Jumper_NC_Dual" (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes) + (property "Reference" "JP" (id 0) (at 1.27 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Device_Jumper_NC_Dual" (id 1) (at 0 2.54 0) + (effects (font (size 1.27 1.27)) (justify bottom)) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Jumper_NC_Dual_0_1" + (circle (center -3.048 0) (radius 0.889) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -0.254 1.27) (mid -1.524 1.8804) (end -2.794 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 0.9144) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.794 1.27) (mid 1.524 1.8804) (end 0.254 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 3.048 0) (radius 0.889) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -6.35 0 0) (length 2.413) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -2.54 90) (length 1.524) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 6.35 0 180) (length 2.413) + (name "3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:Jumper_NC_Small" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes) + (property "Reference" "JP" (id 0) (at 0 2.032 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Device_Jumper_NC_Small" (id 1) (at 0.254 -1.524 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Jumper_NC_Small_0_1" + (circle (center -1.016 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 1.016 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.016 0.762) (mid 0 1.1828) (end -1.016 0.762) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -2.54 0 0) (length 1.016) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 0 180) (length 1.016) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "LED" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LED_0_1" + (polyline + (pts + (xy -1.27 -1.27) + (xy -1.27 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 0) + (xy 1.27 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.27) + (xy 1.27 1.27) + (xy -1.27 0) + (xy 1.27 -1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.048 -0.762) + (xy -4.572 -2.286) + (xy -3.81 -2.286) + (xy -4.572 -2.286) + (xy -4.572 -1.524) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 -0.762) + (xy -3.302 -2.286) + (xy -2.54 -2.286) + (xy -3.302 -2.286) + (xy -3.302 -1.524) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "LED_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "K" (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 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:LED_RCBG" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 9.398 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Device_LED_RCBG" (id 1) (at 0 -8.89 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LED_RCBG_0_0" + (text "B" (at 1.905 -6.35 0) + (effects (font (size 1.27 1.27))) + ) + (text "G" (at 1.905 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (text "R" (at 1.905 3.81 0) + (effects (font (size 1.27 1.27))) + ) + ) + (symbol "LED_RCBG_0_1" + (circle (center -2.159 0) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -1.27 -5.08) + (xy 1.27 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -3.81) + (xy -1.27 -6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -3.81) + (xy -1.27 -6.35) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 0) + (xy -2.54 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.27) + (xy -1.27 -1.27) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 5.08) + (xy 1.27 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 6.35) + (xy -1.27 3.81) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -5.08) + (xy 2.54 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy -1.27 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 2.54 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 5.08) + (xy 2.54 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.27) + (xy -1.27 -1.27) + (xy -1.27 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 6.35) + (xy -1.27 3.81) + (xy -1.27 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 5.08) + (xy -2.159 5.08) + (xy -2.159 -5.08) + (xy -1.016 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -3.81) + (xy 1.27 -6.35) + (xy -1.27 -5.08) + (xy 1.27 -3.81) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 1.27) + (xy 1.27 -1.27) + (xy -1.27 0) + (xy 1.27 1.27) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 6.35) + (xy 1.27 3.81) + (xy -1.27 5.08) + (xy 1.27 6.35) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.016 -3.81) + (xy 0.508 -2.286) + (xy -0.254 -2.286) + (xy 0.508 -2.286) + (xy 0.508 -3.048) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.016 1.27) + (xy 0.508 2.794) + (xy -0.254 2.794) + (xy 0.508 2.794) + (xy 0.508 2.032) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.016 6.35) + (xy 0.508 7.874) + (xy -0.254 7.874) + (xy 0.508 7.874) + (xy 0.508 7.112) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -3.81) + (xy 1.524 -2.286) + (xy 0.762 -2.286) + (xy 1.524 -2.286) + (xy 1.524 -3.048) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 1.524 2.794) + (xy 0.762 2.794) + (xy 1.524 2.794) + (xy 1.524 2.032) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 6.35) + (xy 1.524 7.874) + (xy 0.762 7.874) + (xy 1.524 7.874) + (xy 1.524 7.112) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 1.27 -1.27) (end 1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 1.27 1.27) (end 1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 1.27 3.81) (end 1.27 6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 1.27 6.35) (end 1.27 6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 2.794 8.382) (end -2.794 -7.62) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "LED_RCBG_1_1" + (pin passive line (at 5.08 5.08 180) (length 2.54) + (name "RA" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -5.08 180) (length 2.54) + (name "BA" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "GA" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 2.032 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "R" (id 1) (at 0 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at -1.778 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Resistor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_0_1" + (rectangle (start -1.016 -2.54) (end 1.016 2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (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 "Device:R_PHOTO" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Device_R_PHOTO" (id 1) (at 1.27 0 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + (property "Footprint" "" (id 2) (at 1.27 -6.35 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "" (id 3) (at 0 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "*LDR* R?LDR*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_PHOTO_0_1" + (rectangle (start -1.016 2.54) (end 1.016 -2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -2.286) + (xy -4.064 0.254) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -2.286) + (xy -2.286 -2.286) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -2.286) + (xy -1.524 -1.524) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -0.762) + (xy -4.064 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -0.762) + (xy -2.286 -0.762) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -0.762) + (xy -1.524 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "R_PHOTO_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 "Device:R_POT" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "RV" (id 0) (at -4.445 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Device_R_POT" (id 1) (at -2.54 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Potentiometer*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_POT_0_1" + (polyline + (pts + (xy 2.54 0) + (xy 1.524 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.143 0) + (xy 2.286 0.508) + (xy 2.286 -0.508) + (xy 1.143 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.016 2.54) (end -1.016 -2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "R_POT_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 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)))) + ) + (pin passive line (at 0 -3.81 90) (length 1.27) + (name "3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "SW" (id 0) (at 1.27 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SW_Push" (id 1) (at 0 -1.524 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SW_Push_0_1" + (circle (center -2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 3.048) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 111.76 144.78) (diameter 0) (color 0 0 0 0) + (uuid 019a61c8-4102-4cf0-80f3-33d1bf90fdcb) + ) + (junction (at 111.76 176.53) (diameter 0) (color 0 0 0 0) + (uuid 106cdad2-c0b9-467c-9e98-3f5fb57ff13b) + ) + (junction (at 45.72 96.52) (diameter 0) (color 0 0 0 0) + (uuid 1c4f7916-19d3-4cee-afdb-f5da4294ade1) + ) + (junction (at 163.83 179.07) (diameter 0) (color 0 0 0 0) + (uuid 23885eb1-5c37-4bf4-b673-2441b302847c) + ) + (junction (at 45.72 128.27) (diameter 0) (color 0 0 0 0) + (uuid 335c055b-acd8-42ca-b8b5-c932f20a8969) + ) + (junction (at 213.36 88.9) (diameter 0) (color 0 0 0 0) + (uuid 34844fd9-870f-4c36-b0e8-ea5caf558772) + ) + (junction (at 200.66 134.62) (diameter 0) (color 0 0 0 0) + (uuid 349b4b45-54a7-4d82-b526-e23ed3a6cd97) + ) + (junction (at 31.75 82.55) (diameter 0) (color 0 0 0 0) + (uuid 34f9571a-c26b-4286-b398-8cbb12ee82e7) + ) + (junction (at 31.75 146.05) (diameter 0) (color 0 0 0 0) + (uuid 3dc8ff50-774e-4a3e-a33d-40537e8d7bb9) + ) + (junction (at 111.76 119.38) (diameter 0) (color 0 0 0 0) + (uuid 42a9f868-c356-4a85-9580-3432e92c9a60) + ) + (junction (at 45.72 143.51) (diameter 0) (color 0 0 0 0) + (uuid 43dd1ec3-a55c-4b06-a444-d0fb44720183) + ) + (junction (at 229.87 109.22) (diameter 0) (color 0 0 0 0) + (uuid 45c4f242-5c17-4974-8be0-541d707acd2b) + ) + (junction (at 111.76 171.45) (diameter 0) (color 0 0 0 0) + (uuid 45d16e09-f6ae-4e79-b7af-8ae23800d9ce) + ) + (junction (at 45.72 80.01) (diameter 0) (color 0 0 0 0) + (uuid 487658d7-75ca-417b-8388-d00ea48acdc9) + ) + (junction (at 111.76 101.6) (diameter 0) (color 0 0 0 0) + (uuid 4d22ae8d-f7fb-4483-8fe2-1d5c6c614f48) + ) + (junction (at 111.76 173.99) (diameter 0) (color 0 0 0 0) + (uuid 51f5ffd4-bc62-4a1c-bccb-d3e542f8572d) + ) + (junction (at 45.72 113.03) (diameter 0) (color 0 0 0 0) + (uuid 538985e0-54f0-4a78-a161-df1af9116c97) + ) + (junction (at 31.75 99.06) (diameter 0) (color 0 0 0 0) + (uuid 546ab486-071f-49c1-88ac-235c27e788bb) + ) + (junction (at 111.76 142.24) (diameter 0) (color 0 0 0 0) + (uuid 56dfa6e0-8800-45b3-93c3-7508b9e27dfd) + ) + (junction (at 111.76 124.46) (diameter 0) (color 0 0 0 0) + (uuid 578c02bc-e8cd-482f-839c-d7613ab7e47f) + ) + (junction (at 111.76 134.62) (diameter 0) (color 0 0 0 0) + (uuid 684e02f8-7ce7-43ae-954e-c130677efd06) + ) + (junction (at 111.76 161.29) (diameter 0) (color 0 0 0 0) + (uuid 6aed9f8a-03f2-4b9a-80c0-02d2ac3da446) + ) + (junction (at 85.09 142.24) (diameter 0) (color 0 0 0 0) + (uuid 7656e33d-54b9-436a-aa8e-5c7df97930f0) + ) + (junction (at 31.75 115.57) (diameter 0) (color 0 0 0 0) + (uuid 783ad7d6-4fb2-4b22-9e58-8def0b4d097d) + ) + (junction (at 213.36 77.47) (diameter 0) (color 0 0 0 0) + (uuid 7a285e63-fd0f-453b-9f78-b4cc58cb5d39) + ) + (junction (at 111.76 168.91) (diameter 0) (color 0 0 0 0) + (uuid 937ab6a8-d448-435a-af14-c622fc22bdce) + ) + (junction (at 200.66 109.22) (diameter 0) (color 0 0 0 0) + (uuid 98b7e24a-67e8-4b47-bf17-8e6a867e5df7) + ) + (junction (at 111.76 181.61) (diameter 0) (color 0 0 0 0) + (uuid 9b6cca0f-630c-4e87-a197-347036320046) + ) + (junction (at 111.76 166.37) (diameter 0) (color 0 0 0 0) + (uuid 9c28f3dc-aea1-4851-b1c8-91c053e9837b) + ) + (junction (at 111.76 137.16) (diameter 0) (color 0 0 0 0) + (uuid a3e8dff3-f049-4c59-8f87-0317337b62a4) + ) + (junction (at 111.76 121.92) (diameter 0) (color 0 0 0 0) + (uuid a704645f-173e-4547-8e81-5c50d514ef88) + ) + (junction (at 111.76 139.7) (diameter 0) (color 0 0 0 0) + (uuid ba356882-1c65-4188-8183-34463e38cb74) + ) + (junction (at 111.76 104.14) (diameter 0) (color 0 0 0 0) + (uuid bebc43ad-506c-4840-8517-b6aa3b6a2b93) + ) + (junction (at 229.87 88.9) (diameter 0) (color 0 0 0 0) + (uuid c200f36e-a054-4b71-a653-0f5a6765d776) + ) + (junction (at 213.36 134.62) (diameter 0) (color 0 0 0 0) + (uuid c852228d-501a-496f-b250-5de681512c4a) + ) + (junction (at 111.76 147.32) (diameter 0) (color 0 0 0 0) + (uuid d26423a6-6b59-46af-91de-d39253208dd7) + ) + (junction (at 201.93 43.18) (diameter 0) (color 0 0 0 0) + (uuid d86da134-6ef2-4419-b277-e1ab375d11b9) + ) + (junction (at 38.1 166.37) (diameter 0) (color 0 0 0 0) + (uuid daf6979d-2356-4d42-9120-2cb68853c029) + ) + (junction (at 213.36 109.22) (diameter 0) (color 0 0 0 0) + (uuid dcade624-238b-48e2-af75-7d63f99a32e5) + ) + (junction (at 111.76 179.07) (diameter 0) (color 0 0 0 0) + (uuid e0b28ddf-bc21-4fa1-902f-2b86469e92c5) + ) + (junction (at 111.76 163.83) (diameter 0) (color 0 0 0 0) + (uuid e28dfd03-5af9-4a68-9eec-b4a099d1b14c) + ) + (junction (at 29.21 184.15) (diameter 0) (color 0 0 0 0) + (uuid e2cf1318-a4de-4bb9-ada2-8ab3e9dcb783) + ) + (junction (at 111.76 114.3) (diameter 0) (color 0 0 0 0) + (uuid e9b1efae-52de-4846-9c8d-d0e32cb95751) + ) + (junction (at 111.76 116.84) (diameter 0) (color 0 0 0 0) + (uuid ec43ba32-6bc0-4a54-a275-90995ecffc58) + ) + (junction (at 229.87 134.62) (diameter 0) (color 0 0 0 0) + (uuid effcb23f-ef4d-4af6-90fe-1e9aa3d11151) + ) + (junction (at 111.76 149.86) (diameter 0) (color 0 0 0 0) + (uuid f4066d49-b39f-4c5a-a694-50372829ef86) + ) + (junction (at 111.76 99.06) (diameter 0) (color 0 0 0 0) + (uuid fa05caf4-c3ee-408c-96a2-3457c01b9cd8) + ) + (junction (at 31.75 130.81) (diameter 0) (color 0 0 0 0) + (uuid ffefeb1f-122e-4040-aefc-4062c4e21c40) + ) + + (no_connect (at 265.43 80.01) (uuid 0122a622-8347-4fc9-addd-78c7be858e2e)) + (no_connect (at 62.23 67.31) (uuid 042703a3-aa90-4b5c-8dca-d01b1e8f0603)) + (no_connect (at 62.23 64.77) (uuid 196e86d9-a597-4328-b7da-07186d3984e1)) + (no_connect (at 62.23 36.83) (uuid 4838879d-dde2-455c-b598-c7d92abf0b2f)) + (no_connect (at 88.9 64.77) (uuid 5240cc06-7f0f-48c9-bf6f-172ec8d772cd)) + (no_connect (at 62.23 31.75) (uuid 5534d40b-2d97-4bcd-9ae1-99f9f915f38f)) + (no_connect (at 62.23 62.23) (uuid 80f0cfe8-4adc-4718-af7d-7676449aa763)) + (no_connect (at 62.23 34.29) (uuid 86f3e734-44db-4182-af0e-2427e3dd5d9c)) + (no_connect (at 62.23 29.21) (uuid 9179ea19-29d4-43cc-b8b3-b7f84b682dff)) + (no_connect (at 201.93 30.48) (uuid ba0ae648-a07e-4d0c-8a12-454d11cde040)) + (no_connect (at 36.83 176.53) (uuid c478cf1a-027e-45ae-9532-b4f1a30ebff3)) + (no_connect (at 88.9 67.31) (uuid c7fdc76d-deb6-4ee7-b192-2ea2d2d59ac4)) + (no_connect (at 88.9 69.85) (uuid fa10a251-33e9-4b1f-85de-e279c78f08ff)) + + (wire (pts (xy 111.76 179.07) (xy 111.76 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02b09c50-dec1-4906-95d1-7f0c56fa2f8d) + ) + (wire (pts (xy 82.55 163.83) (xy 81.28 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0406cdf3-5130-48ec-b43b-ce604af7233f) + ) + (wire (pts (xy 251.46 133.35) (xy 254 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 051a55bc-aff5-4640-b51b-34bea295fa42) + ) + (wire (pts (xy 173.99 100.33) (xy 176.53 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0580c0fc-9576-4641-8d37-29e20cf6a10b) + ) + (wire (pts (xy 111.76 181.61) (xy 110.49 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 090b26d1-e3ea-47fd-9123-203b04e186ae) + ) + (wire (pts (xy 111.76 119.38) (xy 111.76 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a5eb22a-74ea-4c81-a006-34c7ae02faf2) + ) + (wire (pts (xy 26.67 181.61) (xy 26.67 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c8544ae-c2f6-4223-9264-7919da0fa31f) + ) + (wire (pts (xy 26.67 184.15) (xy 29.21 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f6a09d8-e14c-47c9-b946-4282731f5a3a) + ) + (wire (pts (xy 81.28 142.24) (xy 85.09 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14b6f905-a5ff-44d3-a295-aa693bfd51bd) + ) + (wire (pts (xy 111.76 132.08) (xy 111.76 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16e21b58-5856-43da-a353-6ab02d5c6d64) + ) + (wire (pts (xy 111.76 134.62) (xy 111.76 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17f69300-c6e7-4573-b123-cca7b6e433a3) + ) + (wire (pts (xy 229.87 97.79) (xy 229.87 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 182a2537-eb94-4427-90f7-34afff5df689) + ) + (wire (pts (xy 111.76 168.91) (xy 111.76 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 187b90d5-ced1-46c9-b2bf-5531cac89b2f) + ) + (wire (pts (xy 215.9 134.62) (xy 213.36 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18ee95a2-0a48-448e-966b-7487321cab95) + ) + (wire (pts (xy 57.15 26.67) (xy 62.23 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19b4c41a-713e-46e8-9424-0ccfb86fc456) + ) + (wire (pts (xy 163.83 189.23) (xy 163.83 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c3e4469-b580-4ac3-990e-b3cc024e0db0) + ) + (wire (pts (xy 30.48 99.06) (xy 31.75 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c58bd82-71a2-42c6-8035-58c08cd17b28) + ) + (wire (pts (xy 85.09 142.24) (xy 93.98 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ff33d36-9ce0-413e-8e4b-50b1b3a92007) + ) + (wire (pts (xy 229.87 123.19) (xy 229.87 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20b1455d-363c-4b66-9b18-6b9a9c527b22) + ) + (wire (pts (xy 163.83 82.55) (xy 166.37 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22b10626-6ec0-48c6-8935-c436abe3b543) + ) + (wire (pts (xy 40.64 93.98) (xy 46.99 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23477cd9-b09f-42b7-80b6-ba2581372651) + ) + (wire (pts (xy 198.12 40.64) (xy 201.93 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 237631d0-e09f-4acd-9867-45f8d25a36f1) + ) + (wire (pts (xy 210.82 109.22) (xy 213.36 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 258fbb12-e078-4caa-8f4d-5b32f6430d02) + ) + (wire (pts (xy 148.59 144.78) (xy 143.51 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2710fdba-0b31-47cb-83bc-cc9ae6a7420f) + ) + (wire (pts (xy 45.72 113.03) (xy 48.26 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28231150-68b3-49e7-a2fd-513725fa9440) + ) + (wire (pts (xy 163.83 100.33) (xy 166.37 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29e4b2bc-fd54-4c40-96f4-9a73898a4114) + ) + (wire (pts (xy 30.48 125.73) (xy 33.02 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a129c03-0704-4bb8-95b9-e7802c26188f) + ) + (wire (pts (xy 82.55 161.29) (xy 82.55 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2addd191-9831-431e-801c-250d19d88664) + ) + (wire (pts (xy 163.83 176.53) (xy 163.83 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e4859d1-afc3-438a-a220-2fa9bcd4cbe3) + ) + (wire (pts (xy 30.48 77.47) (xy 33.02 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f6c5038-b2cc-4e67-b9e8-b4af3498eb6f) + ) + (wire (pts (xy 229.87 134.62) (xy 232.41 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 305d3580-69fd-4ca9-a13f-b18705c613cd) + ) + (wire (pts (xy 45.72 99.06) (xy 45.72 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3522a407-55bb-4b38-8b70-039a54cbb03a) + ) + (wire (pts (xy 45.72 146.05) (xy 45.72 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37d71858-7971-4238-a6be-f0743bee7db1) + ) + (wire (pts (xy 226.06 88.9) (xy 229.87 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37f66ee1-22a0-4ecf-adee-ea8221a6b3b1) + ) + (wire (pts (xy 153.67 109.22) (xy 156.21 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3801ebb8-89e0-4a55-8c3c-40c4fdc1555d) + ) + (wire (pts (xy 266.7 133.35) (xy 273.05 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3881d348-4b31-425d-9a0d-2fb6d4a931ce) + ) + (wire (pts (xy 213.36 123.19) (xy 218.44 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39968e9b-664b-47c7-ac16-e093da1f14e4) + ) + (wire (pts (xy 30.48 80.01) (xy 45.72 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ef67f74-34b8-4559-8a83-7be1126ad574) + ) + (wire (pts (xy 213.36 77.47) (xy 213.36 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4187afb8-ff7f-4343-b3c3-2c5a3e781598) + ) + (wire (pts (xy 111.76 139.7) (xy 111.76 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41a6b829-20a0-407f-843e-773fc6ca1ad4) + ) + (wire (pts (xy 43.18 115.57) (xy 45.72 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 423dc31f-0483-408d-acb5-e3fe651c765a) + ) + (wire (pts (xy 271.78 40.64) (xy 271.78 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42e89a1c-22d0-4d23-8cb6-d00b97b8e4ed) + ) + (wire (pts (xy 148.59 109.22) (xy 144.78 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43ff8db6-0b6a-4c43-b400-592f8e84d947) + ) + (wire (pts (xy 148.59 125.73) (xy 143.51 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4546db8f-f66c-41f7-adc3-baf16a722824) + ) + (wire (pts (xy 200.66 121.92) (xy 200.66 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45849cb8-fbd5-4971-974f-8014f8356ba5) + ) + (wire (pts (xy 215.9 109.22) (xy 213.36 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45fe3855-6d4e-4342-bb31-2182c0a1b0ac) + ) + (wire (pts (xy 30.48 128.27) (xy 45.72 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 481e80ca-eb11-43a1-97f5-06344161432a) + ) + (wire (pts (xy 247.65 27.94) (xy 240.03 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 489d5de7-d6f9-40d6-8f4a-c074592b4956) + ) + (wire (pts (xy 36.83 166.37) (xy 38.1 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48afa0b8-323e-4a61-b766-0c399895fb09) + ) + (wire (pts (xy 213.36 97.79) (xy 218.44 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48f47662-bc0e-4606-b3de-d746ec61fda4) + ) + (wire (pts (xy 45.72 82.55) (xy 43.18 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b489bf5-c282-4e37-a09a-c4db9a60e0a5) + ) + (wire (pts (xy 153.67 125.73) (xy 156.21 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b5927b3-3e3c-4b6b-a767-e24211d8849d) + ) + (wire (pts (xy 31.75 82.55) (xy 38.1 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4dbe51e4-e900-46b6-8cd8-cb8e3f714ae3) + ) + (wire (pts (xy 213.36 85.09) (xy 213.36 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ed33f91-a65b-46c1-9526-7e5cdc3d472b) + ) + (wire (pts (xy 160.02 179.07) (xy 163.83 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 513bc421-6cf9-4136-9dea-b7a808045742) + ) + (wire (pts (xy 45.72 80.01) (xy 46.99 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51f9dbd4-89ce-49be-b0fe-0588791b12b7) + ) + (wire (pts (xy 111.76 104.14) (xy 110.49 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51faefb3-b1e2-4fac-841f-62755b2b4c61) + ) + (wire (pts (xy 31.75 115.57) (xy 38.1 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 542a33fa-f1be-4d05-a2cc-f956f1396ed1) + ) + (wire (pts (xy 30.48 130.81) (xy 31.75 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54adb228-2796-409c-968c-616297eab7f6) + ) + (wire (pts (xy 128.27 59.69) (xy 134.62 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 558ab05b-f7d5-4189-8a15-1f0cce3b4bf2) + ) + (wire (pts (xy 201.93 45.72) (xy 201.93 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55a0add9-1afb-4b06-8a08-0b40a814d250) + ) + (wire (pts (xy 33.02 93.98) (xy 30.48 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5921275a-bb56-4872-b237-b60ef139aeff) + ) + (wire (pts (xy 55.88 57.15) (xy 62.23 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b981287-5530-47b4-862a-10a9b80ef00b) + ) + (wire (pts (xy 200.66 134.62) (xy 203.2 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c28236d-4a8a-4348-a23c-c30dd1ecf082) + ) + (wire (pts (xy 111.76 163.83) (xy 111.76 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c2aa6ed-e3fc-406b-a0bd-234113225982) + ) + (wire (pts (xy 111.76 114.3) (xy 111.76 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5de981c7-32a9-4c1a-a880-e0646a411c3e) + ) + (wire (pts (xy 229.87 109.22) (xy 232.41 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f27babd-1b6b-4285-9874-978f687f4b13) + ) + (wire (pts (xy 153.67 82.55) (xy 156.21 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 605b8c43-bfdb-4761-9a19-4883e2cb8c80) + ) + (wire (pts (xy 266.7 30.48) (xy 266.7 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6128f8ce-13b5-4298-b60f-c6068746cf04) + ) + (wire (pts (xy 111.76 116.84) (xy 111.76 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 615b7354-c154-4784-904c-c5b75c424a30) + ) + (wire (pts (xy 111.76 149.86) (xy 110.49 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6194ad72-59bd-40b7-bdd3-dada046e5fb5) + ) + (wire (pts (xy 45.72 143.51) (xy 48.26 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6274f7a2-3aa9-4202-b7c6-3d282518e564) + ) + (wire (pts (xy 111.76 142.24) (xy 111.76 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 642d7f13-287d-4986-90a5-2402d349d238) + ) + (wire (pts (xy 226.06 97.79) (xy 229.87 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6480f736-dca6-4518-92dc-8dccf234a12b) + ) + (wire (pts (xy 43.18 162.56) (xy 45.72 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64c0ddaa-2afb-4c07-b458-176744534e33) + ) + (wire (pts (xy 29.21 184.15) (xy 29.21 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 682b8ae1-4757-4be1-b7f2-407ec96fcbb5) + ) + (wire (pts (xy 45.72 82.55) (xy 45.72 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69382aff-ac6b-4d40-9a5c-fc4c18f2687c) + ) + (wire (pts (xy 170.18 121.92) (xy 170.18 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69e6b839-67a4-439f-9274-ec728d70212c) + ) + (wire (pts (xy 96.52 39.37) (xy 88.9 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d02ad7f-6289-42e3-9941-82cf5f2e2fc5) + ) + (wire (pts (xy 166.37 125.73) (xy 163.83 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70edeb7d-a71f-4007-b358-a7da13143ac8) + ) + (wire (pts (xy 276.86 25.4) (xy 276.86 22.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 716515ff-6d9d-44f5-a99d-ee5df09e8124) + ) + (wire (pts (xy 40.64 77.47) (xy 46.99 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7180588c-8c63-4d6a-bebf-5af39f9f2e40) + ) + (wire (pts (xy 30.48 113.03) (xy 45.72 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7be316c3-65a5-4f2e-887c-d760384eaa32) + ) + (wire (pts (xy 173.99 91.44) (xy 176.53 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7cdc98aa-8367-4a6a-a60b-4ff05120954f) + ) + (wire (pts (xy 30.48 96.52) (xy 45.72 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e003d6c-bedd-40ca-83f7-cc786abb95a7) + ) + (wire (pts (xy 30.48 115.57) (xy 31.75 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7eac45ff-cc7b-4805-8256-243e4b79ede8) + ) + (wire (pts (xy 215.9 88.9) (xy 213.36 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f45fb74-58af-49f0-9edd-aaddb9bc2173) + ) + (wire (pts (xy 266.7 40.64) (xy 266.7 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f9b0a16-3e60-44f3-8be9-08671f8cd438) + ) + (wire (pts (xy 213.36 123.19) (xy 213.36 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81120073-934e-4a14-9165-87fa3ca4f8e3) + ) + (wire (pts (xy 226.06 123.19) (xy 229.87 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81f2be1f-d864-4ea0-9963-0124c05661f1) + ) + (wire (pts (xy 163.83 91.44) (xy 166.37 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85f76232-e05d-431e-850c-687fb3b261d7) + ) + (wire (pts (xy 31.75 146.05) (xy 38.1 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86f46f15-3e30-4acc-8032-cac9ebd017bf) + ) + (wire (pts (xy 111.76 96.52) (xy 111.76 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 874d9ddd-dabe-441a-8d43-5ce63e6a61e8) + ) + (wire (pts (xy 111.76 124.46) (xy 110.49 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87f35f68-35bc-4c38-be0c-ab8c7930a479) + ) + (wire (pts (xy 203.2 88.9) (xy 200.66 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89528bda-1023-4876-8445-4dacaa6c505e) + ) + (wire (pts (xy 148.59 91.44) (xy 144.78 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c338d8a-0aab-418b-870a-d605465a3daa) + ) + (wire (pts (xy 134.62 26.67) (xy 123.19 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d71a30e-fedb-4752-bec5-9d9429a99acb) + ) + (wire (pts (xy 31.75 99.06) (xy 38.1 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e6102d2-e0c6-4b0c-b2b7-a15a52aa07a8) + ) + (wire (pts (xy 210.82 77.47) (xy 213.36 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8eab04bf-5039-4915-9410-3389adfef334) + ) + (wire (pts (xy 92.71 168.91) (xy 95.25 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f5471c5-b3fb-4249-a903-85638ce80be4) + ) + (wire (pts (xy 27.94 66.04) (xy 27.94 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fc56e8b-5c9d-4df5-8fcd-b6d3f0a75b28) + ) + (wire (pts (xy 36.83 171.45) (xy 43.18 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fd56392-1e8b-441e-a220-c314d6b98a6e) + ) + (wire (pts (xy 200.66 109.22) (xy 200.66 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90219a64-f97c-4cf7-987a-2d663c063cd4) + ) + (wire (pts (xy 128.27 52.07) (xy 134.62 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 905b06f4-b76e-43e7-930e-f963db2c365c) + ) + (wire (pts (xy 153.67 100.33) (xy 156.21 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93703a5d-da17-40b8-8e55-4b1dd4219574) + ) + (wire (pts (xy 163.83 109.22) (xy 166.37 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93922b9a-883d-4a29-bbf0-07f997ffca8a) + ) + (wire (pts (xy 166.37 144.78) (xy 163.83 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94ad46ed-e6a2-4cf2-aa01-856410d86c60) + ) + (wire (pts (xy 271.78 30.48) (xy 271.78 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95f826d6-8b43-4863-b4e0-3e0536a3146d) + ) + (wire (pts (xy 229.87 77.47) (xy 229.87 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a71c525-231f-4417-b6a3-8f6058ac5c01) + ) + (wire (pts (xy 271.78 55.88) (xy 271.78 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bc4a831-51b6-4789-91a0-c547f989adba) + ) + (wire (pts (xy 276.86 30.48) (xy 276.86 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cc17c45-f8a2-4be6-95ae-f89b20270648) + ) + (wire (pts (xy 38.1 162.56) (xy 38.1 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a22c29b0-f408-485a-845a-9790e4bc914d) + ) + (wire (pts (xy 111.76 144.78) (xy 111.76 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a240fd28-a0e1-48d0-a418-5d29b22edccf) + ) + (wire (pts (xy 43.18 146.05) (xy 45.72 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a24bedf7-8da9-4f70-ad46-e459a3157182) + ) + (wire (pts (xy 229.87 88.9) (xy 232.41 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3ea1856-4b87-4bb2-b599-97cfab640ca7) + ) + (wire (pts (xy 111.76 163.83) (xy 111.76 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a52ba369-d997-4803-8021-5264e59bfb64) + ) + (wire (pts (xy 200.66 134.62) (xy 200.66 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a60a1913-5b6b-40c4-80a4-11ed7fc31b73) + ) + (wire (pts (xy 38.1 166.37) (xy 48.26 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6af1206-237f-4f74-a84c-e249f8af0db0) + ) + (wire (pts (xy 30.48 82.55) (xy 31.75 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa583dc1-8d82-4c70-896a-63e26d12b338) + ) + (wire (pts (xy 111.76 137.16) (xy 111.76 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad53563d-5c87-4c03-b3ff-141830a4b43a) + ) + (wire (pts (xy 27.94 27.94) (xy 27.94 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae00a458-5f9b-43ae-8155-b78f0d2b2e04) + ) + (wire (pts (xy 173.99 109.22) (xy 176.53 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afb6a528-ee56-4e3c-bd9c-4b0dc750e514) + ) + (wire (pts (xy 198.12 38.1) (xy 201.93 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b05234ce-bc23-49b2-90c6-5a976ccced1e) + ) + (wire (pts (xy 45.72 130.81) (xy 45.72 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b08f7a43-3f33-4491-968e-c54d8bb2e057) + ) + (wire (pts (xy 148.59 82.55) (xy 144.78 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1bb86bb-210f-4cfb-999f-d3b037371bf1) + ) + (wire (pts (xy 213.36 97.79) (xy 213.36 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b269d787-f136-47a4-8dba-1744df484987) + ) + (wire (pts (xy 226.06 134.62) (xy 229.87 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b40ecda0-07bf-42de-8acf-fc69e7c2b7f2) + ) + (wire (pts (xy 43.18 130.81) (xy 45.72 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b46af4a2-8d2f-48c4-9b4e-83b3f4919566) + ) + (wire (pts (xy 27.94 35.56) (xy 27.94 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6667183-5772-44b3-be01-8a4f0714e37a) + ) + (wire (pts (xy 92.71 171.45) (xy 95.25 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6b32a1d-68e3-4df6-9a94-f6c30caa3c77) + ) + (wire (pts (xy 170.18 140.97) (xy 170.18 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b81aaedf-d9b2-4e42-9d83-5a8ff6dbba63) + ) + (wire (pts (xy 210.82 134.62) (xy 213.36 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9bf524e-4dce-41a0-b307-3d2d3e9de655) + ) + (wire (pts (xy 226.06 109.22) (xy 229.87 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb2f1284-4e3e-4664-a3a6-6103c0cc0b03) + ) + (wire (pts (xy 226.06 77.47) (xy 229.87 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bda5abea-409a-4ac5-900c-24f06e59b528) + ) + (wire (pts (xy 46.99 96.52) (xy 45.72 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfa974a4-c625-4ae4-8e85-71443001ed60) + ) + (wire (pts (xy 153.67 144.78) (xy 156.21 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0634585-7714-49c7-b6f9-0bda42fd77aa) + ) + (wire (pts (xy 40.64 125.73) (xy 48.26 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c18463de-21fd-4c95-bf00-bb7e3572e298) + ) + (wire (pts (xy 163.83 168.91) (xy 163.83 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1b14e5d-9d5b-41f9-b585-b45272f1fe02) + ) + (wire (pts (xy 45.72 115.57) (xy 45.72 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1d4793e-189d-45de-a9b2-823c232cb0a5) + ) + (wire (pts (xy 33.02 110.49) (xy 30.48 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4f038b3-a525-460b-876a-ef54331e696f) + ) + (wire (pts (xy 81.28 168.91) (xy 85.09 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61dbbe0-e115-4016-af24-c0f3f0ea91a9) + ) + (wire (pts (xy 111.76 91.44) (xy 104.14 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61e452f-3606-4934-8409-0b6eb62e88a6) + ) + (wire (pts (xy 200.66 77.47) (xy 203.2 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c73fb9a5-2cca-4d54-be48-2643866692a6) + ) + (wire (pts (xy 33.02 140.97) (xy 30.48 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c83963e6-dc18-404e-8364-d5de27dd8e83) + ) + (wire (pts (xy 210.82 88.9) (xy 213.36 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c984a4fe-50ba-4ca9-8276-92e7707f24cd) + ) + (wire (pts (xy 111.76 171.45) (xy 111.76 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc2f3ca0-b668-4a3d-9e44-c83238262c06) + ) + (wire (pts (xy 134.62 57.15) (xy 128.27 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc771ade-a54b-4855-bd81-7918b041781a) + ) + (wire (pts (xy 200.66 144.78) (xy 200.66 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd39ab1f-8486-4c79-9e25-bad60dfb4f5d) + ) + (wire (pts (xy 266.7 22.86) (xy 266.7 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d08f76b8-f3b1-4484-86f2-f5322863192c) + ) + (wire (pts (xy 43.18 99.06) (xy 45.72 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2bec24e-e636-4914-a8bf-9a0d7841bc58) + ) + (wire (pts (xy 148.59 100.33) (xy 144.78 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5f0c3c0-879f-4665-86e7-3c5ebc99390c) + ) + (wire (pts (xy 30.48 146.05) (xy 31.75 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6985dd7-da44-4b72-b53a-9a8d0695621b) + ) + (wire (pts (xy 111.76 111.76) (xy 111.76 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d72e0b47-ff54-4f38-9ffc-f79f58966a2c) + ) + (wire (pts (xy 40.64 110.49) (xy 48.26 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8a87775-657f-489f-8bc1-2118239e2e55) + ) + (wire (pts (xy 27.94 44.45) (xy 27.94 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8d55ce3-ec2d-4878-950c-0aeab86c2026) + ) + (wire (pts (xy 111.76 121.92) (xy 111.76 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbd73163-fe3c-4e4c-8c6d-dbb589294855) + ) + (wire (pts (xy 111.76 176.53) (xy 111.76 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc39a36f-a0cc-43e5-9f69-58e6404ef62e) + ) + (wire (pts (xy 30.48 143.51) (xy 45.72 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de8fe617-f188-4638-8160-b3a7cfd1d517) + ) + (wire (pts (xy 97.79 24.13) (xy 88.9 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e107c9cd-719f-46c7-87e3-a09a4f7d77c0) + ) + (wire (pts (xy 111.76 166.37) (xy 111.76 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1161ac2-e8c7-4d10-80dc-573a4fd95af3) + ) + (wire (pts (xy 153.67 91.44) (xy 156.21 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1c41dfa-3ff6-4f2d-9211-3c4844c68c26) + ) + (wire (pts (xy 111.76 99.06) (xy 111.76 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1d6b9dc-9829-4dce-9325-7fbbc73bc2a6) + ) + (wire (pts (xy 92.71 139.7) (xy 93.98 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e202d3a6-6408-495e-853c-897666017ddd) + ) + (wire (pts (xy 201.93 48.26) (xy 198.12 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e29ca938-c99a-4c80-bfdb-eba8ecb008a4) + ) + (wire (pts (xy 40.64 140.97) (xy 48.26 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5bc7cc5-cce4-415a-9319-bc16ecb6da04) + ) + (wire (pts (xy 200.66 109.22) (xy 203.2 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6da9911-6e48-47b5-b018-d46797a1215d) + ) + (wire (pts (xy 111.76 173.99) (xy 111.76 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e76c0826-7e99-4e7a-b43b-56fe54da6c60) + ) + (wire (pts (xy 173.99 52.07) (xy 180.34 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8b5a4eb-b0ee-4789-af8a-c4ba4aa385e2) + ) + (wire (pts (xy 36.83 173.99) (xy 43.18 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e97f9141-46cb-4dc1-ac5d-a70300e01e4a) + ) + (wire (pts (xy 83.82 161.29) (xy 82.55 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec8fc48b-4d53-457f-903b-7ddcf5b2f467) + ) + (wire (pts (xy 271.78 25.4) (xy 271.78 22.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecd705b8-cf73-47ea-aa37-2e0aca8029b1) + ) + (wire (pts (xy 111.76 147.32) (xy 111.76 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb7cc13-ec5a-47e0-b7e1-e981a94c9992) + ) + (wire (pts (xy 93.98 139.7) (xy 93.98 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eebc19a1-0c6c-46f8-9801-4a98cecb4735) + ) + (wire (pts (xy 81.28 139.7) (xy 85.09 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef48f1c0-8253-4e4d-83d0-1f5b88f3f704) + ) + (wire (pts (xy 276.86 40.64) (xy 276.86 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef83325f-6876-42af-8fb4-082fa7bcd367) + ) + (wire (pts (xy 163.83 179.07) (xy 163.83 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f01ca74d-2192-49d7-a9fe-f0e22c82297e) + ) + (wire (pts (xy 48.26 128.27) (xy 45.72 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2ac82fe-1903-4089-b80e-df063ae59e48) + ) + (wire (pts (xy 81.28 171.45) (xy 85.09 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5531c92-aba2-48d6-9062-da0b246f65ee) + ) + (wire (pts (xy 213.36 77.47) (xy 218.44 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f57e6266-1752-4bf3-8563-1a28c4173e32) + ) + (wire (pts (xy 173.99 82.55) (xy 176.53 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6393eab-5a2a-4369-a629-940ffe70adda) + ) + (wire (pts (xy 99.06 93.98) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f68dd51c-b0ca-453c-9bae-98d601e06160) + ) + (wire (pts (xy 111.76 158.75) (xy 111.76 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6e195a0-5075-4801-a70b-bbba3a11b779) + ) + (wire (pts (xy 31.75 130.81) (xy 38.1 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7415845-f63d-4c30-ab17-0a9c9c9188e2) + ) + (wire (pts (xy 111.76 104.14) (xy 111.76 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f89517ac-9a13-42a3-8dd0-4a4a2cb4e611) + ) + (wire (pts (xy 154.94 179.07) (xy 149.86 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8fcbd68-36a3-4325-add6-8cc5f5209ecd) + ) + + (text "ESP32 - boot1" (at 213.36 115.57 0) + (effects (font (size 1.524 1.524)) (justify left bottom)) + (uuid 31ac60d4-03d3-4090-af9b-0a67dbc87d53) + ) + (text "Selects 5/3V3 board variant\n(pull-up resistors, DHT power, ...)" + (at 243.84 128.27 0) + (effects (font (size 1.524 1.524)) (justify left bottom)) + (uuid 33551d92-a181-4913-808e-9907c78943b3) + ) + (text "ESP32 - boot2" (at 213.36 140.97 0) + (effects (font (size 1.524 1.524)) (justify left bottom)) + (uuid da975045-4882-4ddf-9891-9d31ced69f45) + ) + + (label "D+" (at 39.37 171.45 0) + (effects (font (size 1.524 1.524)) (justify left bottom)) + (uuid 7f076b76-283c-4f14-8aaf-ef7011dcfd8f) + ) + (label "D-" (at 39.37 173.99 0) + (effects (font (size 1.524 1.524)) (justify left bottom)) + (uuid c20a8713-7558-4ef0-a01f-f0ae4c3562f9) + ) + + (global_label "A3" (shape input) (at 134.62 39.37 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 0be1e4b1-f3a9-418d-a453-34053187490a) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D5" (shape input) (at 173.99 41.91 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 0cd90343-c345-4f47-826a-4a97fdc5060c) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D7" (shape input) (at 144.78 82.55 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 0d683db3-a1a2-4faf-a6a6-44b393ef3456) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A1" (shape input) (at 143.51 144.78 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 0fa81ca4-857b-4c6e-85c2-88f5632adfa2) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D10" (shape input) (at 48.26 125.73 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 109fdebe-775b-4db4-883a-343ba88c6103) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A4" (shape input) (at 240.03 22.86 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 11be41df-2a80-4794-8a40-162b12719d6f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 200.66 121.92 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 13658b75-aa1a-40ce-9dff-8fffe961e395) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D11" (shape input) (at 48.26 140.97 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 14cc63d0-1860-422f-a016-e825caa48c42) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A3" (shape input) (at 81.28 137.16 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 17d51e88-1535-4066-b7b6-5ff1927ee662) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D12" (shape input) (at 88.9 29.21 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 1879d800-4908-4d8a-aa05-2f0784efa95f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D10" (shape input) (at 27.94 27.94 90) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 191ec2ca-0914-461c-bf11-2cd284a3085e) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 200.66 147.32 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 1b888b9c-a9f1-4f9f-bc02-8bfe662f40e5) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A0" (shape input) (at 143.51 125.73 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 1c214a23-ca51-450a-b653-d6e4a26dc8c7) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D9" (shape input) (at 48.26 110.49 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 1cea9896-5521-4387-88c5-7404b250aaa8) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D9" (shape input) (at 88.9 44.45 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 1e63c723-32ef-456c-947f-50d725d6063f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D5" (shape input) (at 46.99 77.47 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 234635eb-dc98-4a95-9eaf-5b38fa2ff901) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VCC_SERVO" (shape input) (at 48.26 166.37 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 251157cf-259f-4ca8-80a1-b4132dea8fa8) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RST" (shape input) (at 173.99 54.61 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 257edde3-e179-4f1f-9fbf-4df8440d50b5) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "AREF" (shape input) (at 240.03 25.4 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 2702132c-ecec-4a67-b192-6ab90c850cca) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D8" (shape input) (at 144.78 91.44 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 29cf855d-719f-4635-bd91-b4c8c1df37aa) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A3" (shape input) (at 201.93 60.96 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 2b5656be-c010-42b7-8e4f-bb1db262786f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D7" (shape input) (at 173.99 36.83 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 2fe24108-5a23-43fb-9e4a-1af60cf12431) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RST" (shape input) (at 201.93 35.56 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 3053b216-115c-4ab8-a246-93eec7b6632f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 81.28 134.62 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 306d8ed4-6d66-4e24-9231-14271c1b0e29) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A6" (shape input) (at 62.23 54.61 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 337e846c-3495-4cae-aa80-8ae959c3a46e) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D1" (shape input) (at 95.25 171.45 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 34395bc3-aeb8-425b-9d8f-00c13381386f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 200.66 77.47 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 34b9f1f8-9d38-4dd1-bb02-d431e1e438b0) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D4" (shape input) (at 195.58 134.62 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 3782913d-e2f6-4533-bfa4-56ee04941105) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D1" (shape input) (at 173.99 59.69 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 39724e52-02c9-411e-936c-95a0266da5a2) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D3" (shape input) (at 195.58 109.22 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 42941d22-be03-491e-add4-bea02af90325) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A4" (shape input) (at 62.23 49.53 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 4f8be04d-f3d7-45cd-9dbf-1c63b8b96142) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D8" (shape input) (at 173.99 34.29 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 52094e43-49ae-49d3-8a01-1597f6be3a84) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D2" (shape input) (at 173.99 49.53 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 52bd526d-f64d-433a-b9c2-22c558be95d6) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RST" (shape input) (at 134.62 54.61 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 532c1c5b-0be8-4ebd-9829-79765b71898f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VCC_SERVO" (shape input) (at 48.26 143.51 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 536a4e15-307b-4132-914a-dcc429e925e2) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A2" (shape input) (at 62.23 44.45 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 53705e21-467e-4467-a9ef-fbd04f73e16d) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D10" (shape input) (at 240.03 38.1 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 58db7e68-cd21-4f8c-a9ed-a59f96ea5a3e) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 170.18 138.43 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 5a6d419a-0d6b-4444-8af7-91b3e47600b1) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D9" (shape input) (at 173.99 31.75 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 5a70bcd7-562d-46ca-b8f9-7013703d4d2d) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D0" (shape input) (at 88.9 34.29 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 5ae44e5f-9e44-4d9a-b4de-c7ee0fbe3c74) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D10" (shape input) (at 88.9 41.91 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 5d0eac74-f5f4-49b9-89eb-bf264167b57a) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 83.82 161.29 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 60d82195-8fec-4d3b-a03c-2121fa37a3c5) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A2" (shape input) (at 134.62 36.83 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 61114f6b-e24f-498a-b515-9813a4c53744) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D3" (shape input) (at 88.9 59.69 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 622b5100-909a-4975-a3da-1cb4b3c178fb) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 260.35 135.89 270) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 6575233f-7af2-4b6e-92ef-ca026a9ff73b) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A7" (shape input) (at 134.62 49.53 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 6aca96cd-6603-414a-a9c7-3bf28278da26) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D3" (shape input) (at 240.03 58.42 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 6ecc4240-1f9b-445e-ae66-3216c974dc78) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A0" (shape input) (at 201.93 53.34 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 6faf1147-a1c0-48fb-8021-ce0ace592754) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RST" (shape input) (at 57.15 26.67 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 7003a06d-8ec3-463b-a9d4-c6fef0d5fcc7) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D5" (shape input) (at 88.9 54.61 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 71c05b17-ae21-40a4-8fd6-ffc64de6f40f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D2" (shape input) (at 195.58 88.9 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 75e364c5-43d1-4c61-9936-4dcdb9c40ede) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D12" (shape input) (at 240.03 33.02 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 785aa593-68ac-48a5-8a94-2c5ea7b6b041) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A4" (shape input) (at 201.93 63.5 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 795befeb-a37c-4520-9b48-4a9160f0984f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D7" (shape input) (at 88.9 49.53 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 7ae20673-0afe-48b4-b178-c3710e1b1ae1) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VCC_SERVO" (shape input) (at 46.99 96.52 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 7bd16432-51de-48c1-855f-671df123a699) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D8" (shape input) (at 88.9 46.99 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 7e3677d1-c9c4-4c56-ad1f-e703a710b8b0) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D5" (shape input) (at 266.7 22.86 90) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 7e755fb3-57fb-417f-88b3-aeeba08b5068) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D1" (shape input) (at 88.9 31.75 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 8014cc53-16cb-44fd-9632-b6002ce215d4) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A5" (shape input) (at 62.23 52.07 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 804dd816-ab83-4b61-916a-2ff3d8637b10) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VCC_SERVO" (shape input) (at 46.99 80.01 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 829b6271-4504-4394-8719-37e9cf06c3c9) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 170.18 119.38 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 8399a05e-abbd-48b2-b6b3-a4226713a335) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D4" (shape input) (at 173.99 44.45 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 85b2273d-8f02-49eb-8c3a-3233a6ed3c3f) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "AREF" (shape input) (at 134.62 29.21 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 86f53afa-c68d-4aff-adda-3a848b264072) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 163.83 166.37 90) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 89a22f07-e505-4000-b001-dcf3c221d5e7) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A3" (shape input) (at 265.43 77.47 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 8a55e81b-814b-4f19-888b-9a90b198f0f1) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A0" (shape input) (at 62.23 39.37 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 8b3bfda0-9b7f-4c46-9a47-af0c157b2d24) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D9" (shape input) (at 240.03 40.64 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 8b4f8576-5359-4edc-bf26-67154a3b1659) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D12" (shape input) (at 144.78 100.33 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 8c1003e8-5ce8-4112-a802-50be377605fb) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D1" (shape input) (at 240.03 63.5 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 8f695453-6c28-40db-93ab-6aa803802aba) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D6" (shape input) (at 173.99 39.37 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid 92ea34d8-522a-4e73-b909-70ac91074c28) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A7" (shape input) (at 62.23 59.69 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid 9453933e-c3a8-4da0-b0d5-2aaef0eccaa5) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A1" (shape input) (at 62.23 41.91 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid a1b2510a-545d-467c-8444-2c25351b0c49) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D4" (shape input) (at 88.9 57.15 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid a24eac47-7b98-4756-91b9-86920f78543d) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D11" (shape input) (at 173.99 26.67 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid a4dc4403-1a24-49f4-a16f-40b54df4d9cc) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF_U" (shape input) (at 265.43 74.93 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid a58b39df-79ff-42dd-b8d1-21dd12593b8a) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D0" (shape input) (at 95.25 168.91 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid a6a97c72-4580-4aed-b61a-8cde6d84a06e) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D11" (shape input) (at 240.03 35.56 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid a76d37ee-5c97-436a-8925-92f76e16b2fb) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D13" (shape input) (at 240.03 30.48 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid a9990ff4-1417-4001-b25c-b6b25a42cac8) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D4" (shape input) (at 240.03 55.88 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid abf3d2ce-532d-4684-bdde-f630cf1c1f09) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D6" (shape input) (at 271.78 22.86 90) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid b03f0ba4-5fe8-4c96-9f72-5a7a0b01e7e6) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A1" (shape input) (at 201.93 55.88 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid b21fd73d-85ea-4c2c-919c-0eece0e09908) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D12" (shape input) (at 173.99 24.13 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid b3f35ada-8407-4699-8b43-cf9438037209) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D8" (shape input) (at 240.03 43.18 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid b4fb9814-38bc-4886-aed8-42911b766100) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D7" (shape input) (at 240.03 48.26 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid b7610e17-1e38-4c1f-bdb2-9e1e6bfc0f0b) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A5" (shape input) (at 201.93 66.04 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid bee049f7-d199-4488-95b7-d7fad0d7c3c9) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A4" (shape input) (at 134.62 41.91 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid c389b8be-d049-4838-a433-8872dcef1fc8) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A0" (shape input) (at 134.62 31.75 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid c3be9cde-1927-428d-a398-92c2e81bb683) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D9" (shape input) (at 27.94 67.31 270) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid c4115eb4-f332-4b8c-a106-984e181c0a24) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D0" (shape input) (at 240.03 66.04 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid c83ee868-e372-43c4-89ad-beaa279d5b46) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D0" (shape input) (at 173.99 57.15 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid c8de6f27-212a-4249-ae28-feda17d3e682) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D3" (shape input) (at 173.99 46.99 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid ca008f10-ee48-47ad-ae5c-7bccf64cd79c) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D5" (shape input) (at 240.03 53.34 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid cc0bc250-c9bb-4c55-8396-e3383d99ee9a) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A5" (shape input) (at 134.62 44.45 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid cd9b0cb1-1ce6-438a-8305-34ef627e9449) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF" (shape input) (at 111.76 88.9 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid ceb80697-77d7-4181-a2a9-bd5abecfe683) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A2" (shape input) (at 201.93 58.42 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid d0bb1454-998b-4270-aa58-59888f7a8b0a) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A5" (shape input) (at 240.03 20.32 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid d7f78bd1-7093-4300-9b06-46dcb0228d21) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A2" (shape input) (at 149.86 179.07 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid d8409aa4-c0d2-4b51-8afe-19c96a4d5cf2) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D2" (shape input) (at 88.9 62.23 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid e507d70c-fd07-455f-b53c-ba0245e40fce) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D6" (shape input) (at 88.9 52.07 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid e5c1a1ce-4c6d-4911-92e1-570acda8ba59) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D6" (shape input) (at 46.99 93.98 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid e9eb81e7-eac1-4b59-ac5c-4aa1ca9d6caa) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VCC_SERVO" (shape input) (at 48.26 128.27 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid eb6d928f-e01f-4ce3-a8b1-f0e9b284226a) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D13" (shape input) (at 144.78 109.22 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid eba5285f-3a5b-4578-a277-7af55f011e63) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D13" (shape input) (at 88.9 26.67 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid ec49b7bc-6870-4d56-9f54-8439fe1c5305) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D10" (shape input) (at 173.99 29.21 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid eccb0a3a-fc7a-4ded-94fa-b84c16589564) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A6" (shape input) (at 134.62 46.99 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid ed8526ce-e421-4be9-99f4-a9542b3c7b9b) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A3" (shape input) (at 62.23 46.99 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid edaf47af-e4c9-4ea1-adea-ed6397d04366) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D11" (shape input) (at 276.86 22.86 90) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid edd9edcb-c1db-4190-a918-7dc0055aeaea) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D13" (shape input) (at 134.62 24.13 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid ee98db35-51ec-443d-ad0b-75d7efe07726) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D11" (shape input) (at 88.9 36.83 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid ef9daa52-a840-4826-b378-e26677265e67) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "IOREF" (shape input) (at 201.93 33.02 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid f2c99034-94fd-43fd-9bd4-bf9226758259) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "A1" (shape input) (at 134.62 34.29 180) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify right)) + (uuid f2fd83ac-ae1c-43a4-88e1-ac97e67721bb) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D6" (shape input) (at 240.03 50.8 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid fbd6770e-501f-4a5e-9902-2f943aeb92f3) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "D2" (shape input) (at 240.03 60.96 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid fc8ed3c3-c6e8-44a7-9881-e1b5b0a8d4d0) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VCC_SERVO" (shape input) (at 48.26 113.03 0) (fields_autoplaced) + (effects (font (size 1.524 1.524)) (justify left)) + (uuid fcc7ec7a-56bf-4189-8504-93bcb07b581b) + (property "Referencias entre hojas" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:arduino_nano-yaqwsx") (at 154.94 41.91 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2ed37) + (property "Reference" "U1" (id 0) (at 154.94 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "arduino_nano" (id 1) (at 154.94 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "yaqwsx:arduino_nano" (id 2) (at 147.32 35.56 0) + (effects (font (size 1.524 1.524)) hide) + ) + (property "Datasheet" "" (id 3) (at 147.32 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 224454e3-27f5-45eb-9e79-8c3b53d1f142)) + (pin "10" (uuid b246b4fa-1554-4703-b9c4-e4938dee2c5b)) + (pin "11" (uuid 1411ea02-1902-4b04-870e-3c49b09deb71)) + (pin "12" (uuid 88e0c1b2-b1f6-4a9d-901b-a6cc4fe6520c)) + (pin "13" (uuid 4b448bb4-3fe8-49de-96a1-8a2138c1e165)) + (pin "14" (uuid 1da4e73e-e505-4cd2-83c0-f1dfdf281935)) + (pin "15" (uuid 434d92a2-0a3b-4539-939b-3f880fa329f2)) + (pin "16" (uuid 13d9e966-74c4-44b3-818e-887d0f73c089)) + (pin "17" (uuid d5c425da-0aaf-4a8a-ba69-092993b922f3)) + (pin "18" (uuid 6ca73735-26cf-4218-b498-f7ab926f9f3e)) + (pin "19" (uuid 618bffe2-48c8-4cf9-9888-759d079cadfc)) + (pin "2" (uuid 43ed0861-abe7-430e-9aa6-379e3903b5ca)) + (pin "20" (uuid 4cc16475-d996-41d6-8e46-40311d9e4616)) + (pin "21" (uuid 0ac2d9b9-8956-4342-94f8-03300d683d35)) + (pin "22" (uuid eed6f9f5-fa2d-456a-8624-bf15d078086e)) + (pin "23" (uuid 4274da6a-c0e7-4777-b110-43cbb1e500e4)) + (pin "24" (uuid 97f8c6aa-6fc8-4605-bc18-367358d6d056)) + (pin "25" (uuid f015ea2f-e8fe-4d87-beb5-0751eaabe641)) + (pin "26" (uuid 4d3fcb1c-fb2e-4085-a68c-2bd799952970)) + (pin "27" (uuid 83b08645-f8c9-49b5-b580-49e67f7578d2)) + (pin "28" (uuid 2de24d8e-938e-427e-b5dc-ef1961a638ef)) + (pin "29" (uuid 6c34669a-fff2-4257-b436-9ebfa0c2b1d7)) + (pin "3" (uuid 0364a4d0-e1e3-4edf-ae90-40afb66a4b7c)) + (pin "30" (uuid a85c19ed-6181-4d0c-9a33-b74016be663f)) + (pin "4" (uuid 1ad424ca-ce65-47a6-b411-8f544ea65c1e)) + (pin "5" (uuid af8c43d8-1027-4b2b-bd51-dccb4bb05044)) + (pin "6" (uuid a4930512-c7ec-46a3-8ed7-3b1f3c1cacbb)) + (pin "7" (uuid 08a48d75-46b3-4ee8-8e4f-63f991ee7430)) + (pin "8" (uuid 7cee96da-c737-4eb4-863d-eb294d8bb4d5)) + (pin "9" (uuid c3e45d41-2137-410c-8e3e-657921b8d976)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:arduino_uno-yaqwsx") (at 220.98 43.18 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2ee30) + (property "Reference" "U2" (id 0) (at 220.98 17.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "arduino_uno" (id 1) (at 220.98 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "yaqwsx:arduino_uno_small_pads" (id 2) (at 215.9 53.34 0) + (effects (font (size 1.524 1.524)) hide) + ) + (property "Datasheet" "" (id 3) (at 215.9 53.34 0) + (effects (font (size 1.524 1.524)) hide) + ) + (pin "1" (uuid e8ba0f9d-5acc-4631-9b78-736fd3375df3)) + (pin "10" (uuid c6f5ec39-1d80-4ed0-912c-60ad52f12c07)) + (pin "11" (uuid 0850f926-da44-4600-8681-2cdfb54f0aac)) + (pin "12" (uuid 1d52291e-4d27-452d-9001-73a11c1e57a6)) + (pin "13" (uuid f0f4ea26-baf5-4f7d-9a52-8c9d2b76b83e)) + (pin "14" (uuid 0a1a64f7-9433-49eb-a5be-5e568275d0f2)) + (pin "15" (uuid 8347d3db-a79d-4849-bdb9-4bd79b98877c)) + (pin "16" (uuid f279041b-fd8b-4069-bcad-e75278451935)) + (pin "17" (uuid 3c2d4709-3fa5-43e5-8abb-7e612d625e89)) + (pin "18" (uuid e47ecfd5-308a-4660-a606-a8588a8b36a8)) + (pin "19" (uuid 22997500-30be-4273-bf73-a237a9c15df4)) + (pin "2" (uuid e266c562-86af-427c-8917-7777deed0e25)) + (pin "20" (uuid b5a5b394-c3e3-4d66-b557-bf25c07b3bb4)) + (pin "21" (uuid 0975cc5b-4f0e-450e-ae90-60abdda1f06c)) + (pin "22" (uuid 149da8d3-59dc-4780-a392-87ecbbb70e66)) + (pin "23" (uuid 13c3e8f4-2dc1-48ce-96df-407b2384b12e)) + (pin "24" (uuid 1d5b7cfe-f526-4377-b4ac-f7a84f74503a)) + (pin "25" (uuid 44f545d2-9e1f-43b2-84f3-ddf95c37ce4c)) + (pin "26" (uuid efe801ee-6048-496d-a12e-11f48b52a3f2)) + (pin "27" (uuid 1ee3f629-ec73-44ad-81ab-e284b72690a1)) + (pin "28" (uuid 3e44e189-45cc-4fb5-883b-aa184b4d0443)) + (pin "29" (uuid a1b02dcd-1bd9-4877-85f6-e3148f82993c)) + (pin "3" (uuid 2db1f016-ba2a-4143-8049-60e9a0feee1a)) + (pin "30" (uuid 811adbe3-2043-48f6-9361-7c7055e35551)) + (pin "31" (uuid fbb12ee9-8039-48df-a139-de70122ced63)) + (pin "32" (uuid e0d7a54d-d623-4627-a4b4-05aa23da42ac)) + (pin "4" (uuid 5b4db438-dcfe-44c3-b360-cdadfc62b43e)) + (pin "5" (uuid a1a0e280-9126-4a0a-b282-c937a3bcb27b)) + (pin "6" (uuid f9c6e39f-ade4-4196-ab69-3188acc4afe7)) + (pin "7" (uuid 7b0118ce-5d31-4c5f-a965-be736fa299cd)) + (pin "8" (uuid 0b163ddb-d7f3-41cf-a61f-acbb14afa6f5)) + (pin "9" (uuid 98be82e1-bf78-4627-aa52-c77b3ea0bd56)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+3V3") (at 123.19 26.67 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f0de) + (property "Reference" "#PWR01" (id 0) (at 127 26.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 119.634 26.67 0)) + (property "Footprint" "" (id 2) (at 123.19 26.67 0)) + (property "Datasheet" "" (id 3) (at 123.19 26.67 0)) + (pin "1" (uuid b506aee1-ae81-4f5d-b538-61c4d8ba867b)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+3V3") (at 198.12 38.1 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f0f6) + (property "Reference" "#PWR02" (id 0) (at 201.93 38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 194.8688 37.719 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 38.1 0)) + (property "Datasheet" "" (id 3) (at 198.12 38.1 0)) + (pin "1" (uuid 89660298-d05c-412e-952a-b5b20c017424)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+5V") (at 128.27 52.07 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f11d) + (property "Reference" "#PWR03" (id 0) (at 132.08 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 125.0188 51.689 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 128.27 52.07 0)) + (property "Datasheet" "" (id 3) (at 128.27 52.07 0)) + (pin "1" (uuid 1c828c31-9f6b-4fca-a27b-931743f356d0)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 128.27 57.15 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f135) + (property "Reference" "#PWR04" (id 0) (at 121.92 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 125.0188 57.277 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 128.27 57.15 0)) + (property "Datasheet" "" (id 3) (at 128.27 57.15 0)) + (pin "1" (uuid 10ab0f39-7253-4fba-a776-48787d10b6a1)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:VCC") (at 128.27 59.69 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f14d) + (property "Reference" "#PWR05" (id 0) (at 132.08 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "VCC" (id 1) (at 127.3302 62.1792 90)) + (property "Footprint" "" (id 2) (at 128.27 59.69 0)) + (property "Datasheet" "" (id 3) (at 128.27 59.69 0)) + (pin "1" (uuid 1cfbf2de-0b8c-46cf-ad32-a6306a0e8bd5)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 180.34 52.07 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f1d1) + (property "Reference" "#PWR06" (id 0) (at 186.69 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 183.5912 51.943 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 180.34 52.07 0)) + (property "Datasheet" "" (id 3) (at 180.34 52.07 0)) + (pin "1" (uuid 76d60ccc-c2ab-4dce-be0d-3df597cbeb83)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 201.93 43.18 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f21b) + (property "Reference" "#PWR07" (id 0) (at 195.58 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 198.6788 43.307 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 201.93 43.18 0)) + (property "Datasheet" "" (id 3) (at 201.93 43.18 0)) + (pin "1" (uuid ac297af4-61c6-47e3-9976-b8235b3c89a2)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 247.65 27.94 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f238) + (property "Reference" "#PWR08" (id 0) (at 254 27.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 250.9012 27.813 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 247.65 27.94 0)) + (property "Datasheet" "" (id 3) (at 247.65 27.94 0)) + (pin "1" (uuid faf09afe-77c6-425a-a4fd-eb7e894f9746)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+5V") (at 198.12 40.64 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f25b) + (property "Reference" "#PWR09" (id 0) (at 201.93 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 194.8688 40.259 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 40.64 0)) + (property "Datasheet" "" (id 3) (at 198.12 40.64 0)) + (pin "1" (uuid b85dcd5a-86e5-427e-98ea-6f0bde724d44)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:VCC") (at 198.12 48.26 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f27c) + (property "Reference" "#PWR010" (id 0) (at 201.93 48.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "VCC" (id 1) (at 194.8942 47.8028 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 48.26 0)) + (property "Datasheet" "" (id 3) (at 198.12 48.26 0)) + (pin "1" (uuid 32e28992-93ab-471a-b526-92e381feec54)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:PIEZO-yaqwsx") (at 27.94 53.34 90) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f3a6) + (property "Reference" "" (id 0) (at 34.29 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "PIEZO" (id 1) (at 21.59 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "yaqwsx:piezo_12" (id 2) (at 27.94 53.34 0) + (effects (font (size 1.524 1.524)) hide) + ) + (property "Datasheet" "" (id 3) (at 27.94 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5bfa6b91-3b4f-4eeb-bfe5-0c4eba0a6414)) + (pin "2" (uuid 578eace8-a4cc-4a98-907e-be7cadf66199)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 232.41 134.62 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2f8c9) + (property "Reference" "#PWR011" (id 0) (at 238.76 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 235.6612 134.493 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 232.41 134.62 0)) + (property "Datasheet" "" (id 3) (at 232.41 134.62 0)) + (pin "1" (uuid b08a4646-1c91-4602-9069-aa105e07ccad)) + ) + + (symbol (lib_id "Device:LED_RCBG") (at 271.78 50.8 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2fa7a) + (property "Reference" "" (id 0) (at 255.27 49.53 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "LED_RCBG" (id 1) (at 252.73 52.07 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "LED_THT:LED_D5.0mm-4_RGB" (id 2) (at 273.05 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 273.05 50.8 0)) + (pin "1" (uuid 19f06891-7bd9-47df-9962-114e448ff603)) + (pin "2" (uuid 912f1c1c-a551-4cca-b1b5-95716ea52c35)) + (pin "3" (uuid 7800aee7-d2f3-4104-bf47-d9668efc9fb8)) + (pin "4" (uuid 3ad6c8d0-74aa-4091-875f-53f6a822527c)) + ) + + (symbol (lib_id "Device:R") (at 266.7 36.83 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2fb4d) + (property "Reference" "R16" (id 0) (at 266.7 36.83 90)) + (property "Value" "220R" (id 1) (at 264.16 36.83 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 266.7 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 266.7 36.83 0)) + (pin "1" (uuid 92d5ed4a-4cae-4601-b7e8-85be1640a729)) + (pin "2" (uuid aca0508e-1d5e-4e1c-a8a9-8133a98b50ad)) + ) + + (symbol (lib_id "Device:R") (at 271.78 36.83 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2fbfc) + (property "Reference" "R17" (id 0) (at 271.78 36.83 90)) + (property "Value" "220R" (id 1) (at 269.24 36.83 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 271.78 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 271.78 36.83 0)) + (pin "1" (uuid 4326f025-b7df-40e0-a804-7ffb9056e06a)) + (pin "2" (uuid db5c9562-9f53-4371-ba8b-ffa2e6506cfd)) + ) + + (symbol (lib_id "Device:R") (at 276.86 36.83 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e2fc45) + (property "Reference" "R18" (id 0) (at 276.86 36.83 90)) + (property "Value" "220R" (id 1) (at 274.32 36.83 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 276.86 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 276.86 36.83 0)) + (pin "1" (uuid 606e65b4-c469-4ea3-80c5-f92a12f5c450)) + (pin "2" (uuid ae199101-4bad-4ad6-ba73-1176550873da)) + ) + + (symbol (lib_id "Device:R") (at 27.94 40.64 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e30046) + (property "Reference" "R7" (id 0) (at 29.718 39.4716 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "220R" (id 1) (at 29.718 41.783 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 27.94 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 27.94 40.64 0)) + (pin "1" (uuid b6b743e6-e516-4feb-b91f-77a182fa170d)) + (pin "2" (uuid 3d4e1352-5faa-4a75-b3b1-409d38a71921)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 266.7 27.94 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e30624) + (property "Reference" "" (id 0) (at 264.668 27.94 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 268.224 27.686 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 266.7 27.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 266.7 27.94 0)) + (pin "1" (uuid 46ae0c39-7187-4e88-932f-4e3621fc2587)) + (pin "2" (uuid 90927bd8-b714-4e61-aaf3-588b11849fa5)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 271.78 27.94 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e307b0) + (property "Reference" "" (id 0) (at 269.748 27.94 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 273.304 27.686 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 271.78 27.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 271.78 27.94 0)) + (pin "1" (uuid 03370fe8-f10b-4bae-89ea-2f262e1dc9b9)) + (pin "2" (uuid 492e5faa-8935-4cff-8cb9-655a67219830)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 276.86 27.94 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e30bc7) + (property "Reference" "" (id 0) (at 274.828 27.94 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 278.384 27.686 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 276.86 27.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 276.86 27.94 0)) + (pin "1" (uuid 7a2d36b8-6a51-4fd7-a019-fc7c9eebb035)) + (pin "2" (uuid 16df6436-46cb-4a49-9bc4-86ca532cca74)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 27.94 63.5 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e32ad5) + (property "Reference" "JP4" (id 0) (at 25.908 63.5 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 29.464 63.246 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 27.94 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 27.94 63.5 0)) + (pin "1" (uuid 94878807-f9f4-4f5d-b4ce-abdf727d912c)) + (pin "2" (uuid 85e67e5a-8a9c-4cfe-99fd-a00a35aa514f)) + ) + + (symbol (lib_id "Device:R_POT") (at 170.18 125.73 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e33673) + (property "Reference" "RV1" (id 0) (at 171.9326 124.5616 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 171.9326 126.873 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "yaqwsx:RV09" (id 2) (at 170.18 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 125.73 0)) + (pin "1" (uuid 660e7ae0-cbbf-410c-b3b6-047f09aa60d9)) + (pin "2" (uuid 64f436de-8987-47f1-81ca-b8f2cb9b9525)) + (pin "3" (uuid dc31a9fb-8631-403a-8eda-f374dc51ce6e)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 151.13 125.73 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e3383b) + (property "Reference" "JP2" (id 0) (at 151.13 123.698 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 151.384 127.254 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 151.13 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 151.13 125.73 0)) + (pin "1" (uuid c31189af-bfeb-47e2-bb24-ae1314a82312)) + (pin "2" (uuid f3c448e6-3ebe-4d36-9158-966057058ab5)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 170.18 129.54 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e33f11) + (property "Reference" "#PWR012" (id 0) (at 170.18 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 170.18 133.35 0)) + (property "Footprint" "" (id 2) (at 170.18 129.54 0)) + (property "Datasheet" "" (id 3) (at 170.18 129.54 0)) + (pin "1" (uuid 43d27547-080d-44f3-9b8c-33d3d6a18ed9)) + ) + + (symbol (lib_id "Device:LED") (at 160.02 82.55 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e353ec) + (property "Reference" "" (id 0) (at 160.02 80.01 0)) + (property "Value" "LED" (id 1) (at 160.02 77.47 0)) + (property "Footprint" "LED_THT:LED_D5.0mm" (id 2) (at 160.02 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 160.02 82.55 0)) + (pin "1" (uuid a93a6bb6-b8c1-44f5-b7dc-170ce23ce311)) + (pin "2" (uuid a88fefc6-5473-41c2-8f3b-9c39ffc539b0)) + ) + + (symbol (lib_id "Device:R") (at 170.18 82.55 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e354f8) + (property "Reference" "R8" (id 0) (at 170.18 77.2922 90)) + (property "Value" "220R" (id 1) (at 170.18 79.6036 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 170.18 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 82.55 0)) + (pin "1" (uuid caadc191-ac39-4c0e-b6b2-8a9b81100627)) + (pin "2" (uuid e494c3b9-9414-4874-a32b-12d3ddda6a7d)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 176.53 82.55 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e35660) + (property "Reference" "#PWR013" (id 0) (at 182.88 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 179.7812 82.423 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 176.53 82.55 0)) + (property "Datasheet" "" (id 3) (at 176.53 82.55 0)) + (pin "1" (uuid 0e5e43b2-3a49-4e31-8c70-f26dac9f13c6)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 151.13 82.55 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e35847) + (property "Reference" "JP7" (id 0) (at 151.13 80.518 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 151.384 84.074 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 151.13 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 151.13 82.55 0)) + (pin "1" (uuid 88c3da7b-0292-43f8-88fd-1c075a6ff70f)) + (pin "2" (uuid 9ffa7256-4cc4-4536-b838-f488b29cf827)) + ) + + (symbol (lib_id "Device:LED") (at 160.02 91.44 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e35dde) + (property "Reference" "" (id 0) (at 160.02 88.9 0)) + (property "Value" "LED" (id 1) (at 160.02 86.36 0)) + (property "Footprint" "LED_THT:LED_D5.0mm" (id 2) (at 160.02 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 160.02 91.44 0)) + (pin "1" (uuid 5f3a5155-7fae-4c49-8026-469c505bc6fb)) + (pin "2" (uuid 520d7fa1-e6df-4a30-86c9-f5a11f51d7e2)) + ) + + (symbol (lib_id "Device:R") (at 170.18 91.44 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e35de4) + (property "Reference" "R9" (id 0) (at 170.18 86.36 90)) + (property "Value" "220R" (id 1) (at 170.18 88.9 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 170.18 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 91.44 0)) + (pin "1" (uuid 2b4e6e44-fe66-47c5-a45e-44dc9836e01c)) + (pin "2" (uuid b03a4f7c-85c4-43f8-b385-2f0025c502c3)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 176.53 91.44 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e35dea) + (property "Reference" "#PWR014" (id 0) (at 182.88 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 179.7812 91.313 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 176.53 91.44 0)) + (property "Datasheet" "" (id 3) (at 176.53 91.44 0)) + (pin "1" (uuid 74ef22ee-9bfa-4a33-a452-39c7ba1da299)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 151.13 91.44 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e35df0) + (property "Reference" "JP8" (id 0) (at 151.13 89.408 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 151.384 92.964 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 151.13 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 151.13 91.44 0)) + (pin "1" (uuid 6af175d7-2f00-461c-addb-d28c68dc8a0e)) + (pin "2" (uuid 73d83f1a-44a0-4adc-850c-8e0fd59d2951)) + ) + + (symbol (lib_id "Device:LED") (at 160.02 100.33 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e36611) + (property "Reference" "" (id 0) (at 160.02 97.79 0)) + (property "Value" "LED" (id 1) (at 160.02 95.25 0)) + (property "Footprint" "LED_THT:LED_D5.0mm" (id 2) (at 160.02 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 160.02 100.33 0)) + (pin "1" (uuid b0a07c8a-bcfa-4c7d-a688-7512a78bda56)) + (pin "2" (uuid 7ee8085c-c778-489a-a28a-d768ba785c9b)) + ) + + (symbol (lib_id "Device:R") (at 170.18 100.33 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e36617) + (property "Reference" "R5" (id 0) (at 170.18 95.25 90)) + (property "Value" "220R" (id 1) (at 170.18 97.79 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 170.18 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 100.33 0)) + (pin "1" (uuid 536e9c9f-f35a-4d9d-90e4-dd52736ccb2f)) + (pin "2" (uuid 34248b88-7650-44f9-b5b3-0d62f13297cf)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 176.53 100.33 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e3661d) + (property "Reference" "#PWR015" (id 0) (at 182.88 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 179.7812 100.203 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 176.53 100.33 0)) + (property "Datasheet" "" (id 3) (at 176.53 100.33 0)) + (pin "1" (uuid da4c44a5-d07f-4450-b93c-19bb76ff2178)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 151.13 100.33 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e36623) + (property "Reference" "JP5" (id 0) (at 151.13 98.298 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 151.384 101.854 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 151.13 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 151.13 100.33 0)) + (pin "1" (uuid ded07e03-2df9-455e-b124-6cd1954a17ca)) + (pin "2" (uuid 5296be1a-87c5-4d94-af40-393b111496f9)) + ) + + (symbol (lib_id "Device:LED") (at 160.02 109.22 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e36634) + (property "Reference" "" (id 0) (at 160.02 106.68 0)) + (property "Value" "LED" (id 1) (at 160.02 104.14 0)) + (property "Footprint" "LED_THT:LED_D5.0mm" (id 2) (at 160.02 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 160.02 109.22 0)) + (pin "1" (uuid e73c6acc-640c-4502-8d60-0c4d6b864310)) + (pin "2" (uuid c45804ec-bce1-4306-9655-b66253832449)) + ) + + (symbol (lib_id "Device:R") (at 170.18 109.22 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e3663a) + (property "Reference" "R6" (id 0) (at 170.18 104.14 90)) + (property "Value" "220R" (id 1) (at 170.18 106.68 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 170.18 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 109.22 0)) + (pin "1" (uuid c0aea9ba-2b41-462f-a682-d85072486e97)) + (pin "2" (uuid 11f8f664-5412-4b04-8ace-d1bcd3d6d02f)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 176.53 109.22 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e36640) + (property "Reference" "#PWR016" (id 0) (at 182.88 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 179.7812 109.093 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 176.53 109.22 0)) + (property "Datasheet" "" (id 3) (at 176.53 109.22 0)) + (pin "1" (uuid 1e41d79a-7eed-4aab-a244-d98d46a83c8d)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 151.13 109.22 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e36646) + (property "Reference" "JP6" (id 0) (at 151.13 107.188 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 151.384 110.744 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 151.13 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 151.13 109.22 0)) + (pin "1" (uuid f3526c91-dcc2-4501-878c-3e570d00c4b5)) + (pin "2" (uuid 1825237a-4ca6-4f6b-b193-33a3e1d81e76)) + ) + + (symbol (lib_id "Device:R_PHOTO") (at 163.83 172.72 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e3733e) + (property "Reference" "" (id 0) (at 165.608 171.5516 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Photores" (id 1) (at 165.608 173.863 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistors_ThroughHole:Resistor_Horizontal_RM7mm" (id 2) (at 162.052 172.72 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 163.83 172.72 0)) + (pin "1" (uuid 0f7c69f8-7bc7-4dc2-bf02-cead6a09dc9d)) + (pin "2" (uuid ddb12e2a-0775-4dc9-861f-23b97df32cfe)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 157.48 179.07 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e3785d) + (property "Reference" "JP1" (id 0) (at 157.48 177.038 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 157.734 180.594 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 157.48 179.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 157.48 179.07 0)) + (pin "1" (uuid dc3b1eb3-ea5b-48de-86f2-f5d41c6409cc)) + (pin "2" (uuid 21578578-1e3f-4de7-aaf5-4fa460397e8d)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 163.83 191.77 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e3786d) + (property "Reference" "#PWR017" (id 0) (at 163.83 198.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 163.83 195.58 0)) + (property "Footprint" "" (id 2) (at 163.83 191.77 0)) + (property "Datasheet" "" (id 3) (at 163.83 191.77 0)) + (pin "1" (uuid 1fcec771-36fd-4ec7-8479-54a6cafefff1)) + ) + + (symbol (lib_id "Device:R") (at 163.83 185.42 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e37c7d) + (property "Reference" "R4" (id 0) (at 165.608 184.2516 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10k" (id 1) (at 165.608 186.563 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 163.83 185.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 163.83 185.42 0)) + (pin "1" (uuid 132fc881-6028-44b7-a21d-54c035a00f1a)) + (pin "2" (uuid 082eff99-6b89-4a56-a262-6af9b53824d4)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 271.78 58.42 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e39e55) + (property "Reference" "#PWR018" (id 0) (at 271.78 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 271.78 62.23 0)) + (property "Footprint" "" (id 2) (at 271.78 58.42 0)) + (property "Datasheet" "" (id 3) (at 271.78 58.42 0)) + (pin "1" (uuid f343c596-ba0d-4f1e-8050-71584964134f)) + ) + + (symbol (lib_id "Device:R") (at 160.02 125.73 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e44c39) + (property "Reference" "R1" (id 0) (at 160.02 120.4722 90)) + (property "Value" "1k" (id 1) (at 160.02 122.7836 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 160.02 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 160.02 125.73 0)) + (pin "1" (uuid 1e11f215-a470-4104-b446-88db20eb8ce0)) + (pin "2" (uuid 99008007-14c8-4817-80f5-a1d261671a4a)) + ) + + (symbol (lib_id "Device:R_POT") (at 170.18 144.78 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e45227) + (property "Reference" "RV2" (id 0) (at 171.9326 143.6116 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 171.9326 145.923 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "yaqwsx:RV09" (id 2) (at 170.18 144.78 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 144.78 0)) + (pin "1" (uuid 64e4f59f-9a39-42ae-bbb8-ea0ac6b36c9a)) + (pin "2" (uuid a90b49c6-a111-45b1-8165-bebe91236c57)) + (pin "3" (uuid 3ec77298-6d99-4285-8241-323c63b24796)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 151.13 144.78 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4522d) + (property "Reference" "JP3" (id 0) (at 151.13 142.748 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 151.384 146.304 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 151.13 144.78 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 151.13 144.78 0)) + (pin "1" (uuid e7ddb863-d68b-4961-8949-eef169618351)) + (pin "2" (uuid e1882945-6291-4524-80fa-9f38be3ed5ae)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 170.18 148.59 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4523d) + (property "Reference" "#PWR019" (id 0) (at 170.18 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 170.18 152.4 0)) + (property "Footprint" "" (id 2) (at 170.18 148.59 0)) + (property "Datasheet" "" (id 3) (at 170.18 148.59 0)) + (pin "1" (uuid bd251e12-8403-428c-8f7b-c33e2f365e7f)) + ) + + (symbol (lib_id "Device:R") (at 160.02 144.78 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4524a) + (property "Reference" "R2" (id 0) (at 160.02 139.5222 90)) + (property "Value" "1k" (id 1) (at 160.02 141.8336 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 160.02 144.78 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 160.02 144.78 0)) + (pin "1" (uuid a104c535-74e8-4724-8d0b-1115fc4b9965)) + (pin "2" (uuid ab36076c-0a07-43d4-b884-269e5975780c)) + ) + + (symbol (lib_id "Device:C") (at 222.25 123.19 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e46232) + (property "Reference" "C3" (id 0) (at 226.06 125.73 90)) + (property "Value" "10n" (id 1) (at 218.44 125.73 90)) + (property "Footprint" "Capacitors_SMD:C_1206_HandSoldering" (id 2) (at 222.25 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 222.25 123.19 0)) + (pin "1" (uuid df451580-3c96-47f0-8dc0-5b86a2cd1766)) + (pin "2" (uuid 4f57184c-0539-47bd-948f-096b8ca556c8)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 198.12 134.62 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e465c5) + (property "Reference" "" (id 0) (at 198.12 132.588 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 198.374 136.144 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 198.12 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 198.12 134.62 0)) + (pin "1" (uuid bd5c886e-a299-48df-b72a-9a82641df8c6)) + (pin "2" (uuid dfd22936-bf7f-4a0c-85bc-134bf04644a7)) + ) + + (symbol (lib_id "Device:R") (at 207.01 134.62 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e468b0) + (property "Reference" "R15" (id 0) (at 207.01 129.3622 90)) + (property "Value" "1k" (id 1) (at 207.01 131.6736 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 207.01 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 207.01 134.62 0)) + (pin "1" (uuid 8254d81b-94f2-499d-8504-f9c48c7e7061)) + (pin "2" (uuid c9da42c9-f2c5-43cb-a7d4-9786dae70430)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 232.41 88.9 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4799b) + (property "Reference" "#PWR020" (id 0) (at 238.76 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 235.6612 88.773 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 232.41 88.9 0)) + (property "Datasheet" "" (id 3) (at 232.41 88.9 0)) + (pin "1" (uuid 59113916-5df7-40e9-a44a-d5a9857f7549)) + ) + + (symbol (lib_id "Device:C") (at 222.25 77.47 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e479a1) + (property "Reference" "C1" (id 0) (at 226.06 80.01 90)) + (property "Value" "10n" (id 1) (at 218.44 80.01 90)) + (property "Footprint" "Capacitors_SMD:C_1206_HandSoldering" (id 2) (at 222.25 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 222.25 77.47 0)) + (pin "1" (uuid 2d62eeff-b8fc-4eb9-aefc-5c18ce688c86)) + (pin "2" (uuid c72e532d-6bac-42ed-a30b-6b9bf256bbe5)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 198.12 88.9 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e479a7) + (property "Reference" "" (id 0) (at 198.12 86.868 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 198.374 90.424 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 198.12 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 198.12 88.9 0)) + (pin "1" (uuid 732d1fe3-6013-49dc-8e92-a9f3d750e9d9)) + (pin "2" (uuid 0bcc219d-71ca-4826-a2a7-a61ec88dff9c)) + ) + + (symbol (lib_id "Device:R") (at 207.01 88.9 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e479ad) + (property "Reference" "R13" (id 0) (at 207.01 83.6422 90)) + (property "Value" "1k" (id 1) (at 207.01 85.9536 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 207.01 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 207.01 88.9 0)) + (pin "1" (uuid c421762d-f03c-4079-bbf1-29d591dd2f7d)) + (pin "2" (uuid d63350e7-29eb-4a0b-8d3e-e9b87e26317c)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 232.41 109.22 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e47d6b) + (property "Reference" "#PWR021" (id 0) (at 238.76 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 235.6612 109.093 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 232.41 109.22 0)) + (property "Datasheet" "" (id 3) (at 232.41 109.22 0)) + (pin "1" (uuid 767f19a7-53d2-4a61-95ae-2bcd897900eb)) + ) + + (symbol (lib_id "Device:C") (at 222.25 97.79 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e47d71) + (property "Reference" "C2" (id 0) (at 226.06 100.33 90)) + (property "Value" "10n" (id 1) (at 218.44 100.33 90)) + (property "Footprint" "Capacitors_SMD:C_1206_HandSoldering" (id 2) (at 222.25 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 222.25 97.79 0)) + (pin "1" (uuid 8e87ec7c-a746-4f36-87ba-4033b778877b)) + (pin "2" (uuid 6c970105-d19e-4abe-8ae3-ebe894660b2f)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 198.12 109.22 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e47d77) + (property "Reference" "" (id 0) (at 198.12 107.188 0)) + (property "Value" "Jumper_NC_Small" (id 1) (at 198.374 110.744 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "yaqwsx:CUT_BRIDGGE" (id 2) (at 198.12 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 198.12 109.22 0)) + (pin "1" (uuid 6bb3ebea-927b-4335-9bf5-3e7fe24270c6)) + (pin "2" (uuid b4ab9fa8-ddf1-4164-91f9-74fd62d2d042)) + ) + + (symbol (lib_id "Device:R") (at 207.01 109.22 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e47d7d) + (property "Reference" "R14" (id 0) (at 207.01 103.9622 90)) + (property "Value" "1k" (id 1) (at 207.01 106.2736 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 207.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 207.01 109.22 0)) + (pin "1" (uuid c03481e3-9748-4d94-86f5-b7b5131b16a1)) + (pin "2" (uuid bc837216-2fc1-4d5a-9a64-bd79fc6d9f80)) + ) + + (symbol (lib_id "Device:R") (at 200.66 140.97 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e48021) + (property "Reference" "R12" (id 0) (at 202.438 139.8016 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 202.438 142.113 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 200.66 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 200.66 140.97 0)) + (pin "1" (uuid d309be01-831f-43e1-a744-a5046e7f6338)) + (pin "2" (uuid 09cb4d90-d0a3-4f63-a11f-61dc1eb88b2a)) + ) + + (symbol (lib_id "Device:R") (at 207.01 77.47 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4856a) + (property "Reference" "R10" (id 0) (at 207.01 72.2122 90)) + (property "Value" "10k" (id 1) (at 207.01 74.5236 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 207.01 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 207.01 77.47 0)) + (pin "1" (uuid 48af51e2-ffbb-4843-a5dc-0ca4d9ff7273)) + (pin "2" (uuid 2d573452-2033-4913-b6a8-76aee8b93d27)) + ) + + (symbol (lib_id "Device:R") (at 200.66 115.57 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e48844) + (property "Reference" "R11" (id 0) (at 202.438 114.4016 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 202.438 116.713 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 200.66 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 200.66 115.57 0)) + (pin "1" (uuid b8a35709-7074-4995-b65e-bad8117928cc)) + (pin "2" (uuid aef0b9d0-c6d9-4d11-b26e-5aea5ba6b600)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:Conn_01x04") (at 270.51 77.47 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4a74c) + (property "Reference" "" (id 0) (at 270.51 71.12 0)) + (property "Value" "DHT11_CONN" (id 1) (at 273.05 77.47 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (id 2) (at 270.51 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 270.51 77.47 0)) + (pin "1" (uuid d389e940-3e07-433a-9fd7-be05d5b95876)) + (pin "2" (uuid 68d8fa0b-aeb8-4d17-b7df-b59d99d1bc9e)) + (pin "3" (uuid a26c037f-c625-4f1c-9e5f-8b0262571f75)) + (pin "4" (uuid c9fc4071-5114-4b48-8cf3-83256381c576)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 265.43 82.55 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4a971) + (property "Reference" "#PWR022" (id 0) (at 259.08 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 262.1788 82.677 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 265.43 82.55 0)) + (property "Datasheet" "" (id 3) (at 265.43 82.55 0)) + (pin "1" (uuid 9d1810cb-ea84-4aaf-96b7-570f202a5b63)) + ) + + (symbol (lib_id "Switch:SW_Push") (at 220.98 134.62 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4c0f7) + (property "Reference" "SW3" (id 0) (at 224.79 131.826 0)) + (property "Value" "SW_PUSH" (id 1) (at 220.98 136.652 0)) + (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (id 2) (at 220.98 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 220.98 134.62 0)) + (pin "1" (uuid fa29353a-5795-4db7-bf24-849cfad77179)) + (pin "2" (uuid 6fa333b9-2757-4ec6-94fc-29be16e42d49)) + ) + + (symbol (lib_id "Switch:SW_Push") (at 220.98 88.9 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4c780) + (property "Reference" "SW1" (id 0) (at 224.79 86.106 0)) + (property "Value" "SW_PUSH" (id 1) (at 220.98 90.932 0)) + (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (id 2) (at 220.98 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 220.98 88.9 0)) + (pin "1" (uuid 1664706f-e74b-468b-a995-e6203576979d)) + (pin "2" (uuid b21169f8-e408-468f-9bd4-e7f113084c39)) + ) + + (symbol (lib_id "Switch:SW_Push") (at 220.98 109.22 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000057e4ca16) + (property "Reference" "SW2" (id 0) (at 224.79 106.426 0)) + (property "Value" "SW_PUSH" (id 1) (at 220.98 111.252 0)) + (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (id 2) (at 220.98 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 220.98 109.22 0)) + (pin "1" (uuid 5bf48af4-c4ae-4368-b19d-7224a169ccba)) + (pin "2" (uuid bf1041e5-6605-4e73-8eba-6f9b30cca130)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 27.94 33.02 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c1f7d6) + (property "Reference" "" (id 0) (at 25.908 33.02 0)) + (property "Value" "Jumper" (id 1) (at 29.464 32.766 0)) + (property "Footprint" "Pin_Headers:Pin_Header_Straight_1x02" (id 2) (at 27.94 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 27.94 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 59a0a9a7-b6f1-427a-9aed-a8421e637c35)) + (pin "2" (uuid 1d9712d3-67cd-49c6-95d0-b70f36b55333)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x03") (at 25.4 80.01 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c233a3) + (property "Reference" "S1" (id 0) (at 25.4 85.09 0)) + (property "Value" "SERVO1" (id 1) (at 22.86 80.01 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 25.4 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9c919915-fe91-4336-91ca-feb5698eb817)) + (pin "2" (uuid 70ba65bc-677e-4bf9-8486-f6ef7400a623)) + (pin "3" (uuid 6f8fa833-0234-44fd-8255-3e3d594131c3)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x03") (at 25.4 96.52 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c23740) + (property "Reference" "S2" (id 0) (at 25.4 101.6 0)) + (property "Value" "SERVO2" (id 1) (at 22.86 96.52 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 25.4 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2fad25d4-2251-4fb4-aeac-7e2716317cab)) + (pin "2" (uuid c3fc2972-fb7c-4dae-8144-e56137671efa)) + (pin "3" (uuid 099ee91a-418a-42dc-8e43-f194790e6621)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x03") (at 25.4 113.03 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c238b6) + (property "Reference" "S3" (id 0) (at 25.4 118.11 0)) + (property "Value" "SERVO3" (id 1) (at 22.86 113.03 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 25.4 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d6522370-ff73-45b2-a79d-828fa4fa7299)) + (pin "2" (uuid 9bdac286-fcdc-4289-b2c7-768bf254fac9)) + (pin "3" (uuid f171a6d4-655e-4f8a-afe9-2091ac78a3bf)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x03") (at 25.4 128.27 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c2399e) + (property "Reference" "S4" (id 0) (at 25.4 133.35 0)) + (property "Value" "SERVO4" (id 1) (at 22.86 128.27 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 25.4 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 521d91f9-24f1-455e-98b3-359a1ea9149a)) + (pin "2" (uuid 074a4770-4a8b-4abb-9e0a-87566827c92c)) + (pin "3" (uuid a39b2395-1b8b-4f26-96e3-11ce6ff0c313)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x03") (at 25.4 143.51 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c23a6b) + (property "Reference" "S5" (id 0) (at 25.4 148.59 0)) + (property "Value" "SERVO5" (id 1) (at 22.86 143.51 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 25.4 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bdb8dcb7-886f-4439-b634-e6e17f05601b)) + (pin "2" (uuid b64f4499-2a88-4d25-83af-88d875a9c91e)) + (pin "3" (uuid 5357c916-8771-43b0-8f31-44dc9f02e1ab)) + ) + + (symbol (lib_id "Connector:USB_B_Micro") (at 29.21 171.45 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c23b71) + (property "Reference" "J1" (id 0) (at 24.13 160.02 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "USB_OTG" (id 1) (at 24.13 162.56 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "yaqwsx:USB_Micro-B-widened" (id 2) (at 33.02 172.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 33.02 172.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 93800a51-e21b-49b2-8a0e-385c9e1f9ad7)) + (pin "2" (uuid a23208ee-d9db-4688-a66a-73c0a6f36af8)) + (pin "3" (uuid c2f08d21-23fd-4bb7-8bfa-665cdf966810)) + (pin "4" (uuid c258f0c7-f897-4858-bb88-cc38c22ebae7)) + (pin "5" (uuid 3ab51917-e1b1-4d60-94b4-cdbc85ed93f9)) + (pin "6" (uuid 75bbb9b7-a7a8-400e-b865-5a5b1f48250b)) + ) + + (symbol (lib_id "Device:R") (at 36.83 77.47 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c24888) + (property "Reference" "R25" (id 0) (at 36.83 77.47 90)) + (property "Value" "1k" (id 1) (at 36.83 74.93 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 36.83 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 36.83 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c65cf1de-a664-4d73-9f06-2cb25544f8a6)) + (pin "2" (uuid bf9ebf62-4145-4ad3-babb-7c346b8120ab)) + ) + + (symbol (lib_id "Device:R") (at 36.83 93.98 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c24e12) + (property "Reference" "R19" (id 0) (at 36.83 93.98 90)) + (property "Value" "1k" (id 1) (at 36.83 91.44 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 36.83 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 36.83 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6906abc9-fb9a-45f6-9929-c6717f231ff1)) + (pin "2" (uuid 184518d0-82a8-490f-b0cb-4e3bbce891c5)) + ) + + (symbol (lib_id "Device:R") (at 36.83 110.49 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c24f69) + (property "Reference" "R20" (id 0) (at 36.83 110.49 90)) + (property "Value" "1k" (id 1) (at 36.83 107.95 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 36.83 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 36.83 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3f6dab40-85ca-44bb-b3b8-de8452edbbac)) + (pin "2" (uuid 5d7a6b6f-ee26-491a-864c-1c3de4edbe7b)) + ) + + (symbol (lib_id "Device:R") (at 36.83 125.73 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c2516b) + (property "Reference" "R21" (id 0) (at 36.83 125.73 90)) + (property "Value" "1k" (id 1) (at 36.83 123.19 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 36.83 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 36.83 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5689ddbe-f9f0-45d7-ac56-d8ea5db13149)) + (pin "2" (uuid 8e9d647e-05e9-4113-9376-ad5dbe7831a9)) + ) + + (symbol (lib_id "Device:R") (at 36.83 140.97 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c25256) + (property "Reference" "R22" (id 0) (at 36.83 140.97 90)) + (property "Value" "1k" (id 1) (at 36.83 138.43 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 36.83 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 36.83 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3652c1ee-aad2-4ef6-9776-e6e4f085b03f)) + (pin "2" (uuid 6831a050-0103-48bb-9e6a-8e9c5a82fe9f)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 31.75 82.55 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c26ad7) + (property "Reference" "#PWR023" (id 0) (at 31.75 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 31.75 86.36 0)) + (property "Footprint" "" (id 2) (at 31.75 82.55 0)) + (property "Datasheet" "" (id 3) (at 31.75 82.55 0)) + (pin "1" (uuid 43ab0832-7b8e-428b-b3d4-0ed22f6f6d3b)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 31.75 99.06 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c26c94) + (property "Reference" "#PWR024" (id 0) (at 31.75 105.41 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 31.75 102.87 0)) + (property "Footprint" "" (id 2) (at 31.75 99.06 0)) + (property "Datasheet" "" (id 3) (at 31.75 99.06 0)) + (pin "1" (uuid 2360d45a-dec4-4c1c-940e-56974b7b5dce)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 31.75 115.57 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c26d59) + (property "Reference" "#PWR025" (id 0) (at 31.75 121.92 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 31.75 119.38 0)) + (property "Footprint" "" (id 2) (at 31.75 115.57 0)) + (property "Datasheet" "" (id 3) (at 31.75 115.57 0)) + (pin "1" (uuid d2fd79b8-3821-460e-b692-be2a92b3354c)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 31.75 130.81 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c26f92) + (property "Reference" "#PWR026" (id 0) (at 31.75 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 31.75 134.62 0)) + (property "Footprint" "" (id 2) (at 31.75 130.81 0)) + (property "Datasheet" "" (id 3) (at 31.75 130.81 0)) + (pin "1" (uuid f7512031-9195-4080-9b6f-3aa8b0e063c4)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 31.75 146.05 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c2711b) + (property "Reference" "#PWR027" (id 0) (at 31.75 152.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 31.75 149.86 0)) + (property "Footprint" "" (id 2) (at 31.75 146.05 0)) + (property "Datasheet" "" (id 3) (at 31.75 146.05 0)) + (pin "1" (uuid b92f95b4-2ca3-4e45-9ff6-29b42c9be406)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 29.21 184.15 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c2a0f7) + (property "Reference" "#PWR028" (id 0) (at 29.21 190.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 29.21 187.96 0)) + (property "Footprint" "" (id 2) (at 29.21 184.15 0)) + (property "Datasheet" "" (id 3) (at 29.21 184.15 0)) + (pin "1" (uuid fe1f145d-f3cb-4a9f-91d4-fa01647302f7)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 40.64 162.56 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c2ced2) + (property "Reference" "JP9" (id 0) (at 40.64 157.1752 0)) + (property "Value" "Jumper" (id 1) (at 40.64 159.4866 0)) + (property "Footprint" "Pin_Headers:Pin_Header_Straight_1x02" (id 2) (at 40.64 162.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 162.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3da511a3-dc12-40e4-9b97-064656d9b742)) + (pin "2" (uuid bea340f2-4eda-4227-a77f-0861511185c4)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x08") (at 116.84 93.98 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c2f86e) + (property "Reference" "J2" (id 0) (at 116.84 82.55 0)) + (property "Value" "CONN_01X08" (id 1) (at 119.38 93.98 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (id 2) (at 116.84 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 116.84 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 696b393c-0d06-4090-8fbd-2a67eb5d820e)) + (pin "2" (uuid c3e32328-18d3-4196-88b2-7943ecfcd713)) + (pin "3" (uuid 674aee03-750d-4148-b830-8111909f962a)) + (pin "4" (uuid 5c56cbbc-ec8c-46bf-b1ba-02b9024cf385)) + (pin "5" (uuid c5fc2174-1998-4956-ad5d-593e84d31c65)) + (pin "6" (uuid 1d21bb48-764f-46df-9b0e-e0a93f7b4493)) + (pin "7" (uuid ab819683-eb60-437a-b067-595af2591796)) + (pin "8" (uuid da5f6741-c892-49c0-ba20-5f652e46d195)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+5V") (at 45.72 162.56 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c30598) + (property "Reference" "#PWR029" (id 0) (at 41.91 162.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 45.72 160.02 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 45.72 162.56 0)) + (property "Datasheet" "" (id 3) (at 45.72 162.56 0)) + (pin "1" (uuid 09c36013-f223-474c-bec1-62d6902506bd)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+5V") (at 110.49 104.14 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c30ce3) + (property "Reference" "#PWR030" (id 0) (at 114.3 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 107.2388 103.759 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 110.49 104.14 0)) + (property "Datasheet" "" (id 3) (at 110.49 104.14 0)) + (pin "1" (uuid 1f3e31a8-d78e-4ba9-a43b-144400be8da1)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x06") (at 116.84 116.84 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c3103e) + (property "Reference" "J3" (id 0) (at 116.84 107.95 0)) + (property "Value" "CONN_01X06" (id 1) (at 119.38 116.84 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (id 2) (at 116.84 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 116.84 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 95e1b86e-f71c-444c-b859-134907bc5065)) + (pin "2" (uuid 4a41cca2-96b2-4c6c-9f09-81a510bea580)) + (pin "3" (uuid 6a32a51d-621b-46da-b1ae-8ccfa4c91c44)) + (pin "4" (uuid 9544f7b1-2269-45ef-86ed-cb97831139ef)) + (pin "5" (uuid 6bdae62f-22b9-4346-86cb-71430b978892)) + (pin "6" (uuid ef931bf1-1dcf-4ee2-a47a-02c36bccade0)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 110.49 124.46 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c31560) + (property "Reference" "#PWR031" (id 0) (at 104.14 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 106.68 124.46 0)) + (property "Footprint" "" (id 2) (at 110.49 124.46 0)) + (property "Datasheet" "" (id 3) (at 110.49 124.46 0)) + (pin "1" (uuid 91c7b312-97e8-4727-aff4-02af8ffb97ef)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x08") (at 116.84 139.7 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c318ef) + (property "Reference" "J4" (id 0) (at 116.84 128.27 0)) + (property "Value" "CONN_01X08" (id 1) (at 119.38 139.7 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (id 2) (at 116.84 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 116.84 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b9ba1749-bf98-4707-86d8-e59c3fe203aa)) + (pin "2" (uuid 073fdb7f-a37e-4500-998c-40db8e7b62d2)) + (pin "3" (uuid e6c81121-f499-4af3-ab0a-4b5067e733ff)) + (pin "4" (uuid 929280a3-e3e7-46ed-a969-21744cccf5b0)) + (pin "5" (uuid 66821a62-0433-4eb8-aa91-74d97803e380)) + (pin "6" (uuid 78ab4cbc-da0c-410a-bff6-ab7acc106d02)) + (pin "7" (uuid b668d848-d85a-4c73-9b3a-9621cacf632a)) + (pin "8" (uuid 503a915c-f7f6-40a3-9cba-5e8d8028e398)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 110.49 149.86 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c319c6) + (property "Reference" "#PWR032" (id 0) (at 104.14 149.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 106.68 149.86 0)) + (property "Footprint" "" (id 2) (at 110.49 149.86 0)) + (property "Datasheet" "" (id 3) (at 110.49 149.86 0)) + (pin "1" (uuid e22c8029-36dd-43cf-a2ea-04cd52682771)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x10") (at 116.84 168.91 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c31a55) + (property "Reference" "J5" (id 0) (at 116.84 154.94 0)) + (property "Value" "CONN_01X10" (id 1) (at 119.38 168.91 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical" (id 2) (at 116.84 168.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 116.84 168.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1ea73ec0-e8dd-49c9-93ea-3b7360da2378)) + (pin "10" (uuid 173e7ed8-ae6b-4f80-9d1a-aafba66a0839)) + (pin "2" (uuid 780e4778-09d4-4d15-8e08-c93ba15a4e40)) + (pin "3" (uuid ca02d9af-33f0-4d31-9c3f-22aed8c41533)) + (pin "4" (uuid d3e6f6c6-ef2c-4826-a981-c28d3a81d076)) + (pin "5" (uuid c24648de-2c4a-4d36-97a8-0c9b37e71e21)) + (pin "6" (uuid 2b68bc60-e2b5-458f-a7bd-571e376020f7)) + (pin "7" (uuid 081605b2-6198-4134-887b-daa58e784e0c)) + (pin "8" (uuid a4e5e682-7239-4f7d-9aeb-1cc26617c0ec)) + (pin "9" (uuid f6e87d07-4f60-42a3-90cd-ee188841d776)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 110.49 181.61 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c326a3) + (property "Reference" "#PWR033" (id 0) (at 104.14 181.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 106.68 181.61 0)) + (property "Footprint" "" (id 2) (at 110.49 181.61 0)) + (property "Datasheet" "" (id 3) (at 110.49 181.61 0)) + (pin "1" (uuid 1fe3bc61-5dcb-428f-87ca-c98091ceac3f)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 111.76 86.36 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c335cf) + (property "Reference" "#PWR034" (id 0) (at 111.76 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 111.76 82.55 0)) + (property "Footprint" "" (id 2) (at 111.76 86.36 0)) + (property "Datasheet" "" (id 3) (at 111.76 86.36 0)) + (pin "1" (uuid 92712330-7b04-4335-bf14-6e6052aa0bbf)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 104.14 91.44 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c33a9b) + (property "Reference" "#PWR035" (id 0) (at 97.79 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 97.79 91.44 90)) + (property "Footprint" "" (id 2) (at 104.14 91.44 0)) + (property "Datasheet" "" (id 3) (at 104.14 91.44 0)) + (pin "1" (uuid e77c3bf7-2bb0-4071-ac7d-91bef7b4ea07)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+3V3") (at 99.06 93.98 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c33c8a) + (property "Reference" "#PWR036" (id 0) (at 102.87 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 95.8088 93.599 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 99.06 93.98 0)) + (property "Datasheet" "" (id 3) (at 99.06 93.98 0)) + (pin "1" (uuid 6cbb2d3c-e685-48b9-bde5-efd3a8453c97)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x04") (at 76.2 168.91 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c39125) + (property "Reference" "J6" (id 0) (at 76.2 175.26 0)) + (property "Value" "CONN_01X04" (id 1) (at 73.66 168.91 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Horizontal" (id 2) (at 76.2 168.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 76.2 168.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 22f9307f-aa9b-4d4c-bcab-362abce675b8)) + (pin "2" (uuid 612fd819-be22-4258-9969-e7fac974765f)) + (pin "3" (uuid 13f6292f-e149-4fbc-b671-c599d551a2b7)) + (pin "4" (uuid 04508c22-40e0-4241-9284-1eaf773874f0)) + ) + + (symbol (lib_id "Device:R") (at 88.9 168.91 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c39409) + (property "Reference" "R23" (id 0) (at 88.9 168.91 90)) + (property "Value" "1k" (id 1) (at 88.9 165.9636 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 88.9 168.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 88.9 168.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e19c7c07-80bd-4598-9e88-18e3c4ea8729)) + (pin "2" (uuid 89458791-c317-46e6-beff-7ef6011c665e)) + ) + + (symbol (lib_id "Device:R") (at 88.9 171.45 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c39551) + (property "Reference" "R24" (id 0) (at 88.9 171.45 90)) + (property "Value" "1k" (id 1) (at 88.9 173.99 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 88.9 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 88.9 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dcd9e348-5bea-49e2-95f0-98945cdd2f11)) + (pin "2" (uuid 56a0a777-72d1-4f93-b1d1-cd22ae9a316b)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 81.28 166.37 90) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c39c30) + (property "Reference" "#PWR037" (id 0) (at 87.63 166.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 85.09 166.37 0)) + (property "Footprint" "" (id 2) (at 81.28 166.37 0)) + (property "Datasheet" "" (id 3) (at 81.28 166.37 0)) + (pin "1" (uuid 3d2a04c1-0201-479b-87fe-9cc6aaa9eaed)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x04") (at 76.2 139.7 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c3cbc9) + (property "Reference" "J7" (id 0) (at 76.2 146.05 0)) + (property "Value" "CONN_01X04" (id 1) (at 73.66 139.7 90)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (id 2) (at 76.2 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 76.2 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 50df6356-bc71-4ea3-b593-99476cd0a429)) + (pin "2" (uuid 1968c580-68f4-4526-889a-b1f8aee35599)) + (pin "3" (uuid 5297430b-922a-4b58-8587-8ffc6d1581f8)) + (pin "4" (uuid f9ed2917-206c-47f3-bb1b-602d1a7f9bc3)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 85.09 142.24 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c3d24f) + (property "Reference" "#PWR038" (id 0) (at 85.09 148.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 85.09 146.05 0)) + (property "Footprint" "" (id 2) (at 85.09 142.24 0)) + (property "Datasheet" "" (id 3) (at 85.09 142.24 0)) + (pin "1" (uuid 540856fd-4752-476e-8c34-fa2ffd51bfc9)) + ) + + (symbol (lib_id "Device:R") (at 88.9 139.7 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c3d521) + (property "Reference" "R3" (id 0) (at 88.9 139.7 90)) + (property "Value" "20k" (id 1) (at 88.9 137.16 90)) + (property "Footprint" "Resistors_SMD:R_1206_HandSoldering" (id 2) (at 88.9 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 88.9 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 24f7b7b8-d692-481c-82b7-96366c06b0b1)) + (pin "2" (uuid 62813788-2a2f-4fd9-9391-b6c9f8782fc4)) + ) + + (symbol (lib_id "Device:Jumper_NC_Small") (at 213.36 82.55 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058c407b0) + (property "Reference" "" (id 0) (at 211.328 82.55 0)) + (property "Value" "Jumper" (id 1) (at 214.884 82.296 0)) + (property "Footprint" "Pin_Headers:Pin_Header_Straight_1x02" (id 2) (at 213.36 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 213.36 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 22d4afad-684b-4436-b450-60b9cea542c7)) + (pin "2" (uuid f8e36b73-a0d2-48a3-82d8-089de83843d6)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:C_Small") (at 40.64 82.55 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058de66de) + (property "Reference" "C4" (id 0) (at 40.64 86.36 90)) + (property "Value" "10uF" (id 1) (at 40.64 88.9 90)) + (property "Footprint" "Capacitors_SMD:C_0805_HandSoldering" (id 2) (at 40.64 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6dd768aa-5af5-4200-808e-71f3092898bf)) + (pin "2" (uuid dfb2134b-03fa-4be5-8c82-ba2b692d901e)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:C_Small") (at 40.64 99.06 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058de6b28) + (property "Reference" "C5" (id 0) (at 40.64 102.87 90)) + (property "Value" "10uF" (id 1) (at 40.64 105.41 90)) + (property "Footprint" "Capacitors_SMD:C_0805_HandSoldering" (id 2) (at 40.64 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 27c0ccce-cd81-4984-aa04-c6bfca74ec52)) + (pin "2" (uuid 5761a8af-4f5c-454b-9ce3-becb93e2136e)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:C_Small") (at 40.64 115.57 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058de6cdd) + (property "Reference" "C6" (id 0) (at 40.64 119.0498 90)) + (property "Value" "10 μF" (id 1) (at 40.64 121.3612 90)) + (property "Footprint" "Capacitors_SMD:C_0805_HandSoldering" (id 2) (at 40.64 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 77ecf2fa-a06a-4908-b786-425b487c632c)) + (pin "2" (uuid 01cbcdfc-3a62-4eb3-99be-60a38a2822ee)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:C_Small") (at 40.64 130.81 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058de7055) + (property "Reference" "C7" (id 0) (at 40.64 134.2898 90)) + (property "Value" "10uF" (id 1) (at 40.64 136.6012 90)) + (property "Footprint" "Capacitors_SMD:C_0805_HandSoldering" (id 2) (at 40.64 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b62e6fd7-9d95-4d6e-8956-4dd11434b9bd)) + (pin "2" (uuid fbd1ae0e-ad92-4b4e-af98-2a7f33e23bc4)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:C_Small") (at 40.64 146.05 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000058de720c) + (property "Reference" "C8" (id 0) (at 40.64 149.86 90)) + (property "Value" "10uF" (id 1) (at 40.64 152.4 90)) + (property "Footprint" "Capacitors_SMD:C_0805_HandSoldering" (id 2) (at 40.64 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7c20c682-cb0a-46d2-adaa-258f84e8664c)) + (pin "2" (uuid 17d40a8e-42f4-4593-99ef-601f088eabb7)) + ) + + (symbol (lib_id "Device:Jumper_NC_Dual") (at 260.35 133.35 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000059023141) + (property "Reference" "" (id 0) (at 261.62 135.89 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Jumper_NC_Dual" (id 1) (at 260.35 130.81 0) + (effects (font (size 1.27 1.27)) (justify bottom)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 260.35 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 260.35 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d9250528-5235-40d2-9658-81e6d6f27e2e)) + (pin "2" (uuid 43de97d3-b9d9-4371-8746-a727e88337b6)) + (pin "3" (uuid c130b5f3-2d1d-4922-b443-1ef6b78a220a)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+5V") (at 251.46 133.35 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000590233a7) + (property "Reference" "#PWR039" (id 0) (at 255.27 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 248.2088 132.969 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 251.46 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 251.46 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ac259d3e-3d98-4997-b257-e3e13c73f9ef)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+3V3") (at 273.05 133.35 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000590237f3) + (property "Reference" "#PWR040" (id 0) (at 269.24 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 276.3012 133.731 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 273.05 133.35 0)) + (property "Datasheet" "" (id 3) (at 273.05 133.35 0)) + (pin "1" (uuid 85428262-4815-463b-83d9-6fcd4585ed59)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x02") (at 48.26 171.45 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005905e2a7) + (property "Reference" "J8" (id 0) (at 48.26 168.91 0)) + (property "Value" "CONN_01X02" (id 1) (at 48.26 177.8 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 48.26 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 48.26 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid cdac2ed9-168d-438a-b086-979516e1c924)) + (pin "2" (uuid daec941d-edb7-4f1d-a3a2-fba391a25ff8)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:ESP32-DEVKIT-C-yaqwsx") (at 74.93 46.99 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005914fd59) + (property "Reference" "U3" (id 0) (at 74.93 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "ESP32-DEVKIT-C" (id 1) (at 74.93 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "yaqwsx:ESP32-DEVKIT-C" (id 2) (at 74.93 55.88 0) + (effects (font (size 1.524 1.524)) hide) + ) + (property "Datasheet" "" (id 3) (at 74.93 55.88 0) + (effects (font (size 1.524 1.524)) hide) + ) + (pin "1" (uuid 933904ff-e346-4de4-956d-f1e3fae80220)) + (pin "10" (uuid 8f274072-921f-43ca-9738-def894dac4ca)) + (pin "11" (uuid 99e3d619-0dab-478c-beb8-c115a78871ac)) + (pin "12" (uuid 5675ec75-b21c-4766-8525-017481d37a3c)) + (pin "13" (uuid 1cfb557e-00f9-4d8f-b59a-9ce8ae080218)) + (pin "14" (uuid 47fae4eb-4809-4e35-90fe-d11a4debb0f8)) + (pin "15" (uuid 456fb1ee-2bf7-4889-a96f-d6c5ebf7ed61)) + (pin "16" (uuid 82dc1cfe-6794-47de-8b27-47ccd28b164d)) + (pin "17" (uuid 59df4d6d-fcb1-4634-8fc1-5dd2fe950b60)) + (pin "18" (uuid b3c6241d-7ed7-4f55-b024-6aa7c2a0930e)) + (pin "19" (uuid deddd99b-fb59-4419-971d-1d55f2683abc)) + (pin "2" (uuid aff5a121-8926-49fd-9612-3c520954357c)) + (pin "20" (uuid 6cc21525-5c1d-4618-b8c0-fdf9b738df9f)) + (pin "21" (uuid e4ab615a-d97a-4ca4-bf18-1656733e6d0c)) + (pin "22" (uuid cb26133c-4213-4d00-b3a8-18a926360e24)) + (pin "23" (uuid 4d20e3d5-ea0a-4fb7-9538-7d962772ecac)) + (pin "24" (uuid 42d6099d-aaa4-44bd-8d3f-24731a77fdca)) + (pin "25" (uuid f375439a-92ce-4f3b-9dfd-cd2eb7a6b08d)) + (pin "26" (uuid 22930ecd-64ce-4461-a52d-b1253ed59560)) + (pin "27" (uuid 229a4e66-d9c1-4b74-b193-515656f2020e)) + (pin "28" (uuid 7f39725f-b187-4582-9392-1a169b5009ad)) + (pin "29" (uuid c36fd7a2-4fb5-4d7d-859b-b269000bd55a)) + (pin "3" (uuid 5639a23e-75d8-4fec-9ac5-05f511f8948e)) + (pin "30" (uuid 56565676-8610-4b64-806f-2047014860ce)) + (pin "31" (uuid a62c32ad-b9b5-4281-ad5a-65b6c352136c)) + (pin "32" (uuid 74e06d82-0fb6-4d47-baac-3fc51fc2a340)) + (pin "33" (uuid f71df4b8-99ed-46c0-901d-0453e2599ad5)) + (pin "34" (uuid 8aea832a-a141-4278-9928-a55ac2e9cb85)) + (pin "35" (uuid 91682e6c-19e7-4337-9640-292fccc8deef)) + (pin "36" (uuid 205fc642-79e7-4112-bb93-cc8b3c9fb364)) + (pin "37" (uuid cc4fbfe3-4ea5-4edb-89ab-327af02442a8)) + (pin "38" (uuid 564da3e0-5a63-456e-9cd9-008b5c9fdd33)) + (pin "4" (uuid 3db9f034-1c1f-4f7c-b5ac-e7860f176481)) + (pin "5" (uuid a4d6e6d9-09ab-4052-86e3-4bf89407f060)) + (pin "6" (uuid 6c7a0be5-2caa-403c-8b24-14186c8ebe41)) + (pin "7" (uuid 04f54eb9-beca-402b-8df5-cae4d53b72ae)) + (pin "8" (uuid 0cd75894-3f4c-4545-9fa6-a76410125f7c)) + (pin "9" (uuid 9833f648-bac8-459d-8a3a-9424ced06962)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+3V3") (at 62.23 24.13 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005914ff34) + (property "Reference" "#PWR041" (id 0) (at 66.04 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 58.674 24.13 0)) + (property "Footprint" "" (id 2) (at 62.23 24.13 0)) + (property "Datasheet" "" (id 3) (at 62.23 24.13 0)) + (pin "1" (uuid 3454ba88-d607-4746-9b50-17f12b42753f)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:+5V") (at 62.23 69.85 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000059150129) + (property "Reference" "#PWR042" (id 0) (at 66.04 69.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 58.674 69.85 0)) + (property "Footprint" "" (id 2) (at 62.23 69.85 0)) + (property "Datasheet" "" (id 3) (at 62.23 69.85 0)) + (pin "1" (uuid e65eb84f-23b1-47a2-8812-b06a33b683ac)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 96.52 39.37 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005915031e) + (property "Reference" "#PWR043" (id 0) (at 102.87 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 100.33 39.37 0)) + (property "Footprint" "" (id 2) (at 96.52 39.37 0)) + (property "Datasheet" "" (id 3) (at 96.52 39.37 0)) + (pin "1" (uuid 033941ba-a1bb-4361-b322-fc27d32c9c93)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 55.88 57.15 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000059150419) + (property "Reference" "#PWR044" (id 0) (at 49.53 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 52.07 57.15 0)) + (property "Footprint" "" (id 2) (at 55.88 57.15 0)) + (property "Datasheet" "" (id 3) (at 55.88 57.15 0)) + (pin "1" (uuid b9368b79-e89d-4bca-8b12-ad5c8ae90d46)) + ) + + (symbol (lib_id "ArduinoLearningKitStarter:GND") (at 97.79 24.13 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000059150514) + (property "Reference" "#PWR045" (id 0) (at 104.14 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 101.6 24.13 0)) + (property "Footprint" "" (id 2) (at 97.79 24.13 0)) + (property "Datasheet" "" (id 3) (at 97.79 24.13 0)) + (pin "1" (uuid 6fcb2cbb-15b1-41fc-9a3c-64b36b721d43)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/00000000-0000-0000-0000-000057e2f0de" + (reference "#PWR01") (unit 1) (value "+3V3") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f0f6" + (reference "#PWR02") (unit 1) (value "+3V3") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f11d" + (reference "#PWR03") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f135" + (reference "#PWR04") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f14d" + (reference "#PWR05") (unit 1) (value "VCC") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f1d1" + (reference "#PWR06") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f21b" + (reference "#PWR07") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f238" + (reference "#PWR08") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f25b" + (reference "#PWR09") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f27c" + (reference "#PWR010") (unit 1) (value "VCC") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e2f8c9" + (reference "#PWR011") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e33f11" + (reference "#PWR012") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e35660" + (reference "#PWR013") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e35dea" + (reference "#PWR014") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e3661d" + (reference "#PWR015") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e36640" + (reference "#PWR016") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e3786d" + (reference "#PWR017") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e39e55" + (reference "#PWR018") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e4523d" + (reference "#PWR019") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e4799b" + (reference "#PWR020") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e47d6b" + (reference "#PWR021") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e4a971" + (reference "#PWR022") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c26ad7" + (reference "#PWR023") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c26c94" + (reference "#PWR024") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c26d59" + (reference "#PWR025") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c26f92" + (reference "#PWR026") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c2711b" + (reference "#PWR027") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c2a0f7" + (reference "#PWR028") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c30598" + (reference "#PWR029") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c30ce3" + (reference "#PWR030") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c31560" + (reference "#PWR031") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c319c6" + (reference "#PWR032") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c326a3" + (reference "#PWR033") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c335cf" + (reference "#PWR034") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c33a9b" + (reference "#PWR035") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c33c8a" + (reference "#PWR036") (unit 1) (value "+3V3") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c39c30" + (reference "#PWR037") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000058c3d24f" + (reference "#PWR038") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000590233a7" + (reference "#PWR039") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000590237f3" + (reference "#PWR040") (unit 1) (value "+3V3") (footprint "") + ) + (path "/00000000-0000-0000-0000-00005914ff34" + (reference "#PWR041") (unit 1) (value "+3V3") (footprint "") + ) + (path "/00000000-0000-0000-0000-000059150129" + (reference "#PWR042") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00005915031e" + (reference "#PWR043") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000059150419" + (reference "#PWR044") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000059150514" + (reference "#PWR045") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000057e479a1" + (reference "C1") (unit 1) (value "10n") (footprint "Capacitors_SMD:C_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e47d71" + (reference "C2") (unit 1) (value "10n") (footprint "Capacitors_SMD:C_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e46232" + (reference "C3") (unit 1) (value "10n") (footprint "Capacitors_SMD:C_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058de66de" + (reference "C4") (unit 1) (value "10uF") (footprint "Capacitors_SMD:C_0805_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058de6b28" + (reference "C5") (unit 1) (value "10uF") (footprint "Capacitors_SMD:C_0805_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058de6cdd" + (reference "C6") (unit 1) (value "10 μF") (footprint "Capacitors_SMD:C_0805_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058de7055" + (reference "C7") (unit 1) (value "10uF") (footprint "Capacitors_SMD:C_0805_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058de720c" + (reference "C8") (unit 1) (value "10uF") (footprint "Capacitors_SMD:C_0805_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e4a74c" + (reference "DHT11") (unit 1) (value "DHT11_CONN") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c23b71" + (reference "J1") (unit 1) (value "USB_OTG") (footprint "yaqwsx:USB_Micro-B-widened") + ) + (path "/00000000-0000-0000-0000-000058c2f86e" + (reference "J2") (unit 1) (value "CONN_01X08") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c3103e" + (reference "J3") (unit 1) (value "CONN_01X06") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c318ef" + (reference "J4") (unit 1) (value "CONN_01X08") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c31a55" + (reference "J5") (unit 1) (value "CONN_01X10") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c39125" + (reference "J6") (unit 1) (value "CONN_01X04") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000058c3cbc9" + (reference "J7") (unit 1) (value "CONN_01X04") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-00005905e2a7" + (reference "J8") (unit 1) (value "CONN_01X02") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000057e3785d" + (reference "JP1") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e3383b" + (reference "JP2") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e4522d" + (reference "JP3") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e32ad5" + (reference "JP4") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e36623" + (reference "JP5") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e36646" + (reference "JP6") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e35847" + (reference "JP7") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e35df0" + (reference "JP8") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000058c2ced2" + (reference "JP9") (unit 1) (value "Jumper") (footprint "Pin_Headers:Pin_Header_Straight_1x02") + ) + (path "/00000000-0000-0000-0000-000057e479a7" + (reference "JP10") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e47d77" + (reference "JP11") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e465c5" + (reference "JP12") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e30624" + (reference "JP13") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e307b0" + (reference "JP14") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000057e30bc7" + (reference "JP15") (unit 1) (value "Jumper_NC_Small") (footprint "yaqwsx:CUT_BRIDGGE") + ) + (path "/00000000-0000-0000-0000-000058c1f7d6" + (reference "JP16") (unit 1) (value "Jumper") (footprint "Pin_Headers:Pin_Header_Straight_1x02") + ) + (path "/00000000-0000-0000-0000-000058c407b0" + (reference "JP17") (unit 1) (value "Jumper") (footprint "Pin_Headers:Pin_Header_Straight_1x02") + ) + (path "/00000000-0000-0000-0000-000059023141" + (reference "JP18") (unit 1) (value "Jumper_NC_Dual") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000057e35dde" + (reference "L_B1") (unit 1) (value "LED") (footprint "LED_THT:LED_D5.0mm") + ) + (path "/00000000-0000-0000-0000-000057e353ec" + (reference "L_G1") (unit 1) (value "LED") (footprint "LED_THT:LED_D5.0mm") + ) + (path "/00000000-0000-0000-0000-000057e36611" + (reference "L_R1") (unit 1) (value "LED") (footprint "LED_THT:LED_D5.0mm") + ) + (path "/00000000-0000-0000-0000-000057e2fa7a" + (reference "L_RGB1") (unit 1) (value "LED_RCBG") (footprint "LED_THT:LED_D5.0mm-4_RGB") + ) + (path "/00000000-0000-0000-0000-000057e36634" + (reference "L_Y1") (unit 1) (value "LED") (footprint "LED_THT:LED_D5.0mm") + ) + (path "/00000000-0000-0000-0000-000057e3733e" + (reference "PHOTO1") (unit 1) (value "Photores") (footprint "Resistors_ThroughHole:Resistor_Horizontal_RM7mm") + ) + (path "/00000000-0000-0000-0000-000057e2f3a6" + (reference "PIEZO1") (unit 1) (value "PIEZO") (footprint "yaqwsx:piezo_12") + ) + (path "/00000000-0000-0000-0000-000057e44c39" + (reference "R1") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e4524a" + (reference "R2") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058c3d521" + (reference "R3") (unit 1) (value "20k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e37c7d" + (reference "R4") (unit 1) (value "10k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e36617" + (reference "R5") (unit 1) (value "220R") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e3663a" + (reference "R6") (unit 1) (value "220R") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e30046" + (reference "R7") (unit 1) (value "220R") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e354f8" + (reference "R8") (unit 1) (value "220R") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e35de4" + (reference "R9") (unit 1) (value "220R") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e4856a" + (reference "R10") (unit 1) (value "10k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e48844" + (reference "R11") (unit 1) (value "10k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e48021" + (reference "R12") (unit 1) (value "10k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e479ad" + (reference "R13") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e47d7d" + (reference "R14") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e468b0" + (reference "R15") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e2fb4d" + (reference "R16") (unit 1) (value "220R") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e2fbfc" + (reference "R17") (unit 1) (value "220R") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e2fc45" + (reference "R18") (unit 1) (value "220R") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058c24e12" + (reference "R19") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058c24f69" + (reference "R20") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058c2516b" + (reference "R21") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058c25256" + (reference "R22") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058c39409" + (reference "R23") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058c39551" + (reference "R24") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000058c24888" + (reference "R25") (unit 1) (value "1k") (footprint "Resistors_SMD:R_1206_HandSoldering") + ) + (path "/00000000-0000-0000-0000-000057e33673" + (reference "RV1") (unit 1) (value "10k") (footprint "yaqwsx:RV09") + ) + (path "/00000000-0000-0000-0000-000057e45227" + (reference "RV2") (unit 1) (value "10k") (footprint "yaqwsx:RV09") + ) + (path "/00000000-0000-0000-0000-000058c233a3" + (reference "S1") (unit 1) (value "SERVO1") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c23740" + (reference "S2") (unit 1) (value "SERVO2") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c238b6" + (reference "S3") (unit 1) (value "SERVO3") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c2399e" + (reference "S4") (unit 1) (value "SERVO4") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000058c23a6b" + (reference "S5") (unit 1) (value "SERVO5") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000057e4c780" + (reference "SW1") (unit 1) (value "SW_PUSH") (footprint "Button_Switch_THT:SW_PUSH_6mm") + ) + (path "/00000000-0000-0000-0000-000057e4ca16" + (reference "SW2") (unit 1) (value "SW_PUSH") (footprint "Button_Switch_THT:SW_PUSH_6mm") + ) + (path "/00000000-0000-0000-0000-000057e4c0f7" + (reference "SW3") (unit 1) (value "SW_PUSH") (footprint "Button_Switch_THT:SW_PUSH_6mm") + ) + (path "/00000000-0000-0000-0000-000057e2ed37" + (reference "U1") (unit 1) (value "arduino_nano") (footprint "yaqwsx:arduino_nano") + ) + (path "/00000000-0000-0000-0000-000057e2ee30" + (reference "U2") (unit 1) (value "arduino_uno") (footprint "yaqwsx:arduino_uno_small_pads") + ) + (path "/00000000-0000-0000-0000-00005914fd59" + (reference "U3") (unit 1) (value "ESP32-DEVKIT-C") (footprint "yaqwsx:ESP32-DEVKIT-C") + ) + ) +) diff --git a/tests/data/ArduinoLearningKitStarter.sch b/tests/data/ArduinoLearningKitStarter.sch deleted file mode 100644 index 6e238d95..00000000 --- a/tests/data/ArduinoLearningKitStarter.sch +++ /dev/null @@ -1,2060 +0,0 @@ -EESchema Schematic File Version 4 -LIBS:ArduinoLearningKitStarter-cache -EELAYER 26 0 -EELAYER END -$Descr A4 11693 8268 -encoding utf-8 -Sheet 1 1 -Title "ArduinoLearningKitStarter" -Date "2018-12-20" -Rev "3.2" -Comp "RoboticsBrno" -Comment1 "" -Comment2 "" -Comment3 "" -Comment4 "" -$EndDescr -$Comp -L ArduinoLearningKitStarter:arduino_nano-yaqwsx U1 -U 1 1 57E2ED37 -P 6100 1650 -F 0 "U1" H 6100 2450 60 0000 C CNN -F 1 "arduino_nano" H 6100 850 60 0000 C CNN -F 2 "yaqwsx:arduino_nano" H 5800 1900 60 0001 C CNN -F 3 "" H 5800 1900 60 0000 C CNN - 1 6100 1650 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:arduino_uno-yaqwsx U2 -U 1 1 57E2EE30 -P 8700 1700 -F 0 "U2" H 8700 2700 60 0000 C CNN -F 1 "arduino_uno" H 8700 700 60 0000 C CNN -F 2 "yaqwsx:arduino_uno_small_pads" H 8500 1300 60 0001 C CNN -F 3 "" H 8500 1300 60 0001 C CNN - 1 8700 1700 - 1 0 0 -1 -$EndComp -NoConn ~ 7950 1200 -Text GLabel 5300 950 0 60 Input ~ 0 -D13 -Text GLabel 5300 1150 0 60 Input ~ 0 -AREF -Text GLabel 5300 1250 0 60 Input ~ 0 -A0 -Text GLabel 5300 1350 0 60 Input ~ 0 -A1 -Text GLabel 5300 1450 0 60 Input ~ 0 -A2 -Text GLabel 5300 1550 0 60 Input ~ 0 -A3 -Text GLabel 5300 1650 0 60 Input ~ 0 -A4 -Text GLabel 5300 1750 0 60 Input ~ 0 -A5 -Text GLabel 5300 1850 0 60 Input ~ 0 -A6 -Text GLabel 5300 1950 0 60 Input ~ 0 -A7 -Text GLabel 5300 2150 0 60 Input ~ 0 -RST -Text GLabel 6850 950 2 60 Input ~ 0 -D12 -Text GLabel 6850 1050 2 60 Input ~ 0 -D11 -Text GLabel 6850 1150 2 60 Input ~ 0 -D10 -Text GLabel 6850 1250 2 60 Input ~ 0 -D9 -Text GLabel 6850 1350 2 60 Input ~ 0 -D8 -Text GLabel 6850 1450 2 60 Input ~ 0 -D7 -Text GLabel 6850 1550 2 60 Input ~ 0 -D6 -Text GLabel 6850 1650 2 60 Input ~ 0 -D5 -Text GLabel 6850 1750 2 60 Input ~ 0 -D4 -Text GLabel 6850 1850 2 60 Input ~ 0 -D3 -Text GLabel 6850 1950 2 60 Input ~ 0 -D2 -Text GLabel 6850 2150 2 60 Input ~ 0 -RST -Text GLabel 6850 2250 2 60 Input ~ 0 -D0 -Text GLabel 6850 2350 2 60 Input ~ 0 -D1 -Text GLabel 7950 1400 0 60 Input ~ 0 -RST -Text GLabel 7950 2100 0 60 Input ~ 0 -A0 -Text GLabel 7950 2200 0 60 Input ~ 0 -A1 -Text GLabel 7950 2300 0 60 Input ~ 0 -A2 -Text GLabel 7950 2400 0 60 Input ~ 0 -A3 -Text GLabel 7950 2500 0 60 Input ~ 0 -A4 -Text GLabel 7950 2600 0 60 Input ~ 0 -A5 -Text GLabel 9450 800 2 60 Input ~ 0 -A5 -Text GLabel 9450 900 2 60 Input ~ 0 -A4 -Text GLabel 9450 1000 2 60 Input ~ 0 -AREF -Text GLabel 9450 1200 2 60 Input ~ 0 -D13 -Text GLabel 9450 1300 2 60 Input ~ 0 -D12 -Text GLabel 9450 1400 2 60 Input ~ 0 -D11 -Text GLabel 9450 1500 2 60 Input ~ 0 -D10 -Text GLabel 9450 1600 2 60 Input ~ 0 -D9 -Text GLabel 9450 1700 2 60 Input ~ 0 -D8 -Text GLabel 9450 1900 2 60 Input ~ 0 -D7 -Text GLabel 9450 2000 2 60 Input ~ 0 -D6 -Text GLabel 9450 2100 2 60 Input ~ 0 -D5 -Text GLabel 9450 2200 2 60 Input ~ 0 -D4 -Text GLabel 9450 2300 2 60 Input ~ 0 -D3 -Text GLabel 9450 2400 2 60 Input ~ 0 -D2 -Text GLabel 9450 2500 2 60 Input ~ 0 -D1 -Text GLabel 9450 2600 2 60 Input ~ 0 -D0 -$Comp -L ArduinoLearningKitStarter:+3V3 #PWR01 -U 1 1 57E2F0DE -P 4850 1050 -F 0 "#PWR01" H 4850 900 50 0001 C CNN -F 1 "+3V3" H 4850 1190 50 0000 C CNN -F 2 "" H 4850 1050 50 0000 C CNN -F 3 "" H 4850 1050 50 0000 C CNN - 1 4850 1050 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:+3V3 #PWR02 -U 1 1 57E2F0F6 -P 7800 1500 -F 0 "#PWR02" H 7800 1350 50 0001 C CNN -F 1 "+3V3" V 7815 1628 50 0000 L CNN -F 2 "" H 7800 1500 50 0000 C CNN -F 3 "" H 7800 1500 50 0000 C CNN - 1 7800 1500 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:+5V #PWR03 -U 1 1 57E2F11D -P 5050 2050 -F 0 "#PWR03" H 5050 1900 50 0001 C CNN -F 1 "+5V" V 5065 2178 50 0000 L CNN -F 2 "" H 5050 2050 50 0000 C CNN -F 3 "" H 5050 2050 50 0000 C CNN - 1 5050 2050 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR04 -U 1 1 57E2F135 -P 5050 2250 -F 0 "#PWR04" H 5050 2000 50 0001 C CNN -F 1 "GND" V 5055 2122 50 0000 R CNN -F 2 "" H 5050 2250 50 0000 C CNN -F 3 "" H 5050 2250 50 0000 C CNN - 1 5050 2250 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:VCC #PWR05 -U 1 1 57E2F14D -P 5050 2350 -F 0 "#PWR05" H 5050 2200 50 0001 C CNN -F 1 "VCC" V 4952 2387 50 0000 C CNN -F 2 "" H 5050 2350 50 0000 C CNN -F 3 "" H 5050 2350 50 0000 C CNN - 1 5050 2350 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR06 -U 1 1 57E2F1D1 -P 7100 2050 -F 0 "#PWR06" H 7100 1800 50 0001 C CNN -F 1 "GND" V 7105 1922 50 0000 R CNN -F 2 "" H 7100 2050 50 0000 C CNN -F 3 "" H 7100 2050 50 0000 C CNN - 1 7100 2050 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR07 -U 1 1 57E2F21B -P 7950 1700 -F 0 "#PWR07" H 7950 1450 50 0001 C CNN -F 1 "GND" V 7955 1572 50 0000 R CNN -F 2 "" H 7950 1700 50 0000 C CNN -F 3 "" H 7950 1700 50 0000 C CNN - 1 7950 1700 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR08 -U 1 1 57E2F238 -P 9750 1100 -F 0 "#PWR08" H 9750 850 50 0001 C CNN -F 1 "GND" V 9755 972 50 0000 R CNN -F 2 "" H 9750 1100 50 0000 C CNN -F 3 "" H 9750 1100 50 0000 C CNN - 1 9750 1100 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:+5V #PWR09 -U 1 1 57E2F25B -P 7800 1600 -F 0 "#PWR09" H 7800 1450 50 0001 C CNN -F 1 "+5V" V 7815 1728 50 0000 L CNN -F 2 "" H 7800 1600 50 0000 C CNN -F 3 "" H 7800 1600 50 0000 C CNN - 1 7800 1600 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:VCC #PWR010 -U 1 1 57E2F27C -P 7800 1900 -F 0 "#PWR010" H 7800 1750 50 0001 C CNN -F 1 "VCC" V 7818 2027 50 0000 L CNN -F 2 "" H 7800 1900 50 0000 C CNN -F 3 "" H 7800 1900 50 0000 C CNN - 1 7800 1900 - 0 -1 -1 0 -$EndComp -Text GLabel 1100 2650 3 60 Input ~ 0 -D9 -Text GLabel 1100 1100 1 60 Input ~ 0 -D10 -$Comp -L ArduinoLearningKitStarter:GND #PWR011 -U 1 1 57E2F8C9 -P 9150 5300 -F 0 "#PWR011" H 9150 5050 50 0001 C CNN -F 1 "GND" V 9155 5172 50 0000 R CNN -F 2 "" H 9150 5300 50 0000 C CNN -F 3 "" H 9150 5300 50 0000 C CNN - 1 9150 5300 - 0 -1 -1 0 -$EndComp -$Comp -L Device:LED_RCBG L_RGB1 -U 1 1 57E2FA7A -P 10700 2000 -F 0 "L_RGB1" V 10750 2650 50 0000 R CNN -F 1 "LED_RCBG" V 10650 2750 50 0000 R CNN -F 2 "LED_THT:LED_D5.0mm-4_RGB" H 10700 1950 50 0001 C CNN -F 3 "" H 10700 1950 50 0000 C CNN - 1 10700 2000 - 0 -1 -1 0 -$EndComp -$Comp -L Device:R R16 -U 1 1 57E2FB4D -P 10500 1450 -F 0 "R16" V 10500 1450 50 0000 C CNN -F 1 "220R" V 10400 1450 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 10500 1450 50 0001 C CNN -F 3 "" H 10500 1450 50 0000 C CNN - 1 10500 1450 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R17 -U 1 1 57E2FBFC -P 10700 1450 -F 0 "R17" V 10700 1450 50 0000 C CNN -F 1 "220R" V 10600 1450 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 10700 1450 50 0001 C CNN -F 3 "" H 10700 1450 50 0000 C CNN - 1 10700 1450 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R18 -U 1 1 57E2FC45 -P 10900 1450 -F 0 "R18" V 10900 1450 50 0000 C CNN -F 1 "220R" V 10800 1450 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 10900 1450 50 0001 C CNN -F 3 "" H 10900 1450 50 0000 C CNN - 1 10900 1450 - 1 0 0 -1 -$EndComp -Text GLabel 10500 900 1 60 Input ~ 0 -D5 -Text GLabel 10700 900 1 60 Input ~ 0 -D6 -Text GLabel 10900 900 1 60 Input ~ 0 -D11 -$Comp -L Device:Jumper_NC_Small JP13 -U 1 1 57E30624 -P 10500 1100 -F 0 "JP13" H 10500 1180 50 0000 C CNN -F 1 "Jumper_NC_Small" H 10510 1040 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 10500 1100 50 0001 C CNN -F 3 "" H 10500 1100 50 0000 C CNN - 1 10500 1100 - 0 -1 -1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP14 -U 1 1 57E307B0 -P 10700 1100 -F 0 "JP14" H 10700 1180 50 0000 C CNN -F 1 "Jumper_NC_Small" H 10710 1040 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 10700 1100 50 0001 C CNN -F 3 "" H 10700 1100 50 0000 C CNN - 1 10700 1100 - 0 -1 -1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP15 -U 1 1 57E30BC7 -P 10900 1100 -F 0 "JP15" H 10900 1180 50 0000 C CNN -F 1 "Jumper_NC_Small" H 10910 1040 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 10900 1100 50 0001 C CNN -F 3 "" H 10900 1100 50 0000 C CNN - 1 10900 1100 - 0 -1 -1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP4 -U 1 1 57E32AD5 -P 1100 2500 -F 0 "JP4" H 1100 2580 50 0000 C CNN -F 1 "Jumper_NC_Small" H 1110 2440 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 1100 2500 50 0001 C CNN -F 3 "" H 1100 2500 50 0000 C CNN - 1 1100 2500 - 0 -1 -1 0 -$EndComp -$Comp -L Device:R_POT RV1 -U 1 1 57E33673 -P 6700 4950 -F 0 "RV1" H 6631 4904 50 0000 R CNN -F 1 "10k" H 6631 4995 50 0000 R CNN -F 2 "yaqwsx:RV09" H 6700 4950 50 0001 C CNN -F 3 "" H 6700 4950 50 0000 C CNN - 1 6700 4950 - -1 0 0 1 -$EndComp -$Comp -L Device:Jumper_NC_Small JP2 -U 1 1 57E3383B -P 5950 4950 -F 0 "JP2" H 5950 5030 50 0000 C CNN -F 1 "Jumper_NC_Small" H 5960 4890 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 5950 4950 50 0001 C CNN -F 3 "" H 5950 4950 50 0000 C CNN - 1 5950 4950 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR012 -U 1 1 57E33F11 -P 6700 5100 -F 0 "#PWR012" H 6700 4850 50 0001 C CNN -F 1 "GND" H 6700 4950 50 0000 C CNN -F 2 "" H 6700 5100 50 0000 C CNN -F 3 "" H 6700 5100 50 0000 C CNN - 1 6700 5100 - 1 0 0 -1 -$EndComp -Text GLabel 5650 4950 0 60 Input ~ 0 -A0 -$Comp -L Device:LED L_G1 -U 1 1 57E353EC -P 6300 3250 -F 0 "L_G1" H 6300 3150 50 0000 C CNN -F 1 "LED" H 6300 3050 50 0000 C CNN -F 2 "LED_THT:LED_D5.0mm" H 6300 3250 50 0001 C CNN -F 3 "" H 6300 3250 50 0000 C CNN - 1 6300 3250 - -1 0 0 1 -$EndComp -$Comp -L Device:R R8 -U 1 1 57E354F8 -P 6700 3250 -F 0 "R8" V 6493 3250 50 0000 C CNN -F 1 "220R" V 6584 3250 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 6700 3250 50 0001 C CNN -F 3 "" H 6700 3250 50 0000 C CNN - 1 6700 3250 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR013 -U 1 1 57E35660 -P 6950 3250 -F 0 "#PWR013" H 6950 3000 50 0001 C CNN -F 1 "GND" V 6955 3122 50 0000 R CNN -F 2 "" H 6950 3250 50 0000 C CNN -F 3 "" H 6950 3250 50 0000 C CNN - 1 6950 3250 - 0 -1 -1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP7 -U 1 1 57E35847 -P 5950 3250 -F 0 "JP7" H 5950 3330 50 0000 C CNN -F 1 "Jumper_NC_Small" H 5960 3190 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 5950 3250 50 0001 C CNN -F 3 "" H 5950 3250 50 0000 C CNN - 1 5950 3250 - 1 0 0 -1 -$EndComp -$Comp -L Device:LED L_B1 -U 1 1 57E35DDE -P 6300 3600 -F 0 "L_B1" H 6300 3500 50 0000 C CNN -F 1 "LED" H 6300 3400 50 0000 C CNN -F 2 "LED_THT:LED_D5.0mm" H 6300 3600 50 0001 C CNN -F 3 "" H 6300 3600 50 0000 C CNN - 1 6300 3600 - -1 0 0 1 -$EndComp -$Comp -L Device:R R9 -U 1 1 57E35DE4 -P 6700 3600 -F 0 "R9" V 6500 3600 50 0000 C CNN -F 1 "220R" V 6600 3600 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 6700 3600 50 0001 C CNN -F 3 "" H 6700 3600 50 0000 C CNN - 1 6700 3600 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR014 -U 1 1 57E35DEA -P 6950 3600 -F 0 "#PWR014" H 6950 3350 50 0001 C CNN -F 1 "GND" V 6955 3472 50 0000 R CNN -F 2 "" H 6950 3600 50 0000 C CNN -F 3 "" H 6950 3600 50 0000 C CNN - 1 6950 3600 - 0 -1 -1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP8 -U 1 1 57E35DF0 -P 5950 3600 -F 0 "JP8" H 5950 3680 50 0000 C CNN -F 1 "Jumper_NC_Small" H 5960 3540 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 5950 3600 50 0001 C CNN -F 3 "" H 5950 3600 50 0000 C CNN - 1 5950 3600 - 1 0 0 -1 -$EndComp -$Comp -L Device:LED L_R1 -U 1 1 57E36611 -P 6300 3950 -F 0 "L_R1" H 6300 3850 50 0000 C CNN -F 1 "LED" H 6300 3750 50 0000 C CNN -F 2 "LED_THT:LED_D5.0mm" H 6300 3950 50 0001 C CNN -F 3 "" H 6300 3950 50 0000 C CNN - 1 6300 3950 - -1 0 0 1 -$EndComp -$Comp -L Device:R R5 -U 1 1 57E36617 -P 6700 3950 -F 0 "R5" V 6500 3950 50 0000 C CNN -F 1 "220R" V 6600 3950 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 6700 3950 50 0001 C CNN -F 3 "" H 6700 3950 50 0000 C CNN - 1 6700 3950 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR015 -U 1 1 57E3661D -P 6950 3950 -F 0 "#PWR015" H 6950 3700 50 0001 C CNN -F 1 "GND" V 6955 3822 50 0000 R CNN -F 2 "" H 6950 3950 50 0000 C CNN -F 3 "" H 6950 3950 50 0000 C CNN - 1 6950 3950 - 0 -1 -1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP5 -U 1 1 57E36623 -P 5950 3950 -F 0 "JP5" H 5950 4030 50 0000 C CNN -F 1 "Jumper_NC_Small" H 5960 3890 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 5950 3950 50 0001 C CNN -F 3 "" H 5950 3950 50 0000 C CNN - 1 5950 3950 - 1 0 0 -1 -$EndComp -$Comp -L Device:LED L_Y1 -U 1 1 57E36634 -P 6300 4300 -F 0 "L_Y1" H 6300 4200 50 0000 C CNN -F 1 "LED" H 6300 4100 50 0000 C CNN -F 2 "LED_THT:LED_D5.0mm" H 6300 4300 50 0001 C CNN -F 3 "" H 6300 4300 50 0000 C CNN - 1 6300 4300 - -1 0 0 1 -$EndComp -$Comp -L Device:R R6 -U 1 1 57E3663A -P 6700 4300 -F 0 "R6" V 6500 4300 50 0000 C CNN -F 1 "220R" V 6600 4300 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 6700 4300 50 0001 C CNN -F 3 "" H 6700 4300 50 0000 C CNN - 1 6700 4300 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR016 -U 1 1 57E36640 -P 6950 4300 -F 0 "#PWR016" H 6950 4050 50 0001 C CNN -F 1 "GND" V 6955 4172 50 0000 R CNN -F 2 "" H 6950 4300 50 0000 C CNN -F 3 "" H 6950 4300 50 0000 C CNN - 1 6950 4300 - 0 -1 -1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP6 -U 1 1 57E36646 -P 5950 4300 -F 0 "JP6" H 5950 4380 50 0000 C CNN -F 1 "Jumper_NC_Small" H 5960 4240 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 5950 4300 50 0001 C CNN -F 3 "" H 5950 4300 50 0000 C CNN - 1 5950 4300 - 1 0 0 -1 -$EndComp -Text GLabel 5700 3250 0 60 Input ~ 0 -D7 -Text GLabel 5700 3600 0 60 Input ~ 0 -D8 -Text GLabel 5700 3950 0 60 Input ~ 0 -D12 -Text GLabel 5700 4300 0 60 Input ~ 0 -D13 -$Comp -L Device:R_PHOTO PHOTO1 -U 1 1 57E3733E -P 6450 6800 -F 0 "PHOTO1" H 6520 6846 50 0000 L CNN -F 1 "Photores" H 6520 6755 50 0000 L CNN -F 2 "Resistors_ThroughHole:Resistor_Horizontal_RM7mm" V 6380 6800 50 0001 C CNN -F 3 "" H 6450 6800 50 0000 C CNN - 1 6450 6800 - 1 0 0 -1 -$EndComp -$Comp -L Device:Jumper_NC_Small JP1 -U 1 1 57E3785D -P 6200 7050 -F 0 "JP1" H 6200 7130 50 0000 C CNN -F 1 "Jumper_NC_Small" H 6210 6990 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 6200 7050 50 0001 C CNN -F 3 "" H 6200 7050 50 0000 C CNN - 1 6200 7050 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR017 -U 1 1 57E3786D -P 6450 7550 -F 0 "#PWR017" H 6450 7300 50 0001 C CNN -F 1 "GND" H 6450 7400 50 0000 C CNN -F 2 "" H 6450 7550 50 0000 C CNN -F 3 "" H 6450 7550 50 0000 C CNN - 1 6450 7550 - 1 0 0 -1 -$EndComp -Text GLabel 5900 7050 0 60 Input ~ 0 -A2 -$Comp -L Device:R R4 -U 1 1 57E37C7D -P 6450 7300 -F 0 "R4" H 6520 7346 50 0000 L CNN -F 1 "10k" H 6520 7255 50 0000 L CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 6450 7300 50 0001 C CNN -F 3 "" H 6450 7300 50 0000 C CNN - 1 6450 7300 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR018 -U 1 1 57E39E55 -P 10700 2300 -F 0 "#PWR018" H 10700 2050 50 0001 C CNN -F 1 "GND" H 10700 2150 50 0000 C CNN -F 2 "" H 10700 2300 50 0000 C CNN -F 3 "" H 10700 2300 50 0000 C CNN - 1 10700 2300 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R7 -U 1 1 57E30046 -P 1100 1600 -F 0 "R7" H 1170 1646 50 0000 L CNN -F 1 "220R" H 1170 1555 50 0000 L CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 1100 1600 50 0001 C CNN -F 3 "" H 1100 1600 50 0000 C CNN - 1 1100 1600 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R1 -U 1 1 57E44C39 -P 6300 4950 -F 0 "R1" V 6093 4950 50 0000 C CNN -F 1 "1k" V 6184 4950 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 6300 4950 50 0001 C CNN -F 3 "" H 6300 4950 50 0000 C CNN - 1 6300 4950 - 0 1 1 0 -$EndComp -$Comp -L Device:R_POT RV2 -U 1 1 57E45227 -P 6700 5700 -F 0 "RV2" H 6631 5654 50 0000 R CNN -F 1 "10k" H 6631 5745 50 0000 R CNN -F 2 "yaqwsx:RV09" H 6700 5700 50 0001 C CNN -F 3 "" H 6700 5700 50 0000 C CNN - 1 6700 5700 - -1 0 0 1 -$EndComp -$Comp -L Device:Jumper_NC_Small JP3 -U 1 1 57E4522D -P 5950 5700 -F 0 "JP3" H 5950 5780 50 0000 C CNN -F 1 "Jumper_NC_Small" H 5960 5640 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 5950 5700 50 0001 C CNN -F 3 "" H 5950 5700 50 0000 C CNN - 1 5950 5700 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR019 -U 1 1 57E4523D -P 6700 5850 -F 0 "#PWR019" H 6700 5600 50 0001 C CNN -F 1 "GND" H 6700 5700 50 0000 C CNN -F 2 "" H 6700 5850 50 0000 C CNN -F 3 "" H 6700 5850 50 0000 C CNN - 1 6700 5850 - 1 0 0 -1 -$EndComp -Text GLabel 5650 5700 0 60 Input ~ 0 -A1 -$Comp -L Device:R R2 -U 1 1 57E4524A -P 6300 5700 -F 0 "R2" V 6093 5700 50 0000 C CNN -F 1 "1k" V 6184 5700 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 6300 5700 50 0001 C CNN -F 3 "" H 6300 5700 50 0000 C CNN - 1 6300 5700 - 0 1 1 0 -$EndComp -$Comp -L Device:C C3 -U 1 1 57E46232 -P 8750 4850 -F 0 "C3" V 8850 5000 50 0000 C CNN -F 1 "10n" V 8850 4700 50 0000 C CNN -F 2 "Capacitors_SMD:C_1206_HandSoldering" H 8750 4850 50 0001 C CNN -F 3 "" H 8750 4850 50 0000 C CNN - 1 8750 4850 - 0 1 1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP12 -U 1 1 57E465C5 -P 7800 5300 -F 0 "JP12" H 7800 5380 50 0000 C CNN -F 1 "Jumper_NC_Small" H 7810 5240 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 7800 5300 50 0001 C CNN -F 3 "" H 7800 5300 50 0000 C CNN - 1 7800 5300 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R15 -U 1 1 57E468B0 -P 8150 5300 -F 0 "R15" V 7943 5300 50 0000 C CNN -F 1 "1k" V 8034 5300 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 8150 5300 50 0001 C CNN -F 3 "" H 8150 5300 50 0000 C CNN - 1 8150 5300 - 0 1 1 0 -$EndComp -Text GLabel 7700 4300 0 60 Input ~ 0 -D3 -$Comp -L ArduinoLearningKitStarter:GND #PWR020 -U 1 1 57E4799B -P 9150 3500 -F 0 "#PWR020" H 9150 3250 50 0001 C CNN -F 1 "GND" V 9155 3372 50 0000 R CNN -F 2 "" H 9150 3500 50 0000 C CNN -F 3 "" H 9150 3500 50 0000 C CNN - 1 9150 3500 - 0 -1 -1 0 -$EndComp -$Comp -L Device:C C1 -U 1 1 57E479A1 -P 8750 3050 -F 0 "C1" V 8850 3200 50 0000 C CNN -F 1 "10n" V 8850 2900 50 0000 C CNN -F 2 "Capacitors_SMD:C_1206_HandSoldering" H 8750 3050 50 0001 C CNN -F 3 "" H 8750 3050 50 0000 C CNN - 1 8750 3050 - 0 1 1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP10 -U 1 1 57E479A7 -P 7800 3500 -F 0 "JP10" H 7800 3580 50 0000 C CNN -F 1 "Jumper_NC_Small" H 7810 3440 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 7800 3500 50 0001 C CNN -F 3 "" H 7800 3500 50 0000 C CNN - 1 7800 3500 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R13 -U 1 1 57E479AD -P 8150 3500 -F 0 "R13" V 7943 3500 50 0000 C CNN -F 1 "1k" V 8034 3500 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 8150 3500 50 0001 C CNN -F 3 "" H 8150 3500 50 0000 C CNN - 1 8150 3500 - 0 1 1 0 -$EndComp -Text GLabel 7700 5300 0 60 Input ~ 0 -D4 -$Comp -L ArduinoLearningKitStarter:GND #PWR021 -U 1 1 57E47D6B -P 9150 4300 -F 0 "#PWR021" H 9150 4050 50 0001 C CNN -F 1 "GND" V 9155 4172 50 0000 R CNN -F 2 "" H 9150 4300 50 0000 C CNN -F 3 "" H 9150 4300 50 0000 C CNN - 1 9150 4300 - 0 -1 -1 0 -$EndComp -$Comp -L Device:C C2 -U 1 1 57E47D71 -P 8750 3850 -F 0 "C2" V 8850 4000 50 0000 C CNN -F 1 "10n" V 8850 3700 50 0000 C CNN -F 2 "Capacitors_SMD:C_1206_HandSoldering" H 8750 3850 50 0001 C CNN -F 3 "" H 8750 3850 50 0000 C CNN - 1 8750 3850 - 0 1 1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP11 -U 1 1 57E47D77 -P 7800 4300 -F 0 "JP11" H 7800 4380 50 0000 C CNN -F 1 "Jumper_NC_Small" H 7810 4240 50 0001 C CNN -F 2 "yaqwsx:CUT_BRIDGGE" H 7800 4300 50 0001 C CNN -F 3 "" H 7800 4300 50 0000 C CNN - 1 7800 4300 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R14 -U 1 1 57E47D7D -P 8150 4300 -F 0 "R14" V 7943 4300 50 0000 C CNN -F 1 "1k" V 8034 4300 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 8150 4300 50 0001 C CNN -F 3 "" H 8150 4300 50 0000 C CNN - 1 8150 4300 - 0 1 1 0 -$EndComp -$Comp -L Device:R R12 -U 1 1 57E48021 -P 7900 5550 -F 0 "R12" H 7830 5504 50 0000 R CNN -F 1 "10k" H 7830 5595 50 0000 R CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 7900 5550 50 0001 C CNN -F 3 "" H 7900 5550 50 0000 C CNN - 1 7900 5550 - -1 0 0 1 -$EndComp -$Comp -L Device:R R10 -U 1 1 57E4856A -P 8150 3050 -F 0 "R10" V 8357 3050 50 0000 C CNN -F 1 "10k" V 8266 3050 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 8150 3050 50 0001 C CNN -F 3 "" H 8150 3050 50 0000 C CNN - 1 8150 3050 - 0 -1 -1 0 -$EndComp -$Comp -L Device:R R11 -U 1 1 57E48844 -P 7900 4550 -F 0 "R11" H 7830 4504 50 0000 R CNN -F 1 "10k" H 7830 4595 50 0000 R CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 7900 4550 50 0001 C CNN -F 3 "" H 7900 4550 50 0000 C CNN - 1 7900 4550 - -1 0 0 1 -$EndComp -$Comp -L ArduinoLearningKitStarter:Conn_01x04 DHT11 -U 1 1 57E4A74C -P 10650 3050 -F 0 "DHT11" H 10650 3300 50 0000 C CNN -F 1 "DHT11_CONN" V 10750 3050 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 10650 3050 50 0001 C CNN -F 3 "" H 10650 3050 50 0000 C CNN - 1 10650 3050 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR022 -U 1 1 57E4A971 -P 10450 3250 -F 0 "#PWR022" H 10450 3000 50 0001 C CNN -F 1 "GND" V 10455 3122 50 0000 R CNN -F 2 "" H 10450 3250 50 0000 C CNN -F 3 "" H 10450 3250 50 0000 C CNN - 1 10450 3250 - 0 1 1 0 -$EndComp -Text GLabel 10450 3050 0 60 Input ~ 0 -A3 -$Comp -L Switch:SW_Push SW3 -U 1 1 57E4C0F7 -P 8700 5300 -F 0 "SW3" H 8850 5410 50 0000 C CNN -F 1 "SW_PUSH" H 8700 5220 50 0000 C CNN -F 2 "Button_Switch_THT:SW_PUSH_6mm" H 8700 5300 50 0001 C CNN -F 3 "" H 8700 5300 50 0000 C CNN - 1 8700 5300 - 1 0 0 -1 -$EndComp -$Comp -L Switch:SW_Push SW1 -U 1 1 57E4C780 -P 8700 3500 -F 0 "SW1" H 8850 3610 50 0000 C CNN -F 1 "SW_PUSH" H 8700 3420 50 0000 C CNN -F 2 "Button_Switch_THT:SW_PUSH_6mm" H 8700 3500 50 0001 C CNN -F 3 "" H 8700 3500 50 0000 C CNN - 1 8700 3500 - 1 0 0 -1 -$EndComp -$Comp -L Switch:SW_Push SW2 -U 1 1 57E4CA16 -P 8700 4300 -F 0 "SW2" H 8850 4410 50 0000 C CNN -F 1 "SW_PUSH" H 8700 4220 50 0000 C CNN -F 2 "Button_Switch_THT:SW_PUSH_6mm" H 8700 4300 50 0001 C CNN -F 3 "" H 8700 4300 50 0000 C CNN - 1 8700 4300 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:PIEZO-yaqwsx PIEZO1 -U 1 1 57E2F3A6 -P 1100 2100 -F 0 "PIEZO1" H 1100 1850 60 0000 C CNN -F 1 "PIEZO" H 1100 2350 60 0000 C CNN -F 2 "yaqwsx:piezo_12" H 1100 2100 60 0001 C CNN -F 3 "" H 1100 2100 60 0000 C CNN - 1 1100 2100 - 0 -1 1 0 -$EndComp -$Comp -L Device:Jumper_NC_Small JP16 -U 1 1 58C1F7D6 -P 1100 1300 -F 0 "JP16" H 1100 1380 50 0000 C CNN -F 1 "Jumper" H 1110 1240 50 0000 C CNN -F 2 "Pin_Headers:Pin_Header_Straight_1x02" H 1100 1300 50 0001 C CNN -F 3 "" H 1100 1300 50 0001 C CNN - 1 1100 1300 - 0 -1 -1 0 -$EndComp -$Comp -L Connector_Generic:Conn_01x03 S1 -U 1 1 58C233A3 -P 1000 3150 -F 0 "S1" H 1000 3350 50 0000 C CNN -F 1 "SERVO1" V 1100 3150 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 1000 3150 50 0001 C CNN -F 3 "" H 1000 3150 50 0001 C CNN - 1 1000 3150 - -1 0 0 1 -$EndComp -$Comp -L Connector_Generic:Conn_01x03 S2 -U 1 1 58C23740 -P 1000 3800 -F 0 "S2" H 1000 4000 50 0000 C CNN -F 1 "SERVO2" V 1100 3800 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 1000 3800 50 0001 C CNN -F 3 "" H 1000 3800 50 0001 C CNN - 1 1000 3800 - -1 0 0 1 -$EndComp -$Comp -L Connector_Generic:Conn_01x03 S3 -U 1 1 58C238B6 -P 1000 4450 -F 0 "S3" H 1000 4650 50 0000 C CNN -F 1 "SERVO3" V 1100 4450 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 1000 4450 50 0001 C CNN -F 3 "" H 1000 4450 50 0001 C CNN - 1 1000 4450 - -1 0 0 1 -$EndComp -$Comp -L Connector_Generic:Conn_01x03 S4 -U 1 1 58C2399E -P 1000 5050 -F 0 "S4" H 1000 5250 50 0000 C CNN -F 1 "SERVO4" V 1100 5050 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 1000 5050 50 0001 C CNN -F 3 "" H 1000 5050 50 0001 C CNN - 1 1000 5050 - -1 0 0 1 -$EndComp -$Comp -L Connector_Generic:Conn_01x03 S5 -U 1 1 58C23A6B -P 1000 5650 -F 0 "S5" H 1000 5850 50 0000 C CNN -F 1 "SERVO5" V 1100 5650 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 1000 5650 50 0001 C CNN -F 3 "" H 1000 5650 50 0001 C CNN - 1 1000 5650 - -1 0 0 1 -$EndComp -$Comp -L Connector:USB_B_Micro J1 -U 1 1 58C23B71 -P 1150 6750 -F 0 "J1" H 950 7200 50 0000 L CNN -F 1 "USB_OTG" H 950 7100 50 0000 L CNN -F 2 "yaqwsx:USB_Micro-B-widened" H 1300 6700 50 0001 C CNN -F 3 "" H 1300 6700 50 0001 C CNN - 1 1150 6750 - 1 0 0 -1 -$EndComp -NoConn ~ 1450 6950 -$Comp -L Device:R R25 -U 1 1 58C24888 -P 1450 3050 -F 0 "R25" V 1450 3050 50 0000 C CNN -F 1 "1k" V 1350 3050 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 1450 3050 50 0001 C CNN -F 3 "" H 1450 3050 50 0001 C CNN - 1 1450 3050 - 0 1 1 0 -$EndComp -$Comp -L Device:R R19 -U 1 1 58C24E12 -P 1450 3700 -F 0 "R19" V 1450 3700 50 0000 C CNN -F 1 "1k" V 1350 3700 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 1450 3700 50 0001 C CNN -F 3 "" H 1450 3700 50 0001 C CNN - 1 1450 3700 - 0 1 1 0 -$EndComp -$Comp -L Device:R R20 -U 1 1 58C24F69 -P 1450 4350 -F 0 "R20" V 1450 4350 50 0000 C CNN -F 1 "1k" V 1350 4350 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 1450 4350 50 0001 C CNN -F 3 "" H 1450 4350 50 0001 C CNN - 1 1450 4350 - 0 1 1 0 -$EndComp -$Comp -L Device:R R21 -U 1 1 58C2516B -P 1450 4950 -F 0 "R21" V 1450 4950 50 0000 C CNN -F 1 "1k" V 1350 4950 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 1450 4950 50 0001 C CNN -F 3 "" H 1450 4950 50 0001 C CNN - 1 1450 4950 - 0 1 1 0 -$EndComp -$Comp -L Device:R R22 -U 1 1 58C25256 -P 1450 5550 -F 0 "R22" V 1450 5550 50 0000 C CNN -F 1 "1k" V 1350 5550 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 1450 5550 50 0001 C CNN -F 3 "" H 1450 5550 50 0001 C CNN - 1 1450 5550 - 0 1 1 0 -$EndComp -Text GLabel 1850 3150 2 60 Input ~ 0 -VCC_SERVO -Text GLabel 1850 3800 2 60 Input ~ 0 -VCC_SERVO -Text GLabel 1900 4450 2 60 Input ~ 0 -VCC_SERVO -Text GLabel 1900 5050 2 60 Input ~ 0 -VCC_SERVO -Text GLabel 1900 5650 2 60 Input ~ 0 -VCC_SERVO -$Comp -L ArduinoLearningKitStarter:GND #PWR023 -U 1 1 58C26AD7 -P 1250 3250 -F 0 "#PWR023" H 1250 3000 50 0001 C CNN -F 1 "GND" H 1250 3100 50 0000 C CNN -F 2 "" H 1250 3250 50 0000 C CNN -F 3 "" H 1250 3250 50 0000 C CNN - 1 1250 3250 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR024 -U 1 1 58C26C94 -P 1250 3900 -F 0 "#PWR024" H 1250 3650 50 0001 C CNN -F 1 "GND" H 1250 3750 50 0000 C CNN -F 2 "" H 1250 3900 50 0000 C CNN -F 3 "" H 1250 3900 50 0000 C CNN - 1 1250 3900 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR025 -U 1 1 58C26D59 -P 1250 4550 -F 0 "#PWR025" H 1250 4300 50 0001 C CNN -F 1 "GND" H 1250 4400 50 0000 C CNN -F 2 "" H 1250 4550 50 0000 C CNN -F 3 "" H 1250 4550 50 0000 C CNN - 1 1250 4550 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR026 -U 1 1 58C26F92 -P 1250 5150 -F 0 "#PWR026" H 1250 4900 50 0001 C CNN -F 1 "GND" H 1250 5000 50 0000 C CNN -F 2 "" H 1250 5150 50 0000 C CNN -F 3 "" H 1250 5150 50 0000 C CNN - 1 1250 5150 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR027 -U 1 1 58C2711B -P 1250 5750 -F 0 "#PWR027" H 1250 5500 50 0001 C CNN -F 1 "GND" H 1250 5600 50 0000 C CNN -F 2 "" H 1250 5750 50 0000 C CNN -F 3 "" H 1250 5750 50 0000 C CNN - 1 1250 5750 - 1 0 0 -1 -$EndComp -Text GLabel 1850 3050 2 60 Input ~ 0 -D5 -Text GLabel 1850 3700 2 60 Input ~ 0 -D6 -Text GLabel 1900 5550 2 60 Input ~ 0 -D11 -Text GLabel 1900 4350 2 60 Input ~ 0 -D9 -Text GLabel 1900 4950 2 60 Input ~ 0 -D10 -$Comp -L ArduinoLearningKitStarter:GND #PWR028 -U 1 1 58C2A0F7 -P 1150 7250 -F 0 "#PWR028" H 1150 7000 50 0001 C CNN -F 1 "GND" H 1150 7100 50 0000 C CNN -F 2 "" H 1150 7250 50 0000 C CNN -F 3 "" H 1150 7250 50 0000 C CNN - 1 1150 7250 - 1 0 0 -1 -$EndComp -Text GLabel 1900 6550 2 60 Input ~ 0 -VCC_SERVO -$Comp -L Device:Jumper_NC_Small JP9 -U 1 1 58C2CED2 -P 1600 6400 -F 0 "JP9" H 1600 6612 50 0000 C CNN -F 1 "Jumper" H 1600 6521 50 0000 C CNN -F 2 "Pin_Headers:Pin_Header_Straight_1x02" H 1600 6400 50 0001 C CNN -F 3 "" H 1600 6400 50 0001 C CNN - 1 1600 6400 - -1 0 0 -1 -$EndComp -$Comp -L Connector_Generic:Conn_01x08 J2 -U 1 1 58C2F86E -P 4600 3700 -F 0 "J2" H 4600 4150 50 0000 C CNN -F 1 "CONN_01X08" V 4700 3700 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" H 4600 3700 50 0001 C CNN -F 3 "" H 4600 3700 50 0001 C CNN - 1 4600 3700 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:+5V #PWR029 -U 1 1 58C30598 -P 1800 6400 -F 0 "#PWR029" H 1800 6250 50 0001 C CNN -F 1 "+5V" V 1700 6400 50 0000 L CNN -F 2 "" H 1800 6400 50 0000 C CNN -F 3 "" H 1800 6400 50 0000 C CNN - 1 1800 6400 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:+5V #PWR030 -U 1 1 58C30CE3 -P 4350 4100 -F 0 "#PWR030" H 4350 3950 50 0001 C CNN -F 1 "+5V" V 4365 4228 50 0000 L CNN -F 2 "" H 4350 4100 50 0000 C CNN -F 3 "" H 4350 4100 50 0000 C CNN - 1 4350 4100 - 0 -1 -1 0 -$EndComp -$Comp -L Connector_Generic:Conn_01x06 J3 -U 1 1 58C3103E -P 4600 4600 -F 0 "J3" H 4600 4950 50 0000 C CNN -F 1 "CONN_01X06" V 4700 4600 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" H 4600 4600 50 0001 C CNN -F 3 "" H 4600 4600 50 0001 C CNN - 1 4600 4600 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR031 -U 1 1 58C31560 -P 4350 4900 -F 0 "#PWR031" H 4350 4650 50 0001 C CNN -F 1 "GND" H 4350 4750 50 0000 C CNN -F 2 "" H 4350 4900 50 0000 C CNN -F 3 "" H 4350 4900 50 0000 C CNN - 1 4350 4900 - 0 1 1 0 -$EndComp -$Comp -L Connector_Generic:Conn_01x08 J4 -U 1 1 58C318EF -P 4600 5500 -F 0 "J4" H 4600 5950 50 0000 C CNN -F 1 "CONN_01X08" V 4700 5500 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" H 4600 5500 50 0001 C CNN -F 3 "" H 4600 5500 50 0001 C CNN - 1 4600 5500 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR032 -U 1 1 58C319C6 -P 4350 5900 -F 0 "#PWR032" H 4350 5650 50 0001 C CNN -F 1 "GND" H 4350 5750 50 0000 C CNN -F 2 "" H 4350 5900 50 0000 C CNN -F 3 "" H 4350 5900 50 0000 C CNN - 1 4350 5900 - 0 1 1 0 -$EndComp -$Comp -L Connector_Generic:Conn_01x10 J5 -U 1 1 58C31A55 -P 4600 6650 -F 0 "J5" H 4600 7200 50 0000 C CNN -F 1 "CONN_01X10" V 4700 6650 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical" H 4600 6650 50 0001 C CNN -F 3 "" H 4600 6650 50 0001 C CNN - 1 4600 6650 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR033 -U 1 1 58C326A3 -P 4350 7150 -F 0 "#PWR033" H 4350 6900 50 0001 C CNN -F 1 "GND" H 4350 7000 50 0000 C CNN -F 2 "" H 4350 7150 50 0000 C CNN -F 3 "" H 4350 7150 50 0000 C CNN - 1 4350 7150 - 0 1 1 0 -$EndComp -Text GLabel 7950 1300 0 60 Input ~ 0 -IOREF -$Comp -L ArduinoLearningKitStarter:GND #PWR034 -U 1 1 58C335CF -P 4400 3400 -F 0 "#PWR034" H 4400 3150 50 0001 C CNN -F 1 "GND" H 4400 3250 50 0000 C CNN -F 2 "" H 4400 3400 50 0000 C CNN -F 3 "" H 4400 3400 50 0000 C CNN - 1 4400 3400 - -1 0 0 1 -$EndComp -Text GLabel 4400 3500 0 60 Input ~ 0 -IOREF -$Comp -L ArduinoLearningKitStarter:GND #PWR035 -U 1 1 58C33A9B -P 4100 3600 -F 0 "#PWR035" H 4100 3350 50 0001 C CNN -F 1 "GND" V 4100 3350 50 0000 C CNN -F 2 "" H 4100 3600 50 0000 C CNN -F 3 "" H 4100 3600 50 0000 C CNN - 1 4100 3600 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:+3V3 #PWR036 -U 1 1 58C33C8A -P 3900 3700 -F 0 "#PWR036" H 3900 3550 50 0001 C CNN -F 1 "+3V3" V 3915 3828 50 0000 L CNN -F 2 "" H 3900 3700 50 0000 C CNN -F 3 "" H 3900 3700 50 0000 C CNN - 1 3900 3700 - 0 -1 -1 0 -$EndComp -$Comp -L Device:R R23 -U 1 1 58C39409 -P 3500 6650 -F 0 "R23" V 3500 6650 50 0000 C CNN -F 1 "1k" V 3384 6650 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 3500 6650 50 0001 C CNN -F 3 "" H 3500 6650 50 0001 C CNN - 1 3500 6650 - 0 1 1 0 -$EndComp -$Comp -L Device:R R24 -U 1 1 58C39551 -P 3500 6750 -F 0 "R24" V 3500 6750 50 0000 C CNN -F 1 "1k" V 3600 6750 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 3500 6750 50 0001 C CNN -F 3 "" H 3500 6750 50 0001 C CNN - 1 3500 6750 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR037 -U 1 1 58C39C30 -P 3200 6550 -F 0 "#PWR037" H 3200 6300 50 0001 C CNN -F 1 "GND" H 3200 6400 50 0000 C CNN -F 2 "" H 3200 6550 50 0000 C CNN -F 3 "" H 3200 6550 50 0000 C CNN - 1 3200 6550 - 0 -1 1 0 -$EndComp -Text GLabel 3750 6750 2 60 Input ~ 0 -D1 -$Comp -L ArduinoLearningKitStarter:GND #PWR038 -U 1 1 58C3D24F -P 3350 5600 -F 0 "#PWR038" H 3350 5350 50 0001 C CNN -F 1 "GND" H 3350 5450 50 0000 C CNN -F 2 "" H 3350 5600 50 0000 C CNN -F 3 "" H 3350 5600 50 0000 C CNN - 1 3350 5600 - -1 0 0 -1 -$EndComp -$Comp -L Device:R R3 -U 1 1 58C3D521 -P 3500 5500 -F 0 "R3" V 3500 5500 50 0000 C CNN -F 1 "20k" V 3400 5500 50 0000 C CNN -F 2 "Resistors_SMD:R_1206_HandSoldering" H 3500 5500 50 0001 C CNN -F 3 "" H 3500 5500 50 0001 C CNN - 1 3500 5500 - 0 1 1 0 -$EndComp -Text GLabel 3200 5400 2 60 Input ~ 0 -A3 -$Comp -L Device:Jumper_NC_Small JP17 -U 1 1 58C407B0 -P 8400 3250 -F 0 "JP17" H 8400 3330 50 0000 C CNN -F 1 "Jumper" H 8410 3190 50 0000 C CNN -F 2 "Pin_Headers:Pin_Header_Straight_1x02" H 8400 3250 50 0001 C CNN -F 3 "" H 8400 3250 50 0001 C CNN - 1 8400 3250 - 0 -1 -1 0 -$EndComp -Text GLabel 7700 3500 0 60 Input ~ 0 -D2 -$Comp -L ArduinoLearningKitStarter:C_Small C4 -U 1 1 58DE66DE -P 1600 3250 -F 0 "C4" V 1750 3250 50 0000 C CNN -F 1 "10uF" V 1850 3250 50 0000 C CNN -F 2 "Capacitors_SMD:C_0805_HandSoldering" H 1600 3250 50 0001 C CNN -F 3 "" H 1600 3250 50 0001 C CNN - 1 1600 3250 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:C_Small C5 -U 1 1 58DE6B28 -P 1600 3900 -F 0 "C5" V 1750 3900 50 0000 C CNN -F 1 "10uF" V 1850 3900 50 0000 C CNN -F 2 "Capacitors_SMD:C_0805_HandSoldering" H 1600 3900 50 0001 C CNN -F 3 "" H 1600 3900 50 0001 C CNN - 1 1600 3900 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:C_Small C6 -U 1 1 58DE6CDD -P 1600 4550 -F 0 "C6" V 1737 4550 50 0000 C CNN -F 1 "10 μF" V 1828 4550 50 0000 C CNN -F 2 "Capacitors_SMD:C_0805_HandSoldering" H 1600 4550 50 0001 C CNN -F 3 "" H 1600 4550 50 0001 C CNN - 1 1600 4550 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:C_Small C7 -U 1 1 58DE7055 -P 1600 5150 -F 0 "C7" V 1737 5150 50 0000 C CNN -F 1 "10uF" V 1828 5150 50 0000 C CNN -F 2 "Capacitors_SMD:C_0805_HandSoldering" H 1600 5150 50 0001 C CNN -F 3 "" H 1600 5150 50 0001 C CNN - 1 1600 5150 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:C_Small C8 -U 1 1 58DE720C -P 1600 5750 -F 0 "C8" V 1750 5750 50 0000 C CNN -F 1 "10uF" V 1850 5750 50 0000 C CNN -F 2 "Capacitors_SMD:C_0805_HandSoldering" H 1600 5750 50 0001 C CNN -F 3 "" H 1600 5750 50 0001 C CNN - 1 1600 5750 - 0 1 1 0 -$EndComp -Text GLabel 7900 3050 0 60 Input ~ 0 -IOREF_U -$Comp -L Connector_Generic:Conn_01x04 J7 -U 1 1 58C3CBC9 -P 3000 5500 -F 0 "J7" H 3000 5750 50 0000 C CNN -F 1 "CONN_01X04" V 3100 5500 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 3000 5500 50 0001 C CNN -F 3 "" H 3000 5500 50 0001 C CNN - 1 3000 5500 - -1 0 0 1 -$EndComp -$Comp -L Connector_Generic:Conn_01x04 J6 -U 1 1 58C39125 -P 3000 6650 -F 0 "J6" H 3000 6900 50 0000 C CNN -F 1 "CONN_01X04" V 3100 6650 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Horizontal" H 3000 6650 50 0001 C CNN -F 3 "" H 3000 6650 50 0001 C CNN - 1 3000 6650 - -1 0 0 1 -$EndComp -Text GLabel 7900 4800 0 60 Input ~ 0 -IOREF_U -Text GLabel 6700 4700 2 60 Input ~ 0 -IOREF_U -Text GLabel 7900 5800 0 60 Input ~ 0 -IOREF_U -Text GLabel 6450 6550 1 60 Input ~ 0 -IOREF_U -Text GLabel 6700 5450 2 60 Input ~ 0 -IOREF_U -Text GLabel 3750 6650 2 60 Input ~ 0 -D0 -Text GLabel 3200 5300 2 60 Input ~ 0 -IOREF_U -Text GLabel 3300 6350 2 60 Input ~ 0 -IOREF_U -Text GLabel 10450 2950 0 60 Input ~ 0 -IOREF_U -$Comp -L Device:Jumper_NC_Dual JP18 -U 1 1 59023141 -P 10250 5250 -F 0 "JP18" H 10300 5150 50 0000 L CNN -F 1 "Jumper_NC_Dual" H 10250 5350 50 0000 C BNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 10250 5250 50 0001 C CNN -F 3 "" H 10250 5250 50 0001 C CNN - 1 10250 5250 - 1 0 0 -1 -$EndComp -Text GLabel 10250 5350 3 60 Input ~ 0 -IOREF_U -$Comp -L ArduinoLearningKitStarter:+5V #PWR039 -U 1 1 590233A7 -P 9900 5250 -F 0 "#PWR039" H 9900 5100 50 0001 C CNN -F 1 "+5V" V 9915 5378 50 0000 L CNN -F 2 "" H 9900 5250 50 0001 C CNN -F 3 "" H 9900 5250 50 0001 C CNN - 1 9900 5250 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:+3V3 #PWR040 -U 1 1 590237F3 -P 10750 5250 -F 0 "#PWR040" H 10750 5100 50 0001 C CNN -F 1 "+3V3" V 10765 5378 50 0000 L CNN -F 2 "" H 10750 5250 50 0000 C CNN -F 3 "" H 10750 5250 50 0000 C CNN - 1 10750 5250 - 0 1 1 0 -$EndComp -Text Notes 9600 5050 0 60 ~ 0 -Selects 5/3V3 board variant\n(pull-up resistors, DHT power, ...) -$Comp -L Connector_Generic:Conn_01x02 J8 -U 1 1 5905E2A7 -P 1900 6750 -F 0 "J8" H 1900 6850 50 0000 C CNN -F 1 "CONN_01X02" H 1900 6500 50 0000 C CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 1900 6750 50 0001 C CNN -F 3 "" H 1900 6750 50 0001 C CNN - 1 1900 6750 - 1 0 0 -1 -$EndComp -Wire Wire Line - 5300 1050 4850 1050 -Wire Wire Line - 5300 2250 5050 2250 -Wire Wire Line - 5050 2350 5300 2350 -Wire Wire Line - 6850 2050 7100 2050 -Wire Wire Line - 7950 1900 7800 1900 -Wire Wire Line - 7950 1800 7950 1700 -Wire Wire Line - 7800 1600 7950 1600 -Wire Wire Line - 10900 1000 10900 900 -Wire Wire Line - 1100 2600 1100 2650 -Wire Wire Line - 5850 4950 5650 4950 -Wire Wire Line - 5850 3250 5700 3250 -Wire Wire Line - 5850 3600 5700 3600 -Wire Wire Line - 5850 3950 5700 3950 -Wire Wire Line - 5850 4300 5700 4300 -Wire Wire Line - 6100 7050 5900 7050 -Wire Wire Line - 5850 5700 5650 5700 -Wire Wire Line - 9050 4850 9050 5300 -Connection ~ 9050 5300 -Wire Wire Line - 9050 3050 9050 3500 -Connection ~ 9050 3500 -Wire Wire Line - 9050 3850 9050 4300 -Connection ~ 9050 4300 -Wire Wire Line - 8400 4850 8400 5300 -Wire Wire Line - 8400 3850 8400 4300 -Wire Wire Line - 1100 1100 1100 1200 -Wire Wire Line - 1050 7150 1050 7250 -Wire Wire Line - 1050 7250 1150 7250 -Wire Wire Line - 1150 7250 1150 7150 -Wire Wire Line - 1450 6550 1500 6550 -Wire Wire Line - 3200 5600 3350 5600 -Wire Wire Line - 8400 3050 8400 3150 -Wire Wire Line - 8400 3350 8400 3500 -Wire Wire Line - 9900 5250 10000 5250 -Wire Wire Line - 10500 5250 10750 5250 -Wire Wire Line - 1450 6750 1700 6750 -Wire Wire Line - 1450 6850 1700 6850 -Text Label 1550 6750 0 60 ~ 0 -D+ -Text Label 1550 6850 0 60 ~ 0 -D- -$Comp -L ArduinoLearningKitStarter:ESP32-DEVKIT-C-yaqwsx U3 -U 1 1 5914FD59 -P 2950 1850 -F 0 "U3" H 2950 2850 60 0000 C CNN -F 1 "ESP32-DEVKIT-C" H 2950 850 60 0000 C CNN -F 2 "yaqwsx:ESP32-DEVKIT-C" H 2950 1500 60 0001 C CNN -F 3 "" H 2950 1500 60 0001 C CNN - 1 2950 1850 - 1 0 0 -1 -$EndComp -$Comp -L ArduinoLearningKitStarter:+3V3 #PWR041 -U 1 1 5914FF34 -P 2450 950 -F 0 "#PWR041" H 2450 800 50 0001 C CNN -F 1 "+3V3" H 2450 1090 50 0000 C CNN -F 2 "" H 2450 950 50 0000 C CNN -F 3 "" H 2450 950 50 0000 C CNN - 1 2450 950 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:+5V #PWR042 -U 1 1 59150129 -P 2450 2750 -F 0 "#PWR042" H 2450 2600 50 0001 C CNN -F 1 "+5V" H 2450 2890 50 0000 C CNN -F 2 "" H 2450 2750 50 0000 C CNN -F 3 "" H 2450 2750 50 0000 C CNN - 1 2450 2750 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR043 -U 1 1 5915031E -P 3800 1550 -F 0 "#PWR043" H 3800 1300 50 0001 C CNN -F 1 "GND" H 3800 1400 50 0000 C CNN -F 2 "" H 3800 1550 50 0000 C CNN -F 3 "" H 3800 1550 50 0000 C CNN - 1 3800 1550 - 0 -1 -1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR044 -U 1 1 59150419 -P 2200 2250 -F 0 "#PWR044" H 2200 2000 50 0001 C CNN -F 1 "GND" H 2200 2100 50 0000 C CNN -F 2 "" H 2200 2250 50 0000 C CNN -F 3 "" H 2200 2250 50 0000 C CNN - 1 2200 2250 - 0 1 1 0 -$EndComp -$Comp -L ArduinoLearningKitStarter:GND #PWR045 -U 1 1 59150514 -P 3850 950 -F 0 "#PWR045" H 3850 700 50 0001 C CNN -F 1 "GND" H 3850 800 50 0000 C CNN -F 2 "" H 3850 950 50 0000 C CNN -F 3 "" H 3850 950 50 0000 C CNN - 1 3850 950 - 0 -1 -1 0 -$EndComp -Text GLabel 3500 2350 2 60 Input ~ 0 -D3 -Text GLabel 3500 2250 2 60 Input ~ 0 -D4 -Text Notes 8400 4550 0 60 ~ 0 -ESP32 - boot1 -Text Notes 8400 5550 0 60 ~ 0 -ESP32 - boot2 -Text GLabel 2450 1550 0 60 Input ~ 0 -A0 -Text GLabel 2450 1650 0 60 Input ~ 0 -A1 -Text GLabel 2450 1750 0 60 Input ~ 0 -A2 -Text GLabel 2450 1850 0 60 Input ~ 0 -A3 -Text GLabel 2450 1950 0 60 Input ~ 0 -A4 -Text GLabel 2450 2050 0 60 Input ~ 0 -A5 -Text GLabel 2450 2150 0 60 Input ~ 0 -A6 -Wire Wire Line - 2200 2250 2450 2250 -Text GLabel 2450 2350 0 60 Input ~ 0 -A7 -NoConn ~ 2450 2450 -NoConn ~ 2450 2550 -NoConn ~ 2450 2650 -NoConn ~ 3500 2750 -NoConn ~ 3500 2650 -NoConn ~ 3500 2550 -Text GLabel 2250 1050 0 60 Input ~ 0 -RST -Wire Wire Line - 2250 1050 2450 1050 -Text GLabel 3500 1350 2 60 Input ~ 0 -D0 -Text GLabel 3500 1250 2 60 Input ~ 0 -D1 -Text GLabel 3500 2450 2 60 Input ~ 0 -D2 -Text GLabel 3500 2150 2 60 Input ~ 0 -D5 -Text GLabel 3500 2050 2 60 Input ~ 0 -D6 -Text GLabel 3500 1950 2 60 Input ~ 0 -D7 -Text GLabel 3500 1850 2 60 Input ~ 0 -D8 -Text GLabel 3500 1750 2 60 Input ~ 0 -D9 -Wire Wire Line - 3800 1550 3500 1550 -Text GLabel 3500 1650 2 60 Input ~ 0 -D10 -Text GLabel 3500 1450 2 60 Input ~ 0 -D11 -Text GLabel 3500 1150 2 60 Input ~ 0 -D12 -Wire Wire Line - 3850 950 3500 950 -Text GLabel 3500 1050 2 60 Input ~ 0 -D13 -NoConn ~ 2450 1150 -NoConn ~ 2450 1250 -NoConn ~ 2450 1350 -NoConn ~ 2450 1450 -Wire Wire Line - 9050 5300 9150 5300 -Wire Wire Line - 9050 3500 9150 3500 -Wire Wire Line - 9050 4300 9150 4300 -Wire Wire Line - 1200 3050 1300 3050 -Wire Wire Line - 4400 5200 4400 5300 -Wire Wire Line - 4400 5300 4400 5400 -Connection ~ 4400 5300 -Wire Wire Line - 4400 5400 4400 5500 -Connection ~ 4400 5400 -Wire Wire Line - 4400 5500 4400 5600 -Connection ~ 4400 5500 -Wire Wire Line - 4400 5600 4400 5700 -Connection ~ 4400 5600 -Wire Wire Line - 4400 5700 4400 5800 -Connection ~ 4400 5700 -Wire Wire Line - 4400 5800 4400 5900 -Connection ~ 4400 5800 -Wire Wire Line - 4400 5900 4350 5900 -Connection ~ 4400 5900 -Wire Wire Line - 4400 6250 4400 6350 -Wire Wire Line - 4400 6450 4400 6350 -Connection ~ 4400 6350 -Wire Wire Line - 4400 6450 4400 6550 -Connection ~ 4400 6450 -Wire Wire Line - 4400 6550 4400 6650 -Connection ~ 4400 6550 -Wire Wire Line - 4400 6650 4400 6750 -Connection ~ 4400 6650 -Wire Wire Line - 4400 6750 4400 6850 -Connection ~ 4400 6750 -Wire Wire Line - 4400 6850 4400 6950 -Connection ~ 4400 6850 -Wire Wire Line - 4400 6950 4400 7050 -Connection ~ 4400 6950 -Wire Wire Line - 4400 7050 4400 7150 -Connection ~ 4400 7050 -Wire Wire Line - 4400 7150 4350 7150 -Connection ~ 4400 7150 -Wire Wire Line - 1300 3700 1200 3700 -Wire Wire Line - 1300 4350 1200 4350 -Wire Wire Line - 1200 4950 1300 4950 -Wire Wire Line - 1300 5550 1200 5550 -Wire Wire Line - 3650 6650 3750 6650 -Wire Wire Line - 3650 6750 3750 6750 -Wire Wire Line - 4400 4400 4400 4500 -Wire Wire Line - 4400 4500 4400 4600 -Connection ~ 4400 4500 -Wire Wire Line - 4400 4600 4400 4700 -Connection ~ 4400 4600 -Wire Wire Line - 4400 4700 4400 4800 -Connection ~ 4400 4700 -Wire Wire Line - 4400 4800 4400 4900 -Connection ~ 4400 4800 -Wire Wire Line - 4400 4900 4350 4900 -Connection ~ 4400 4900 -Wire Wire Line - 6850 3250 6950 3250 -Wire Wire Line - 6850 3600 6950 3600 -Wire Wire Line - 6850 3950 6950 3950 -Wire Wire Line - 6850 4300 6950 4300 -Wire Wire Line - 6050 4950 6150 4950 -Wire Wire Line - 6050 5700 6150 5700 -Wire Wire Line - 6450 7450 6450 7550 -Wire Wire Line - 7900 5300 7900 5400 -Wire Wire Line - 7900 5300 8000 5300 -Connection ~ 7900 5300 -Wire Wire Line - 7900 5700 7900 5800 -Wire Wire Line - 7900 4800 7900 4700 -Wire Wire Line - 7900 4300 8000 4300 -Wire Wire Line - 7900 4300 7900 4400 -Connection ~ 7900 4300 -Wire Wire Line - 8300 4300 8400 4300 -Wire Wire Line - 8500 4300 8400 4300 -Connection ~ 8400 4300 -Wire Wire Line - 8900 4300 9050 4300 -Wire Wire Line - 8900 3850 9050 3850 -Wire Wire Line - 8400 3850 8600 3850 -Wire Wire Line - 8300 5300 8400 5300 -Wire Wire Line - 8500 5300 8400 5300 -Connection ~ 8400 5300 -Wire Wire Line - 8900 5300 9050 5300 -Wire Wire Line - 8900 4850 9050 4850 -Wire Wire Line - 8400 4850 8600 4850 -Wire Wire Line - 8500 3500 8400 3500 -Wire Wire Line - 8300 3500 8400 3500 -Connection ~ 8400 3500 -Wire Wire Line - 8000 3500 7900 3500 -Wire Wire Line - 7900 3050 8000 3050 -Wire Wire Line - 8300 3050 8400 3050 -Connection ~ 8400 3050 -Wire Wire Line - 8400 3050 8600 3050 -Wire Wire Line - 8900 3050 9050 3050 -Wire Wire Line - 8900 3500 9050 3500 -Wire Wire Line - 1100 1400 1100 1450 -Wire Wire Line - 10700 2200 10700 2300 -Wire Wire Line - 10500 1600 10500 1800 -Wire Wire Line - 10700 1600 10700 1800 -Wire Wire Line - 10900 1600 10900 1800 -Wire Wire Line - 6450 6650 6450 6550 -Wire Wire Line - 4400 3600 4100 3600 -Wire Wire Line - 4400 3800 4400 3900 -Wire Wire Line - 4400 3900 4400 4000 -Connection ~ 4400 3900 -Wire Wire Line - 4400 4100 4400 4000 -Connection ~ 4400 4000 -Wire Wire Line - 4400 4100 4350 4100 -Connection ~ 4400 4100 -Wire Wire Line - 6550 4950 6450 4950 -Wire Wire Line - 6700 4800 6700 4700 -Wire Wire Line - 6700 5550 6700 5450 -Wire Wire Line - 6550 5700 6450 5700 -NoConn ~ 10450 3150 -Wire Wire Line - 1100 1750 1100 1800 -Wire Wire Line - 5050 2050 5300 2050 -Connection ~ 7950 1700 -Wire Wire Line - 7800 1500 7950 1500 -Wire Wire Line - 9750 1100 9450 1100 -Wire Wire Line - 3300 6350 3250 6350 -Wire Wire Line - 3250 6350 3250 6450 -Wire Wire Line - 3250 6450 3200 6450 -Wire Wire Line - 3200 6650 3350 6650 -Wire Wire Line - 3200 6750 3350 6750 -Wire Wire Line - 1200 5750 1250 5750 -Wire Wire Line - 1200 3150 1800 3150 -Wire Wire Line - 1800 3250 1800 3150 -Wire Wire Line - 1800 3250 1700 3250 -Wire Wire Line - 1250 3250 1500 3250 -Wire Wire Line - 1200 3250 1250 3250 -Connection ~ 1250 3250 -Wire Wire Line - 1800 3150 1850 3150 -Connection ~ 1800 3150 -Wire Wire Line - 1600 3050 1850 3050 -Wire Wire Line - 1200 3800 1800 3800 -Wire Wire Line - 1800 3900 1800 3800 -Wire Wire Line - 1200 3900 1250 3900 -Connection ~ 1250 3900 -Wire Wire Line - 1250 3900 1500 3900 -Wire Wire Line - 1600 3700 1850 3700 -Wire Wire Line - 1850 3800 1800 3800 -Connection ~ 1800 3800 -Wire Wire Line - 1700 3900 1800 3900 -Wire Wire Line - 1200 4550 1250 4550 -Wire Wire Line - 1600 4350 1900 4350 -Wire Wire Line - 1200 4450 1800 4450 -Wire Wire Line - 1700 4550 1800 4550 -Wire Wire Line - 1800 4550 1800 4450 -Connection ~ 1800 4450 -Wire Wire Line - 1800 4450 1900 4450 -Connection ~ 1250 4550 -Wire Wire Line - 1250 4550 1500 4550 -Wire Wire Line - 1200 5050 1800 5050 -Wire Wire Line - 1200 5150 1250 5150 -Wire Wire Line - 1700 5150 1800 5150 -Wire Wire Line - 1800 5150 1800 5050 -Wire Wire Line - 1600 4950 1900 4950 -Connection ~ 1250 5150 -Wire Wire Line - 1250 5150 1500 5150 -Wire Wire Line - 1900 5050 1800 5050 -Connection ~ 1800 5050 -Connection ~ 1250 5750 -Wire Wire Line - 1250 5750 1500 5750 -Wire Wire Line - 1200 5650 1800 5650 -Wire Wire Line - 1600 5550 1900 5550 -Wire Wire Line - 1700 5750 1800 5750 -Wire Wire Line - 1800 5750 1800 5650 -Connection ~ 1800 5650 -Wire Wire Line - 1800 5650 1900 5650 -Wire Wire Line - 3200 5500 3350 5500 -Wire Wire Line - 3650 5500 3700 5500 -Wire Wire Line - 3700 5500 3700 5600 -Connection ~ 3350 5600 -Wire Wire Line - 3350 5600 3700 5600 -Wire Wire Line - 1500 6550 1900 6550 -Connection ~ 1500 6550 -Wire Wire Line - 1500 6400 1500 6550 -Wire Wire Line - 1700 6400 1800 6400 -Wire Wire Line - 6450 6950 6450 7050 -Wire Wire Line - 6300 7050 6450 7050 -Connection ~ 6450 7050 -Wire Wire Line - 6450 7050 6450 7150 -Wire Wire Line - 3900 3700 4400 3700 -Wire Wire Line - 10500 1200 10500 1300 -Wire Wire Line - 10500 900 10500 1000 -Wire Wire Line - 10700 1200 10700 1300 -Wire Wire Line - 10700 1000 10700 900 -Wire Wire Line - 10900 1200 10900 1300 -Wire Wire Line - 6450 4300 6550 4300 -Wire Wire Line - 6450 3950 6550 3950 -Wire Wire Line - 6450 3600 6550 3600 -Wire Wire Line - 6450 3250 6550 3250 -Wire Wire Line - 6050 4300 6150 4300 -Wire Wire Line - 6050 3950 6150 3950 -Wire Wire Line - 6050 3600 6150 3600 -Wire Wire Line - 6050 3250 6150 3250 -$EndSCHEMATC diff --git a/tests/yaml_samples/render_3d_list.kibot.yaml b/tests/yaml_samples/render_3d_list.kibot.yaml index f92815e2..ae0e467c 100644 --- a/tests/yaml_samples/render_3d_list.kibot.yaml +++ b/tests/yaml_samples/render_3d_list.kibot.yaml @@ -16,5 +16,8 @@ outputs: orthographic: true zoom: 4 show_components: ["RV1", "RV2", "U1", "U2", "U3"] + highlight: ["RV1"] + # Looks ugly when rendered by software + # highlight_on_top: true ray_tracing: true auto_crop: true