├── .gitignore ├── Datasheets └── LS011B7DH03_24Nov17_Spec_LD-29Y03.pdf ├── LICENCE.md ├── PCB └── SharpMemoryLcdBreakout │ ├── SharpMemoryLcdBreakout-PANELIZED.kicad_pcb │ ├── SharpMemoryLcdBreakout.kicad_pcb │ ├── SharpMemoryLcdBreakout.kicad_prl │ ├── SharpMemoryLcdBreakout.kicad_pro │ ├── SharpMemoryLcdBreakout.kicad_sch │ ├── SharpMemoryLcdBreakout.pretty │ ├── PinHeader_2Rows-05Pins_P2.54mm_Vertical.kicad_mod │ ├── PinSocket_2Row_5+3_P2.54mm_Vertical.kicad_mod │ ├── PinSocket_2x04_P2.54mm_Vertical.kicad_mod │ └── mouse-bite-2mm-slot.kicad_mod │ └── fp-lib-table ├── Pictures ├── SharpMemoryLcdBreakout.png └── displayOnBreakoutBoard.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.sch-bak 10 | *~ 11 | _autosave-* 12 | *.tmp 13 | *-save.pro 14 | *-save.kicad_pcb 15 | fp-info-cache 16 | SharpMemoryLcdBreakout-backups 17 | 18 | # Netlist files (exported from Eeschema) 19 | *.net 20 | 21 | # Autorouter files (exported from Pcbnew) 22 | *.dsn 23 | *.ses 24 | 25 | # Exported BOM files 26 | *.xml 27 | *.csv 28 | -------------------------------------------------------------------------------- /Datasheets/LS011B7DH03_24Nov17_Spec_LD-29Y03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crehmann/Sharp-Memory-LCD-Breakout/1ab3fbbd07b1b0d569f4bbf1f4141c523ae23301/Datasheets/LS011B7DH03_24Nov17_Spec_LD-29Y03.pdf -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence Version 2 - Strongly Reciprocal 2 | 3 | 4 | Preamble 5 | 6 | CERN has developed this licence to promote collaboration among 7 | hardware designers and to provide a legal tool which supports the 8 | freedom to use, study, modify, share and distribute hardware designs 9 | and products based on those designs. Version 2 of the CERN Open 10 | Hardware Licence comes in three variants: CERN-OHL-P (permissive); and 11 | two reciprocal licences: CERN-OHL-W (weakly reciprocal) and this 12 | licence, CERN-OHL-S (strongly reciprocal). 13 | 14 | The CERN-OHL-S is copyright CERN 2020. Anyone is welcome to use it, in 15 | unmodified form only. 16 | 17 | Use of this Licence does not imply any endorsement by CERN of any 18 | Licensor or their designs nor does it imply any involvement by CERN in 19 | their development. 20 | 21 | 22 | 1 Definitions 23 | 24 | 1.1 'Licence' means this CERN-OHL-S. 25 | 26 | 1.2 'Compatible Licence' means 27 | 28 | a) any earlier version of the CERN Open Hardware licence, or 29 | 30 | b) any version of the CERN-OHL-S, or 31 | 32 | c) any licence which permits You to treat the Source to which 33 | it applies as licensed under CERN-OHL-S provided that on 34 | Conveyance of any such Source, or any associated Product You 35 | treat the Source in question as being licensed under 36 | CERN-OHL-S. 37 | 38 | 1.3 'Source' means information such as design materials or digital 39 | code which can be applied to Make or test a Product or to 40 | prepare a Product for use, Conveyance or sale, regardless of its 41 | medium or how it is expressed. It may include Notices. 42 | 43 | 1.4 'Covered Source' means Source that is explicitly made available 44 | under this Licence. 45 | 46 | 1.5 'Product' means any device, component, work or physical object, 47 | whether in finished or intermediate form, arising from the use, 48 | application or processing of Covered Source. 49 | 50 | 1.6 'Make' means to create or configure something, whether by 51 | manufacture, assembly, compiling, loading or applying Covered 52 | Source or another Product or otherwise. 53 | 54 | 1.7 'Available Component' means any part, sub-assembly, library or 55 | code which: 56 | 57 | a) is licensed to You as Complete Source under a Compatible 58 | Licence; or 59 | 60 | b) is available, at the time a Product or the Source containing 61 | it is first Conveyed, to You and any other prospective 62 | licensees 63 | 64 | i) as a physical part with sufficient rights and 65 | information (including any configuration and 66 | programming files and information about its 67 | characteristics and interfaces) to enable it either to 68 | be Made itself, or to be sourced and used to Make the 69 | Product; or 70 | ii) as part of the normal distribution of a tool used to 71 | design or Make the Product. 72 | 73 | 1.8 'Complete Source' means the set of all Source necessary to Make 74 | a Product, in the preferred form for making modifications, 75 | including necessary installation and interfacing information 76 | both for the Product, and for any included Available Components. 77 | If the format is proprietary, it must also be made available in 78 | a format (if the proprietary tool can create it) which is 79 | viewable with a tool available to potential licensees and 80 | licensed under a licence approved by the Free Software 81 | Foundation or the Open Source Initiative. Complete Source need 82 | not include the Source of any Available Component, provided that 83 | You include in the Complete Source sufficient information to 84 | enable a recipient to Make or source and use the Available 85 | Component to Make the Product. 86 | 87 | 1.9 'Source Location' means a location where a Licensor has placed 88 | Covered Source, and which that Licensor reasonably believes will 89 | remain easily accessible for at least three years for anyone to 90 | obtain a digital copy. 91 | 92 | 1.10 'Notice' means copyright, acknowledgement and trademark notices, 93 | Source Location references, modification notices (subsection 94 | 3.3(b)) and all notices that refer to this Licence and to the 95 | disclaimer of warranties that are included in the Covered 96 | Source. 97 | 98 | 1.11 'Licensee' or 'You' means any person exercising rights under 99 | this Licence. 100 | 101 | 1.12 'Licensor' means a natural or legal person who creates or 102 | modifies Covered Source. A person may be a Licensee and a 103 | Licensor at the same time. 104 | 105 | 1.13 'Convey' means to communicate to the public or distribute. 106 | 107 | 108 | 2 Applicability 109 | 110 | 2.1 This Licence governs the use, copying, modification, Conveying 111 | of Covered Source and Products, and the Making of Products. By 112 | exercising any right granted under this Licence, You irrevocably 113 | accept these terms and conditions. 114 | 115 | 2.2 This Licence is granted by the Licensor directly to You, and 116 | shall apply worldwide and without limitation in time. 117 | 118 | 2.3 You shall not attempt to restrict by contract or otherwise the 119 | rights granted under this Licence to other Licensees. 120 | 121 | 2.4 This Licence is not intended to restrict fair use, fair dealing, 122 | or any other similar right. 123 | 124 | 125 | 3 Copying, Modifying and Conveying Covered Source 126 | 127 | 3.1 You may copy and Convey verbatim copies of Covered Source, in 128 | any medium, provided You retain all Notices. 129 | 130 | 3.2 You may modify Covered Source, other than Notices, provided that 131 | You irrevocably undertake to make that modified Covered Source 132 | available from a Source Location should You Convey a Product in 133 | circumstances where the recipient does not otherwise receive a 134 | copy of the modified Covered Source. In each case subsection 3.3 135 | shall apply. 136 | 137 | You may only delete Notices if they are no longer applicable to 138 | the corresponding Covered Source as modified by You and You may 139 | add additional Notices applicable to Your modifications. 140 | Including Covered Source in a larger work is modifying the 141 | Covered Source, and the larger work becomes modified Covered 142 | Source. 143 | 144 | 3.3 You may Convey modified Covered Source (with the effect that You 145 | shall also become a Licensor) provided that You: 146 | 147 | a) retain Notices as required in subsection 3.2; 148 | 149 | b) add a Notice to the modified Covered Source stating that You 150 | have modified it, with the date and brief description of how 151 | You have modified it; 152 | 153 | c) add a Source Location Notice for the modified Covered Source 154 | if You Convey in circumstances where the recipient does not 155 | otherwise receive a copy of the modified Covered Source; and 156 | 157 | d) license the modified Covered Source under the terms and 158 | conditions of this Licence (or, as set out in subsection 159 | 8.3, a later version, if permitted by the licence of the 160 | original Covered Source). Such modified Covered Source must 161 | be licensed as a whole, but excluding Available Components 162 | contained in it, which remain licensed under their own 163 | applicable licences. 164 | 165 | 166 | 4 Making and Conveying Products 167 | 168 | You may Make Products, and/or Convey them, provided that You either 169 | provide each recipient with a copy of the Complete Source or ensure 170 | that each recipient is notified of the Source Location of the Complete 171 | Source. That Complete Source is Covered Source, and You must 172 | accordingly satisfy Your obligations set out in subsection 3.3. If 173 | specified in a Notice, the Product must visibly and securely display 174 | the Source Location on it or its packaging or documentation in the 175 | manner specified in that Notice. 176 | 177 | 178 | 5 Research and Development 179 | 180 | You may Convey Covered Source, modified Covered Source or Products to 181 | a legal entity carrying out development, testing or quality assurance 182 | work on Your behalf provided that the work is performed on terms which 183 | prevent the entity from both using the Source or Products for its own 184 | internal purposes and Conveying the Source or Products or any 185 | modifications to them to any person other than You. Any modifications 186 | made by the entity shall be deemed to be made by You pursuant to 187 | subsection 3.2. 188 | 189 | 190 | 6 DISCLAIMER AND LIABILITY 191 | 192 | 6.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products 193 | are provided 'as is' and any express or implied warranties, 194 | including, but not limited to, implied warranties of 195 | merchantability, of satisfactory quality, non-infringement of 196 | third party rights, and fitness for a particular purpose or use 197 | are disclaimed in respect of any Source or Product to the 198 | maximum extent permitted by law. The Licensor makes no 199 | representation that any Source or Product does not or will not 200 | infringe any patent, copyright, trade secret or other 201 | proprietary right. The entire risk as to the use, quality, and 202 | performance of any Source or Product shall be with You and not 203 | the Licensor. This disclaimer of warranty is an essential part 204 | of this Licence and a condition for the grant of any rights 205 | granted under this Licence. 206 | 207 | 6.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to 208 | the maximum extent permitted by law, have no liability for 209 | direct, indirect, special, incidental, consequential, exemplary, 210 | punitive or other damages of any character including, without 211 | limitation, procurement of substitute goods or services, loss of 212 | use, data or profits, or business interruption, however caused 213 | and on any theory of contract, warranty, tort (including 214 | negligence), product liability or otherwise, arising in any way 215 | in relation to the Covered Source, modified Covered Source 216 | and/or the Making or Conveyance of a Product, even if advised of 217 | the possibility of such damages, and You shall hold the 218 | Licensor(s) free and harmless from any liability, costs, 219 | damages, fees and expenses, including claims by third parties, 220 | in relation to such use. 221 | 222 | 223 | 7 Patents 224 | 225 | 7.1 Subject to the terms and conditions of this Licence, each 226 | Licensor hereby grants to You a perpetual, worldwide, 227 | non-exclusive, no-charge, royalty-free, irrevocable (except as 228 | stated in subsections 7.2 and 8.4) patent license to Make, have 229 | Made, use, offer to sell, sell, import, and otherwise transfer 230 | the Covered Source and Products, where such licence applies only 231 | to those patent claims licensable by such Licensor that are 232 | necessarily infringed by exercising rights under the Covered 233 | Source as Conveyed by that Licensor. 234 | 235 | 7.2 If You institute patent litigation against any entity (including 236 | a cross-claim or counterclaim in a lawsuit) alleging that the 237 | Covered Source or a Product constitutes direct or contributory 238 | patent infringement, or You seek any declaration that a patent 239 | licensed to You under this Licence is invalid or unenforceable 240 | then any rights granted to You under this Licence shall 241 | terminate as of the date such process is initiated. 242 | 243 | 244 | 8 General 245 | 246 | 8.1 If any provisions of this Licence are or subsequently become 247 | invalid or unenforceable for any reason, the remaining 248 | provisions shall remain effective. 249 | 250 | 8.2 You shall not use any of the name (including acronyms and 251 | abbreviations), image, or logo by which the Licensor or CERN is 252 | known, except where needed to comply with section 3, or where 253 | the use is otherwise allowed by law. Any such permitted use 254 | shall be factual and shall not be made so as to suggest any kind 255 | of endorsement or implication of involvement by the Licensor or 256 | its personnel. 257 | 258 | 8.3 CERN may publish updated versions and variants of this Licence 259 | which it considers to be in the spirit of this version, but may 260 | differ in detail to address new problems or concerns. New 261 | versions will be published with a unique version number and a 262 | variant identifier specifying the variant. If the Licensor has 263 | specified that a given variant applies to the Covered Source 264 | without specifying a version, You may treat that Covered Source 265 | as being released under any version of the CERN-OHL with that 266 | variant. If no variant is specified, the Covered Source shall be 267 | treated as being released under CERN-OHL-S. The Licensor may 268 | also specify that the Covered Source is subject to a specific 269 | version of the CERN-OHL or any later version in which case You 270 | may apply this or any later version of CERN-OHL with the same 271 | variant identifier published by CERN. 272 | 273 | 8.4 This Licence shall terminate with immediate effect if You fail 274 | to comply with any of its terms and conditions. 275 | 276 | 8.5 However, if You cease all breaches of this Licence, then Your 277 | Licence from any Licensor is reinstated unless such Licensor has 278 | terminated this Licence by giving You, while You remain in 279 | breach, a notice specifying the breach and requiring You to cure 280 | it within 30 days, and You have failed to come into compliance 281 | in all material respects by the end of the 30 day period. Should 282 | You repeat the breach after receipt of a cure notice and 283 | subsequent reinstatement, this Licence will terminate 284 | immediately and permanently. Section 6 shall continue to apply 285 | after any termination. 286 | 287 | 8.6 This Licence shall not be enforceable except by a Licensor 288 | acting as such, and third party beneficiary rights are 289 | specifically excluded. 290 | 291 | -------------------------------------------------------------------------------- /PCB/SharpMemoryLcdBreakout/SharpMemoryLcdBreakout.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 31, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 6, 37 | 8, 38 | 9, 39 | 10, 40 | 11, 41 | 12, 42 | 13, 43 | 14, 44 | 15, 45 | 16, 46 | 17, 47 | 18, 48 | 19, 49 | 20, 50 | 21, 51 | 22, 52 | 23, 53 | 24, 54 | 25, 55 | 26, 56 | 27, 57 | 28, 58 | 29, 59 | 30, 60 | 32, 61 | 33, 62 | 34, 63 | 35, 64 | 36 65 | ], 66 | "visible_layers": "ffefcfe_ffffffff", 67 | "zone_display_mode": 1 68 | }, 69 | "meta": { 70 | "filename": "SharpMemoryLcdBreakout.kicad_prl", 71 | "version": 3 72 | }, 73 | "project": { 74 | "files": [] 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /PCB/SharpMemoryLcdBreakout/SharpMemoryLcdBreakout.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.09999999999999999, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.15, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.15, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [ 52 | { 53 | "gap": 0.0, 54 | "via_gap": 0.0, 55 | "width": 0.0 56 | } 57 | ], 58 | "drc_exclusions": [], 59 | "meta": { 60 | "version": 2 61 | }, 62 | "rule_severities": { 63 | "annular_width": "error", 64 | "clearance": "error", 65 | "copper_edge_clearance": "error", 66 | "courtyards_overlap": "error", 67 | "diff_pair_gap_out_of_range": "error", 68 | "diff_pair_uncoupled_length_too_long": "error", 69 | "drill_out_of_range": "error", 70 | "duplicate_footprints": "warning", 71 | "extra_footprint": "warning", 72 | "hole_clearance": "error", 73 | "hole_near_hole": "error", 74 | "invalid_outline": "error", 75 | "item_on_disabled_layer": "error", 76 | "items_not_allowed": "error", 77 | "length_out_of_range": "error", 78 | "malformed_courtyard": "error", 79 | "microvia_drill_out_of_range": "error", 80 | "missing_courtyard": "ignore", 81 | "missing_footprint": "warning", 82 | "net_conflict": "warning", 83 | "npth_inside_courtyard": "ignore", 84 | "padstack": "error", 85 | "pth_inside_courtyard": "ignore", 86 | "shorting_items": "error", 87 | "silk_over_copper": "error", 88 | "silk_overlap": "error", 89 | "skew_out_of_range": "error", 90 | "too_many_vias": "error", 91 | "track_dangling": "warning", 92 | "track_width": "error", 93 | "tracks_crossing": "error", 94 | "unconnected_items": "error", 95 | "unresolved_variable": "error", 96 | "via_dangling": "warning", 97 | "zone_has_empty_net": "error", 98 | "zones_intersect": "error" 99 | }, 100 | "rules": { 101 | "allow_blind_buried_vias": false, 102 | "allow_microvias": false, 103 | "max_error": 0.005, 104 | "min_clearance": 0.0, 105 | "min_copper_edge_clearance": 0.0, 106 | "min_hole_clearance": 0.0, 107 | "min_hole_to_hole": 0.25, 108 | "min_microvia_diameter": 0.19999999999999998, 109 | "min_microvia_drill": 0.09999999999999999, 110 | "min_silk_clearance": 0.0, 111 | "min_through_hole_diameter": 0.3, 112 | "min_track_width": 0.19999999999999998, 113 | "min_via_annular_width": 0.049999999999999996, 114 | "min_via_diameter": 0.39999999999999997, 115 | "solder_mask_clearance": 0.0, 116 | "solder_mask_min_width": 0.0 117 | }, 118 | "track_widths": [ 119 | 0.0 120 | ], 121 | "via_dimensions": [ 122 | { 123 | "diameter": 0.0, 124 | "drill": 0.0 125 | } 126 | ], 127 | "zones_allow_external_fillets": false, 128 | "zones_use_no_outline": true 129 | }, 130 | "layer_presets": [] 131 | }, 132 | "boards": [], 133 | "cvpcb": { 134 | "equivalence_files": [] 135 | }, 136 | "erc": { 137 | "erc_exclusions": [], 138 | "meta": { 139 | "version": 0 140 | }, 141 | "pin_map": [ 142 | [ 143 | 0, 144 | 0, 145 | 0, 146 | 0, 147 | 0, 148 | 0, 149 | 1, 150 | 0, 151 | 0, 152 | 0, 153 | 0, 154 | 2 155 | ], 156 | [ 157 | 0, 158 | 2, 159 | 0, 160 | 1, 161 | 0, 162 | 0, 163 | 1, 164 | 0, 165 | 2, 166 | 2, 167 | 2, 168 | 2 169 | ], 170 | [ 171 | 0, 172 | 0, 173 | 0, 174 | 0, 175 | 0, 176 | 0, 177 | 1, 178 | 0, 179 | 1, 180 | 0, 181 | 1, 182 | 2 183 | ], 184 | [ 185 | 0, 186 | 1, 187 | 0, 188 | 0, 189 | 0, 190 | 0, 191 | 1, 192 | 1, 193 | 2, 194 | 1, 195 | 1, 196 | 2 197 | ], 198 | [ 199 | 0, 200 | 0, 201 | 0, 202 | 0, 203 | 0, 204 | 0, 205 | 1, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 2 211 | ], 212 | [ 213 | 0, 214 | 0, 215 | 0, 216 | 0, 217 | 0, 218 | 0, 219 | 0, 220 | 0, 221 | 0, 222 | 0, 223 | 0, 224 | 2 225 | ], 226 | [ 227 | 1, 228 | 1, 229 | 1, 230 | 1, 231 | 1, 232 | 0, 233 | 1, 234 | 1, 235 | 1, 236 | 1, 237 | 1, 238 | 2 239 | ], 240 | [ 241 | 0, 242 | 0, 243 | 0, 244 | 1, 245 | 0, 246 | 0, 247 | 1, 248 | 0, 249 | 0, 250 | 0, 251 | 0, 252 | 2 253 | ], 254 | [ 255 | 0, 256 | 2, 257 | 1, 258 | 2, 259 | 0, 260 | 0, 261 | 1, 262 | 0, 263 | 2, 264 | 2, 265 | 2, 266 | 2 267 | ], 268 | [ 269 | 0, 270 | 2, 271 | 0, 272 | 1, 273 | 0, 274 | 0, 275 | 1, 276 | 0, 277 | 2, 278 | 0, 279 | 0, 280 | 2 281 | ], 282 | [ 283 | 0, 284 | 2, 285 | 1, 286 | 1, 287 | 0, 288 | 0, 289 | 1, 290 | 0, 291 | 2, 292 | 0, 293 | 0, 294 | 2 295 | ], 296 | [ 297 | 2, 298 | 2, 299 | 2, 300 | 2, 301 | 2, 302 | 2, 303 | 2, 304 | 2, 305 | 2, 306 | 2, 307 | 2, 308 | 2 309 | ] 310 | ], 311 | "rule_severities": { 312 | "bus_definition_conflict": "error", 313 | "bus_label_syntax": "error", 314 | "bus_to_bus_conflict": "error", 315 | "bus_to_net_conflict": "error", 316 | "different_unit_footprint": "error", 317 | "different_unit_net": "error", 318 | "duplicate_reference": "error", 319 | "duplicate_sheet_names": "error", 320 | "extra_units": "error", 321 | "global_label_dangling": "warning", 322 | "hier_label_mismatch": "error", 323 | "label_dangling": "error", 324 | "lib_symbol_issues": "warning", 325 | "multiple_net_names": "warning", 326 | "net_not_bus_member": "warning", 327 | "no_connect_connected": "warning", 328 | "no_connect_dangling": "warning", 329 | "pin_not_connected": "error", 330 | "pin_not_driven": "error", 331 | "pin_to_pin": "warning", 332 | "power_pin_not_driven": "error", 333 | "similar_labels": "warning", 334 | "unannotated": "error", 335 | "unit_value_mismatch": "error", 336 | "unresolved_variable": "error", 337 | "wire_dangling": "error" 338 | } 339 | }, 340 | "libraries": { 341 | "pinned_footprint_libs": [], 342 | "pinned_symbol_libs": [] 343 | }, 344 | "meta": { 345 | "filename": "SharpMemoryLcdBreakout.kicad_pro", 346 | "version": 1 347 | }, 348 | "net_settings": { 349 | "classes": [ 350 | { 351 | "bus_width": 6.0, 352 | "clearance": 0.2, 353 | "diff_pair_gap": 0.25, 354 | "diff_pair_via_gap": 0.25, 355 | "diff_pair_width": 0.2, 356 | "line_style": 0, 357 | "microvia_diameter": 0.3, 358 | "microvia_drill": 0.1, 359 | "name": "Default", 360 | "pcb_color": "rgba(0, 0, 0, 0.000)", 361 | "schematic_color": "rgba(0, 0, 0, 0.000)", 362 | "track_width": 0.254, 363 | "via_diameter": 0.8, 364 | "via_drill": 0.4, 365 | "wire_width": 6.0 366 | }, 367 | { 368 | "bus_width": 6.0, 369 | "clearance": 0.2, 370 | "diff_pair_gap": 0.25, 371 | "diff_pair_via_gap": 0.25, 372 | "diff_pair_width": 0.2, 373 | "line_style": 0, 374 | "microvia_diameter": 0.3, 375 | "microvia_drill": 0.1, 376 | "name": "Power", 377 | "nets": [ 378 | "+3V3", 379 | "GND" 380 | ], 381 | "pcb_color": "rgba(0, 0, 0, 0.000)", 382 | "schematic_color": "rgba(0, 0, 0, 0.000)", 383 | "track_width": 0.254, 384 | "via_diameter": 0.8, 385 | "via_drill": 0.4, 386 | "wire_width": 6.0 387 | } 388 | ], 389 | "meta": { 390 | "version": 0 391 | }, 392 | "net_colors": null 393 | }, 394 | "pcbnew": { 395 | "last_paths": { 396 | "gencad": "", 397 | "idf": "", 398 | "netlist": "", 399 | "specctra_dsn": "", 400 | "step": "", 401 | "vrml": "" 402 | }, 403 | "page_layout_descr_file": "" 404 | }, 405 | "schematic": { 406 | "drawing": { 407 | "default_bus_thickness": 12.0, 408 | "default_junction_size": 40.0, 409 | "default_line_thickness": 6.0, 410 | "default_text_size": 50.0, 411 | "default_wire_thickness": 6.0, 412 | "field_names": [], 413 | "intersheets_ref_own_page": false, 414 | "intersheets_ref_prefix": "", 415 | "intersheets_ref_short": false, 416 | "intersheets_ref_show": false, 417 | "intersheets_ref_suffix": "", 418 | "junction_size_choice": 3, 419 | "pin_symbol_size": 25.0, 420 | "text_offset_ratio": 0.3 421 | }, 422 | "legacy_lib_dir": "", 423 | "legacy_lib_list": [], 424 | "meta": { 425 | "version": 0 426 | }, 427 | "net_format_name": "", 428 | "ngspice": { 429 | "meta": { 430 | "version": 0 431 | }, 432 | "model_mode": 0 433 | }, 434 | "page_layout_descr_file": "", 435 | "plot_directory": "", 436 | "spice_adjust_passive_values": false, 437 | "spice_external_command": "spice \"%I\"", 438 | "subpart_first_id": 65, 439 | "subpart_id_separator": 0 440 | }, 441 | "sheets": [ 442 | [ 443 | "1cbfa18f-cbac-4912-bf62-e4a2a60a13e2", 444 | "" 445 | ] 446 | ], 447 | "text_variables": {} 448 | } 449 | -------------------------------------------------------------------------------- /PCB/SharpMemoryLcdBreakout/SharpMemoryLcdBreakout.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20210406) (generator eeschema) 2 | 3 | (uuid 1cbfa18f-cbac-4912-bf62-e4a2a60a13e2) 4 | 5 | (paper "A5") 6 | 7 | (title_block 8 | (title "SHARP Memory LCD Breakout") 9 | (date "2021-12-01") 10 | (rev "v0.3") 11 | ) 12 | 13 | (lib_symbols 14 | (symbol "Connector:Conn_01x01_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 15 | (property "Reference" "J" (id 0) (at 0 2.54 0) 16 | (effects (font (size 1.27 1.27))) 17 | ) 18 | (property "Value" "Conn_01x01_Female" (id 1) (at 0 -2.54 0) 19 | (effects (font (size 1.27 1.27))) 20 | ) 21 | (property "Footprint" "" (id 2) (at 0 0 0) 22 | (effects (font (size 1.27 1.27)) hide) 23 | ) 24 | (property "Datasheet" "~" (id 3) (at 0 0 0) 25 | (effects (font (size 1.27 1.27)) hide) 26 | ) 27 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 28 | (effects (font (size 1.27 1.27)) hide) 29 | ) 30 | (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 31 | (effects (font (size 1.27 1.27)) hide) 32 | ) 33 | (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0) 34 | (effects (font (size 1.27 1.27)) hide) 35 | ) 36 | (symbol "Conn_01x01_Female_1_1" 37 | (arc (start 0 0.508) (end 0 -0.508) (radius (at 0 0) (length 0.508) (angles 90.1 -90.1)) 38 | (stroke (width 0.1524)) (fill (type none)) 39 | ) 40 | (polyline 41 | (pts 42 | (xy -1.27 0) 43 | (xy -0.508 0) 44 | ) 45 | (stroke (width 0.1524)) (fill (type none)) 46 | ) 47 | (pin passive line (at -5.08 0 0) (length 3.81) 48 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 49 | (number "1" (effects (font (size 1.27 1.27)))) 50 | ) 51 | ) 52 | ) 53 | (symbol "Connector_Generic:Conn_01x07" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 54 | (property "Reference" "J" (id 0) (at 0 10.16 0) 55 | (effects (font (size 1.27 1.27))) 56 | ) 57 | (property "Value" "Conn_01x07" (id 1) (at 0 -10.16 0) 58 | (effects (font (size 1.27 1.27))) 59 | ) 60 | (property "Footprint" "" (id 2) (at 0 0 0) 61 | (effects (font (size 1.27 1.27)) hide) 62 | ) 63 | (property "Datasheet" "~" (id 3) (at 0 0 0) 64 | (effects (font (size 1.27 1.27)) hide) 65 | ) 66 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 67 | (effects (font (size 1.27 1.27)) hide) 68 | ) 69 | (property "ki_description" "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 70 | (effects (font (size 1.27 1.27)) hide) 71 | ) 72 | (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) 73 | (effects (font (size 1.27 1.27)) hide) 74 | ) 75 | (symbol "Conn_01x07_1_1" 76 | (rectangle (start -1.27 -7.493) (end 0 -7.747) 77 | (stroke (width 0.1524)) (fill (type none)) 78 | ) 79 | (rectangle (start -1.27 -4.953) (end 0 -5.207) 80 | (stroke (width 0.1524)) (fill (type none)) 81 | ) 82 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 83 | (stroke (width 0.1524)) (fill (type none)) 84 | ) 85 | (rectangle (start -1.27 0.127) (end 0 -0.127) 86 | (stroke (width 0.1524)) (fill (type none)) 87 | ) 88 | (rectangle (start -1.27 2.667) (end 0 2.413) 89 | (stroke (width 0.1524)) (fill (type none)) 90 | ) 91 | (rectangle (start -1.27 5.207) (end 0 4.953) 92 | (stroke (width 0.1524)) (fill (type none)) 93 | ) 94 | (rectangle (start -1.27 7.747) (end 0 7.493) 95 | (stroke (width 0.1524)) (fill (type none)) 96 | ) 97 | (rectangle (start -1.27 8.89) (end 1.27 -8.89) 98 | (stroke (width 0.254)) (fill (type background)) 99 | ) 100 | (pin passive line (at -5.08 7.62 0) (length 3.81) 101 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 102 | (number "1" (effects (font (size 1.27 1.27)))) 103 | ) 104 | (pin passive line (at -5.08 5.08 0) (length 3.81) 105 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 106 | (number "2" (effects (font (size 1.27 1.27)))) 107 | ) 108 | (pin passive line (at -5.08 2.54 0) (length 3.81) 109 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 110 | (number "3" (effects (font (size 1.27 1.27)))) 111 | ) 112 | (pin passive line (at -5.08 0 0) (length 3.81) 113 | (name "Pin_4" (effects (font (size 1.27 1.27)))) 114 | (number "4" (effects (font (size 1.27 1.27)))) 115 | ) 116 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 117 | (name "Pin_5" (effects (font (size 1.27 1.27)))) 118 | (number "5" (effects (font (size 1.27 1.27)))) 119 | ) 120 | (pin passive line (at -5.08 -5.08 0) (length 3.81) 121 | (name "Pin_6" (effects (font (size 1.27 1.27)))) 122 | (number "6" (effects (font (size 1.27 1.27)))) 123 | ) 124 | (pin passive line (at -5.08 -7.62 0) (length 3.81) 125 | (name "Pin_7" (effects (font (size 1.27 1.27)))) 126 | (number "7" (effects (font (size 1.27 1.27)))) 127 | ) 128 | ) 129 | ) 130 | (symbol "Connector_Generic:Conn_01x10" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 131 | (property "Reference" "J" (id 0) (at 0 12.7 0) 132 | (effects (font (size 1.27 1.27))) 133 | ) 134 | (property "Value" "Conn_01x10" (id 1) (at 0 -15.24 0) 135 | (effects (font (size 1.27 1.27))) 136 | ) 137 | (property "Footprint" "" (id 2) (at 0 0 0) 138 | (effects (font (size 1.27 1.27)) hide) 139 | ) 140 | (property "Datasheet" "~" (id 3) (at 0 0 0) 141 | (effects (font (size 1.27 1.27)) hide) 142 | ) 143 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 144 | (effects (font (size 1.27 1.27)) hide) 145 | ) 146 | (property "ki_description" "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 147 | (effects (font (size 1.27 1.27)) hide) 148 | ) 149 | (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) 150 | (effects (font (size 1.27 1.27)) hide) 151 | ) 152 | (symbol "Conn_01x10_1_1" 153 | (rectangle (start -1.27 -12.573) (end 0 -12.827) 154 | (stroke (width 0.1524)) (fill (type none)) 155 | ) 156 | (rectangle (start -1.27 -10.033) (end 0 -10.287) 157 | (stroke (width 0.1524)) (fill (type none)) 158 | ) 159 | (rectangle (start -1.27 -7.493) (end 0 -7.747) 160 | (stroke (width 0.1524)) (fill (type none)) 161 | ) 162 | (rectangle (start -1.27 -4.953) (end 0 -5.207) 163 | (stroke (width 0.1524)) (fill (type none)) 164 | ) 165 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 166 | (stroke (width 0.1524)) (fill (type none)) 167 | ) 168 | (rectangle (start -1.27 0.127) (end 0 -0.127) 169 | (stroke (width 0.1524)) (fill (type none)) 170 | ) 171 | (rectangle (start -1.27 2.667) (end 0 2.413) 172 | (stroke (width 0.1524)) (fill (type none)) 173 | ) 174 | (rectangle (start -1.27 5.207) (end 0 4.953) 175 | (stroke (width 0.1524)) (fill (type none)) 176 | ) 177 | (rectangle (start -1.27 7.747) (end 0 7.493) 178 | (stroke (width 0.1524)) (fill (type none)) 179 | ) 180 | (rectangle (start -1.27 10.287) (end 0 10.033) 181 | (stroke (width 0.1524)) (fill (type none)) 182 | ) 183 | (rectangle (start -1.27 11.43) (end 1.27 -13.97) 184 | (stroke (width 0.254)) (fill (type background)) 185 | ) 186 | (pin passive line (at -5.08 10.16 0) (length 3.81) 187 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 188 | (number "1" (effects (font (size 1.27 1.27)))) 189 | ) 190 | (pin passive line (at -5.08 -12.7 0) (length 3.81) 191 | (name "Pin_10" (effects (font (size 1.27 1.27)))) 192 | (number "10" (effects (font (size 1.27 1.27)))) 193 | ) 194 | (pin passive line (at -5.08 7.62 0) (length 3.81) 195 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 196 | (number "2" (effects (font (size 1.27 1.27)))) 197 | ) 198 | (pin passive line (at -5.08 5.08 0) (length 3.81) 199 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 200 | (number "3" (effects (font (size 1.27 1.27)))) 201 | ) 202 | (pin passive line (at -5.08 2.54 0) (length 3.81) 203 | (name "Pin_4" (effects (font (size 1.27 1.27)))) 204 | (number "4" (effects (font (size 1.27 1.27)))) 205 | ) 206 | (pin passive line (at -5.08 0 0) (length 3.81) 207 | (name "Pin_5" (effects (font (size 1.27 1.27)))) 208 | (number "5" (effects (font (size 1.27 1.27)))) 209 | ) 210 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 211 | (name "Pin_6" (effects (font (size 1.27 1.27)))) 212 | (number "6" (effects (font (size 1.27 1.27)))) 213 | ) 214 | (pin passive line (at -5.08 -5.08 0) (length 3.81) 215 | (name "Pin_7" (effects (font (size 1.27 1.27)))) 216 | (number "7" (effects (font (size 1.27 1.27)))) 217 | ) 218 | (pin passive line (at -5.08 -7.62 0) (length 3.81) 219 | (name "Pin_8" (effects (font (size 1.27 1.27)))) 220 | (number "8" (effects (font (size 1.27 1.27)))) 221 | ) 222 | (pin passive line (at -5.08 -10.16 0) (length 3.81) 223 | (name "Pin_9" (effects (font (size 1.27 1.27)))) 224 | (number "9" (effects (font (size 1.27 1.27)))) 225 | ) 226 | ) 227 | ) 228 | (symbol "Device:CP" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 229 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 230 | (effects (font (size 1.27 1.27)) (justify left)) 231 | ) 232 | (property "Value" "CP" (id 1) (at 0.635 -2.54 0) 233 | (effects (font (size 1.27 1.27)) (justify left)) 234 | ) 235 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 236 | (effects (font (size 1.27 1.27)) hide) 237 | ) 238 | (property "Datasheet" "~" (id 3) (at 0 0 0) 239 | (effects (font (size 1.27 1.27)) hide) 240 | ) 241 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 242 | (effects (font (size 1.27 1.27)) hide) 243 | ) 244 | (property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0) 245 | (effects (font (size 1.27 1.27)) hide) 246 | ) 247 | (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0) 248 | (effects (font (size 1.27 1.27)) hide) 249 | ) 250 | (symbol "CP_0_1" 251 | (rectangle (start -2.286 0.508) (end 2.286 1.016) 252 | (stroke (width 0)) (fill (type none)) 253 | ) 254 | (rectangle (start 2.286 -0.508) (end -2.286 -1.016) 255 | (stroke (width 0)) (fill (type outline)) 256 | ) 257 | (polyline 258 | (pts 259 | (xy -1.778 2.286) 260 | (xy -0.762 2.286) 261 | ) 262 | (stroke (width 0)) (fill (type none)) 263 | ) 264 | (polyline 265 | (pts 266 | (xy -1.27 2.794) 267 | (xy -1.27 1.778) 268 | ) 269 | (stroke (width 0)) (fill (type none)) 270 | ) 271 | ) 272 | (symbol "CP_1_1" 273 | (pin passive line (at 0 3.81 270) (length 2.794) 274 | (name "~" (effects (font (size 1.27 1.27)))) 275 | (number "1" (effects (font (size 1.27 1.27)))) 276 | ) 277 | (pin passive line (at 0 -3.81 90) (length 2.794) 278 | (name "~" (effects (font (size 1.27 1.27)))) 279 | (number "2" (effects (font (size 1.27 1.27)))) 280 | ) 281 | ) 282 | ) 283 | (symbol "Device:Ferrite_Bead" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 284 | (property "Reference" "FB" (id 0) (at -3.81 0.635 90) 285 | (effects (font (size 1.27 1.27))) 286 | ) 287 | (property "Value" "Ferrite_Bead" (id 1) (at 3.81 0 90) 288 | (effects (font (size 1.27 1.27))) 289 | ) 290 | (property "Footprint" "" (id 2) (at -1.778 0 90) 291 | (effects (font (size 1.27 1.27)) hide) 292 | ) 293 | (property "Datasheet" "~" (id 3) (at 0 0 0) 294 | (effects (font (size 1.27 1.27)) hide) 295 | ) 296 | (property "ki_keywords" "L ferrite bead inductor filter" (id 4) (at 0 0 0) 297 | (effects (font (size 1.27 1.27)) hide) 298 | ) 299 | (property "ki_description" "Ferrite bead" (id 5) (at 0 0 0) 300 | (effects (font (size 1.27 1.27)) hide) 301 | ) 302 | (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0) 303 | (effects (font (size 1.27 1.27)) hide) 304 | ) 305 | (symbol "Ferrite_Bead_0_1" 306 | (polyline 307 | (pts 308 | (xy 0 -1.27) 309 | (xy 0 -1.2192) 310 | ) 311 | (stroke (width 0)) (fill (type none)) 312 | ) 313 | (polyline 314 | (pts 315 | (xy 0 1.27) 316 | (xy 0 1.2954) 317 | ) 318 | (stroke (width 0)) (fill (type none)) 319 | ) 320 | (polyline 321 | (pts 322 | (xy -2.7686 0.4064) 323 | (xy -1.7018 2.2606) 324 | (xy 2.7686 -0.3048) 325 | (xy 1.6764 -2.159) 326 | (xy -2.7686 0.4064) 327 | ) 328 | (stroke (width 0)) (fill (type none)) 329 | ) 330 | ) 331 | (symbol "Ferrite_Bead_1_1" 332 | (pin passive line (at 0 3.81 270) (length 2.54) 333 | (name "~" (effects (font (size 1.27 1.27)))) 334 | (number "1" (effects (font (size 1.27 1.27)))) 335 | ) 336 | (pin passive line (at 0 -3.81 90) (length 2.54) 337 | (name "~" (effects (font (size 1.27 1.27)))) 338 | (number "2" (effects (font (size 1.27 1.27)))) 339 | ) 340 | ) 341 | ) 342 | (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) 343 | (property "Reference" "R" (id 0) (at 0.762 0.508 0) 344 | (effects (font (size 1.27 1.27)) (justify left)) 345 | ) 346 | (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0) 347 | (effects (font (size 1.27 1.27)) (justify left)) 348 | ) 349 | (property "Footprint" "" (id 2) (at 0 0 0) 350 | (effects (font (size 1.27 1.27)) hide) 351 | ) 352 | (property "Datasheet" "~" (id 3) (at 0 0 0) 353 | (effects (font (size 1.27 1.27)) hide) 354 | ) 355 | (property "ki_keywords" "R resistor" (id 4) (at 0 0 0) 356 | (effects (font (size 1.27 1.27)) hide) 357 | ) 358 | (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0) 359 | (effects (font (size 1.27 1.27)) hide) 360 | ) 361 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 362 | (effects (font (size 1.27 1.27)) hide) 363 | ) 364 | (symbol "R_Small_0_1" 365 | (rectangle (start -0.762 1.778) (end 0.762 -1.778) 366 | (stroke (width 0.2032)) (fill (type none)) 367 | ) 368 | ) 369 | (symbol "R_Small_1_1" 370 | (pin passive line (at 0 2.54 270) (length 0.762) 371 | (name "~" (effects (font (size 1.27 1.27)))) 372 | (number "1" (effects (font (size 1.27 1.27)))) 373 | ) 374 | (pin passive line (at 0 -2.54 90) (length 0.762) 375 | (name "~" (effects (font (size 1.27 1.27)))) 376 | (number "2" (effects (font (size 1.27 1.27)))) 377 | ) 378 | ) 379 | ) 380 | (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 381 | (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) 382 | (effects (font (size 1.27 1.27)) hide) 383 | ) 384 | (property "Value" "+3.3V" (id 1) (at 0 3.556 0) 385 | (effects (font (size 1.27 1.27))) 386 | ) 387 | (property "Footprint" "" (id 2) (at 0 0 0) 388 | (effects (font (size 1.27 1.27)) hide) 389 | ) 390 | (property "Datasheet" "" (id 3) (at 0 0 0) 391 | (effects (font (size 1.27 1.27)) hide) 392 | ) 393 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 394 | (effects (font (size 1.27 1.27)) hide) 395 | ) 396 | (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0) 397 | (effects (font (size 1.27 1.27)) hide) 398 | ) 399 | (symbol "+3.3V_0_1" 400 | (polyline 401 | (pts 402 | (xy -0.762 1.27) 403 | (xy 0 2.54) 404 | ) 405 | (stroke (width 0)) (fill (type none)) 406 | ) 407 | (polyline 408 | (pts 409 | (xy 0 0) 410 | (xy 0 2.54) 411 | ) 412 | (stroke (width 0)) (fill (type none)) 413 | ) 414 | (polyline 415 | (pts 416 | (xy 0 2.54) 417 | (xy 0.762 1.27) 418 | ) 419 | (stroke (width 0)) (fill (type none)) 420 | ) 421 | ) 422 | (symbol "+3.3V_1_1" 423 | (pin power_in line (at 0 0 90) (length 0) hide 424 | (name "+3V3" (effects (font (size 1.27 1.27)))) 425 | (number "1" (effects (font (size 1.27 1.27)))) 426 | ) 427 | ) 428 | ) 429 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 430 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 431 | (effects (font (size 1.27 1.27)) hide) 432 | ) 433 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 434 | (effects (font (size 1.27 1.27))) 435 | ) 436 | (property "Footprint" "" (id 2) (at 0 0 0) 437 | (effects (font (size 1.27 1.27)) hide) 438 | ) 439 | (property "Datasheet" "" (id 3) (at 0 0 0) 440 | (effects (font (size 1.27 1.27)) hide) 441 | ) 442 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 443 | (effects (font (size 1.27 1.27)) hide) 444 | ) 445 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 446 | (effects (font (size 1.27 1.27)) hide) 447 | ) 448 | (symbol "GND_0_1" 449 | (polyline 450 | (pts 451 | (xy 0 0) 452 | (xy 0 -1.27) 453 | (xy 1.27 -1.27) 454 | (xy 0 -2.54) 455 | (xy -1.27 -1.27) 456 | (xy 0 -1.27) 457 | ) 458 | (stroke (width 0)) (fill (type none)) 459 | ) 460 | ) 461 | (symbol "GND_1_1" 462 | (pin power_in line (at 0 0 270) (length 0) hide 463 | (name "GND" (effects (font (size 1.27 1.27)))) 464 | (number "1" (effects (font (size 1.27 1.27)))) 465 | ) 466 | ) 467 | ) 468 | (symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 469 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 470 | (effects (font (size 1.27 1.27)) hide) 471 | ) 472 | (property "Value" "GNDA" (id 1) (at 0 -3.81 0) 473 | (effects (font (size 1.27 1.27))) 474 | ) 475 | (property "Footprint" "" (id 2) (at 0 0 0) 476 | (effects (font (size 1.27 1.27)) hide) 477 | ) 478 | (property "Datasheet" "" (id 3) (at 0 0 0) 479 | (effects (font (size 1.27 1.27)) hide) 480 | ) 481 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 482 | (effects (font (size 1.27 1.27)) hide) 483 | ) 484 | (property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0) 485 | (effects (font (size 1.27 1.27)) hide) 486 | ) 487 | (symbol "GNDA_0_1" 488 | (polyline 489 | (pts 490 | (xy 0 0) 491 | (xy 0 -1.27) 492 | (xy 1.27 -1.27) 493 | (xy 0 -2.54) 494 | (xy -1.27 -1.27) 495 | (xy 0 -1.27) 496 | ) 497 | (stroke (width 0)) (fill (type none)) 498 | ) 499 | ) 500 | (symbol "GNDA_1_1" 501 | (pin power_in line (at 0 0 270) (length 0) hide 502 | (name "GNDA" (effects (font (size 1.27 1.27)))) 503 | (number "1" (effects (font (size 1.27 1.27)))) 504 | ) 505 | ) 506 | ) 507 | (symbol "power:VDDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 508 | (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) 509 | (effects (font (size 1.27 1.27)) hide) 510 | ) 511 | (property "Value" "VDDA" (id 1) (at 0 3.81 0) 512 | (effects (font (size 1.27 1.27))) 513 | ) 514 | (property "Footprint" "" (id 2) (at 0 0 0) 515 | (effects (font (size 1.27 1.27)) hide) 516 | ) 517 | (property "Datasheet" "" (id 3) (at 0 0 0) 518 | (effects (font (size 1.27 1.27)) hide) 519 | ) 520 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 521 | (effects (font (size 1.27 1.27)) hide) 522 | ) 523 | (property "ki_description" "Power symbol creates a global label with name \"VDDA\"" (id 5) (at 0 0 0) 524 | (effects (font (size 1.27 1.27)) hide) 525 | ) 526 | (symbol "VDDA_0_1" 527 | (circle (center 0 1.905) (radius 0.635) (stroke (width 0)) (fill (type none))) 528 | (polyline 529 | (pts 530 | (xy 0 0) 531 | (xy 0 1.27) 532 | ) 533 | (stroke (width 0)) (fill (type none)) 534 | ) 535 | ) 536 | (symbol "VDDA_1_1" 537 | (pin power_in line (at 0 0 90) (length 0) hide 538 | (name "VDDA" (effects (font (size 1.27 1.27)))) 539 | (number "1" (effects (font (size 1.27 1.27)))) 540 | ) 541 | ) 542 | ) 543 | ) 544 | 545 | (junction (at 73.66 36.83) (diameter 1.016) (color 0 0 0 0)) 546 | (junction (at 86.868 39.37) (diameter 1.016) (color 0 0 0 0)) 547 | (junction (at 115.316 67.056) (diameter 1.016) (color 0 0 0 0)) 548 | 549 | (wire (pts (xy 36.322 34.29) (xy 60.706 34.29)) 550 | (stroke (width 0) (type solid) (color 0 0 0 0)) 551 | (uuid 5116bddb-0835-475e-b435-f77d0cf2526f) 552 | ) 553 | (wire (pts (xy 36.322 36.83) (xy 73.66 36.83)) 554 | (stroke (width 0) (type solid) (color 0 0 0 0)) 555 | (uuid 0013fde7-407c-48f5-ba15-a6cf3edf2ae7) 556 | ) 557 | (wire (pts (xy 36.322 39.37) (xy 86.868 39.37)) 558 | (stroke (width 0) (type solid) (color 0 0 0 0)) 559 | (uuid 22b62aef-836a-4adf-8992-646ace514ab5) 560 | ) 561 | (wire (pts (xy 36.322 44.45) (xy 52.07 44.45)) 562 | (stroke (width 0) (type solid) (color 0 0 0 0)) 563 | (uuid 80bd284f-f545-4279-92a3-2e2621742ebd) 564 | ) 565 | (wire (pts (xy 36.322 46.99) (xy 46.228 46.99)) 566 | (stroke (width 0) (type solid) (color 0 0 0 0)) 567 | (uuid e7ee54ba-2f72-479b-b347-bbbdaabf3ce6) 568 | ) 569 | (wire (pts (xy 37.084 71.374) (xy 47.752 71.374)) 570 | (stroke (width 0) (type solid) (color 0 0 0 0)) 571 | (uuid 41d8b833-82ad-44e0-b51a-c204f18e1054) 572 | ) 573 | (wire (pts (xy 37.084 76.454) (xy 47.752 76.454)) 574 | (stroke (width 0) (type solid) (color 0 0 0 0)) 575 | (uuid 4347306b-a2a1-471d-87ac-afc17795cb6c) 576 | ) 577 | (wire (pts (xy 37.084 78.994) (xy 48.006 78.994)) 578 | (stroke (width 0) (type solid) (color 0 0 0 0)) 579 | (uuid 6abe7bef-5354-400a-ae95-224898587a8c) 580 | ) 581 | (wire (pts (xy 37.084 81.534) (xy 48.006 81.534)) 582 | (stroke (width 0) (type solid) (color 0 0 0 0)) 583 | (uuid b32f2d8f-7de4-458b-ad42-e578525b5101) 584 | ) 585 | (wire (pts (xy 37.084 84.074) (xy 48.006 84.074)) 586 | (stroke (width 0) (type solid) (color 0 0 0 0)) 587 | (uuid 16b8b0ff-77b4-462c-80e5-9701663d8797) 588 | ) 589 | (wire (pts (xy 37.084 86.614) (xy 48.006 86.614)) 590 | (stroke (width 0) (type solid) (color 0 0 0 0)) 591 | (uuid f74d56ea-e753-4b9a-8aec-64451ebb3e19) 592 | ) 593 | (wire (pts (xy 52.07 44.45) (xy 52.07 46.99)) 594 | (stroke (width 0) (type solid) (color 0 0 0 0)) 595 | (uuid 80bd284f-f545-4279-92a3-2e2621742ebd) 596 | ) 597 | (wire (pts (xy 60.706 34.29) (xy 60.706 44.45)) 598 | (stroke (width 0) (type solid) (color 0 0 0 0)) 599 | (uuid 5116bddb-0835-475e-b435-f77d0cf2526f) 600 | ) 601 | (wire (pts (xy 73.66 35.306) (xy 73.66 36.83)) 602 | (stroke (width 0) (type solid) (color 0 0 0 0)) 603 | (uuid 4bdf13a9-8bd9-4f58-9983-82fe92b7af73) 604 | ) 605 | (wire (pts (xy 73.66 36.83) (xy 73.66 44.45)) 606 | (stroke (width 0) (type solid) (color 0 0 0 0)) 607 | (uuid 180b9b07-86f8-4b6b-88c8-a52208143333) 608 | ) 609 | (wire (pts (xy 86.868 37.084) (xy 86.868 39.37)) 610 | (stroke (width 0) (type solid) (color 0 0 0 0)) 611 | (uuid 676c030b-8626-4b6f-9a0f-335a066c6b5c) 612 | ) 613 | (wire (pts (xy 86.868 39.37) (xy 86.868 44.45)) 614 | (stroke (width 0) (type solid) (color 0 0 0 0)) 615 | (uuid e95fa3a6-f25a-4945-9d42-02e12c49e7dd) 616 | ) 617 | (wire (pts (xy 113.792 67.056) (xy 115.316 67.056)) 618 | (stroke (width 0) (type solid) (color 0 0 0 0)) 619 | (uuid a8a4a4a2-3504-4622-8868-03c28459848d) 620 | ) 621 | (wire (pts (xy 115.316 59.69) (xy 115.316 67.056)) 622 | (stroke (width 0) (type solid) (color 0 0 0 0)) 623 | (uuid e4b285a5-66fa-4ef4-affa-6a304d542d9a) 624 | ) 625 | (wire (pts (xy 115.316 67.056) (xy 117.348 67.056)) 626 | (stroke (width 0) (type solid) (color 0 0 0 0)) 627 | (uuid a8a4a4a2-3504-4622-8868-03c28459848d) 628 | ) 629 | (polyline (pts (xy 30.988 112.268) (xy 30.988 121.412)) 630 | (stroke (width 0) (type dash) (color 0 0 0 0)) 631 | (uuid 63b5e072-50c6-42b5-bfd8-6ab908e557aa) 632 | ) 633 | (polyline (pts (xy 30.988 112.268) (xy 70.612 112.268)) 634 | (stroke (width 0) (type dash) (color 0 0 0 0)) 635 | (uuid 63b5e072-50c6-42b5-bfd8-6ab908e557aa) 636 | ) 637 | (polyline (pts (xy 30.988 114.808) (xy 70.612 114.808)) 638 | (stroke (width 0) (type dash) (color 0 0 0 0)) 639 | (uuid a39ae43f-4e8b-487e-ac4d-a53cbfdd38d8) 640 | ) 641 | (polyline (pts (xy 30.988 116.84) (xy 70.612 116.84)) 642 | (stroke (width 0) (type dash) (color 0 0 0 0)) 643 | (uuid a4062ea0-27ce-44eb-b837-1da98a6af1ef) 644 | ) 645 | (polyline (pts (xy 30.988 118.872) (xy 70.612 118.872)) 646 | (stroke (width 0) (type dash) (color 0 0 0 0)) 647 | (uuid a227dd29-f10a-4e8f-a57c-74be96b599f3) 648 | ) 649 | (polyline (pts (xy 30.988 121.412) (xy 70.612 121.412)) 650 | (stroke (width 0) (type dash) (color 0 0 0 0)) 651 | (uuid 63b5e072-50c6-42b5-bfd8-6ab908e557aa) 652 | ) 653 | (polyline (pts (xy 36.83 112.268) (xy 36.83 121.412)) 654 | (stroke (width 0) (type dash) (color 0 0 0 0)) 655 | (uuid 961f8d06-fef5-4229-b2be-9f3aa54f469b) 656 | ) 657 | (polyline (pts (xy 40.132 112.268) (xy 40.132 121.412)) 658 | (stroke (width 0) (type dash) (color 0 0 0 0)) 659 | (uuid 9fa192e1-d0ca-407e-9a0a-69c8d66e1d02) 660 | ) 661 | (polyline (pts (xy 70.612 121.412) (xy 70.612 112.268)) 662 | (stroke (width 0) (type dash) (color 0 0 0 0)) 663 | (uuid 63b5e072-50c6-42b5-bfd8-6ab908e557aa) 664 | ) 665 | 666 | (text "DISP\nDISP\nEMD\nEMD" (at 31.496 121.158 0) 667 | (effects (font (size 1.27 1.27)) (justify left bottom)) 668 | (uuid 61c6fce9-a4e6-40ce-bbf7-066a31a1af7d) 669 | ) 670 | (text "H\nL\nH\nL" (at 37.846 121.158 0) 671 | (effects (font (size 1.27 1.27)) (justify left bottom)) 672 | (uuid 61641ef2-2484-4a60-8bb3-5c5daa5f6941) 673 | ) 674 | (text "Image on\nImage off, memory preserved\nVCOM uses EIN HW signal\nVCOM uses serial data" 675 | (at 41.148 121.158 0) 676 | (effects (font (size 1.27 1.27)) (justify left bottom)) 677 | (uuid fba5008b-12b0-4a46-a5cf-700d1cbe15af) 678 | ) 679 | 680 | (label "SCLK" (at 36.322 24.13 0) 681 | (effects (font (size 1.27 1.27)) (justify left bottom)) 682 | (uuid c6790208-3227-4436-96ab-d20bc0b0ad74) 683 | ) 684 | (label "SI" (at 36.322 26.67 0) 685 | (effects (font (size 1.27 1.27)) (justify left bottom)) 686 | (uuid eba546d5-0262-47f5-a444-b7a1412f6113) 687 | ) 688 | (label "SCS" (at 36.322 29.21 0) 689 | (effects (font (size 1.27 1.27)) (justify left bottom)) 690 | (uuid e671797f-e64c-4f47-afbd-1e0b201ca745) 691 | ) 692 | (label "EXTCOMIN" (at 36.322 31.75 0) 693 | (effects (font (size 1.27 1.27)) (justify left bottom)) 694 | (uuid 6e4c45b4-4f25-4e79-97c5-ba2b9d4e13d9) 695 | ) 696 | (label "DISP" (at 36.322 34.29 0) 697 | (effects (font (size 1.27 1.27)) (justify left bottom)) 698 | (uuid ef9abdb0-85d4-4d3c-acb6-eb34c9e41fb3) 699 | ) 700 | (label "EXTMODE" (at 36.322 41.91 0) 701 | (effects (font (size 1.27 1.27)) (justify left bottom)) 702 | (uuid cdb09d5a-cc63-436a-9698-2298623aec30) 703 | ) 704 | (label "EXTCOMIN" (at 47.752 76.454 0) 705 | (effects (font (size 1.27 1.27)) (justify left bottom)) 706 | (uuid 55f59f3c-d7e6-4e22-8a43-bee1cbbc5bd3) 707 | ) 708 | (label "SCS" (at 48.006 78.994 0) 709 | (effects (font (size 1.27 1.27)) (justify left bottom)) 710 | (uuid 41fffbb5-3180-4de9-8407-eaf07b478260) 711 | ) 712 | (label "SI" (at 48.006 81.534 0) 713 | (effects (font (size 1.27 1.27)) (justify left bottom)) 714 | (uuid 062a7f0b-5447-40b7-8476-4b7fbabdbdba) 715 | ) 716 | (label "SCLK" (at 48.006 84.074 0) 717 | (effects (font (size 1.27 1.27)) (justify left bottom)) 718 | (uuid ba2d9493-bb19-4965-b7b4-a922902a303f) 719 | ) 720 | (label "DISP" (at 48.006 86.614 0) 721 | (effects (font (size 1.27 1.27)) (justify left bottom)) 722 | (uuid d245064c-211b-4411-bd58-86cef5173756) 723 | ) 724 | (label "EXTMODE" (at 114.554 82.55 0) 725 | (effects (font (size 1.27 1.27)) (justify left bottom)) 726 | (uuid c3c57ab6-64bf-40d2-a231-a7963bf87388) 727 | ) 728 | (label "EXTMODE" (at 115.316 59.69 0) 729 | (effects (font (size 1.27 1.27)) (justify left bottom)) 730 | (uuid 32755dbf-4134-4144-9df9-b7b200f04ac0) 731 | ) 732 | 733 | (symbol (lib_id "power:VDDA") (at 73.66 35.306 0) (unit 1) 734 | (in_bom yes) (on_board yes) (fields_autoplaced) 735 | (uuid ef43e54c-0e94-444c-8b26-3d161b840d33) 736 | (property "Reference" "#PWR08" (id 0) (at 73.66 39.116 0) 737 | (effects (font (size 1.27 1.27)) hide) 738 | ) 739 | (property "Value" "VDDA" (id 1) (at 73.66 31.7586 0)) 740 | (property "Footprint" "" (id 2) (at 73.66 35.306 0) 741 | (effects (font (size 1.27 1.27)) hide) 742 | ) 743 | (property "Datasheet" "" (id 3) (at 73.66 35.306 0) 744 | (effects (font (size 1.27 1.27)) hide) 745 | ) 746 | (pin "1" (uuid e2ea67b8-223e-48aa-a3fa-eeb8922fc872)) 747 | ) 748 | 749 | (symbol (lib_id "power:VDDA") (at 74.93 83.82 90) (unit 1) 750 | (in_bom yes) (on_board yes) (fields_autoplaced) 751 | (uuid 622065a0-9ad4-480d-ba36-5271e486d86b) 752 | (property "Reference" "#PWR010" (id 0) (at 78.74 83.82 0) 753 | (effects (font (size 1.27 1.27)) hide) 754 | ) 755 | (property "Value" "VDDA" (id 1) (at 71.755 84.2085 90) 756 | (effects (font (size 1.27 1.27)) (justify left)) 757 | ) 758 | (property "Footprint" "" (id 2) (at 74.93 83.82 0) 759 | (effects (font (size 1.27 1.27)) hide) 760 | ) 761 | (property "Datasheet" "" (id 3) (at 74.93 83.82 0) 762 | (effects (font (size 1.27 1.27)) hide) 763 | ) 764 | (pin "1" (uuid e2ea67b8-223e-48aa-a3fa-eeb8922fc872)) 765 | ) 766 | 767 | (symbol (lib_id "power:+3.3V") (at 47.752 71.374 270) (unit 1) 768 | (in_bom yes) (on_board yes) 769 | (uuid 681f9cb0-9003-4443-aedf-14aab3748d4d) 770 | (property "Reference" "#PWR01" (id 0) (at 43.942 71.374 0) 771 | (effects (font (size 1.27 1.27)) hide) 772 | ) 773 | (property "Value" "+3.3V" (id 1) (at 50.6731 71.2545 90) 774 | (effects (font (size 1.27 1.27)) (justify left)) 775 | ) 776 | (property "Footprint" "" (id 2) (at 47.752 71.374 0) 777 | (effects (font (size 1.27 1.27)) hide) 778 | ) 779 | (property "Datasheet" "" (id 3) (at 47.752 71.374 0) 780 | (effects (font (size 1.27 1.27)) hide) 781 | ) 782 | (pin "1" (uuid 6fa9659d-051e-4492-a050-5bc24f6c9612)) 783 | ) 784 | 785 | (symbol (lib_id "power:+3.3V") (at 82.55 83.82 270) (unit 1) 786 | (in_bom yes) (on_board yes) (fields_autoplaced) 787 | (uuid 35e77453-5571-4c9e-8291-3dd366c03f0b) 788 | (property "Reference" "#PWR012" (id 0) (at 78.74 83.82 0) 789 | (effects (font (size 1.27 1.27)) hide) 790 | ) 791 | (property "Value" "+3.3V" (id 1) (at 85.7251 84.2085 90) 792 | (effects (font (size 1.27 1.27)) (justify left)) 793 | ) 794 | (property "Footprint" "" (id 2) (at 82.55 83.82 0) 795 | (effects (font (size 1.27 1.27)) hide) 796 | ) 797 | (property "Datasheet" "" (id 3) (at 82.55 83.82 0) 798 | (effects (font (size 1.27 1.27)) hide) 799 | ) 800 | (pin "1" (uuid c6eadc5c-d106-43c9-abc2-08520c5f3c12)) 801 | ) 802 | 803 | (symbol (lib_id "power:+3.3V") (at 86.868 37.084 0) (unit 1) 804 | (in_bom yes) (on_board yes) (fields_autoplaced) 805 | (uuid 0d31eb61-b8a9-4e85-b926-49f603d06e9b) 806 | (property "Reference" "#PWR014" (id 0) (at 86.868 40.894 0) 807 | (effects (font (size 1.27 1.27)) hide) 808 | ) 809 | (property "Value" "+3.3V" (id 1) (at 86.868 33.5366 0)) 810 | (property "Footprint" "" (id 2) (at 86.868 37.084 0) 811 | (effects (font (size 1.27 1.27)) hide) 812 | ) 813 | (property "Datasheet" "" (id 3) (at 86.868 37.084 0) 814 | (effects (font (size 1.27 1.27)) hide) 815 | ) 816 | (pin "1" (uuid c6eadc5c-d106-43c9-abc2-08520c5f3c12)) 817 | ) 818 | 819 | (symbol (lib_id "power:+3.3V") (at 122.428 67.056 270) (unit 1) 820 | (in_bom yes) (on_board yes) (fields_autoplaced) 821 | (uuid c409700e-3430-4cd8-94e2-28f2ab9c5423) 822 | (property "Reference" "#PWR04" (id 0) (at 118.618 67.056 0) 823 | (effects (font (size 1.27 1.27)) hide) 824 | ) 825 | (property "Value" "+3.3V" (id 1) (at 125.6031 67.4445 90) 826 | (effects (font (size 1.27 1.27)) (justify left)) 827 | ) 828 | (property "Footprint" "" (id 2) (at 122.428 67.056 0) 829 | (effects (font (size 1.27 1.27)) hide) 830 | ) 831 | (property "Datasheet" "" (id 3) (at 122.428 67.056 0) 832 | (effects (font (size 1.27 1.27)) hide) 833 | ) 834 | (pin "1" (uuid 6fa9659d-051e-4492-a050-5bc24f6c9612)) 835 | ) 836 | 837 | (symbol (lib_id "Connector:Conn_01x01_Female") (at 109.474 82.55 180) (unit 1) 838 | (in_bom yes) (on_board yes) 839 | (uuid 98fe7b47-0f77-478a-ba5f-c55556ba2530) 840 | (property "Reference" "J2" (id 0) (at 111.9124 83.9004 0)) 841 | (property "Value" "EMD" (id 1) (at 109.1184 80.5857 0)) 842 | (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 109.474 82.55 0) 843 | (effects (font (size 1.27 1.27)) hide) 844 | ) 845 | (property "Datasheet" "~" (id 3) (at 109.474 82.55 0) 846 | (effects (font (size 1.27 1.27)) hide) 847 | ) 848 | (pin "1" (uuid 5e989db3-b675-4cb1-b515-8ae6da619954)) 849 | ) 850 | 851 | (symbol (lib_id "power:GND") (at 37.084 73.914 90) (unit 1) 852 | (in_bom yes) (on_board yes) 853 | (uuid 9480b272-08cd-4062-a836-71eced95313f) 854 | (property "Reference" "#PWR02" (id 0) (at 43.434 73.914 0) 855 | (effects (font (size 1.27 1.27)) hide) 856 | ) 857 | (property "Value" "GND" (id 1) (at 40.0051 74.0485 90) 858 | (effects (font (size 1.27 1.27)) (justify right)) 859 | ) 860 | (property "Footprint" "" (id 2) (at 37.084 73.914 0) 861 | (effects (font (size 1.27 1.27)) hide) 862 | ) 863 | (property "Datasheet" "" (id 3) (at 37.084 73.914 0) 864 | (effects (font (size 1.27 1.27)) hide) 865 | ) 866 | (pin "1" (uuid ba1cb54b-ebb7-4a68-99af-75f7c1701a15)) 867 | ) 868 | 869 | (symbol (lib_id "power:GNDA") (at 46.228 46.99 0) (unit 1) 870 | (in_bom yes) (on_board yes) (fields_autoplaced) 871 | (uuid 6b32efcc-12f5-4de4-9aaf-8966b2217c62) 872 | (property "Reference" "#PWR05" (id 0) (at 46.228 53.34 0) 873 | (effects (font (size 1.27 1.27)) hide) 874 | ) 875 | (property "Value" "GNDA" (id 1) (at 46.228 51.3144 0)) 876 | (property "Footprint" "" (id 2) (at 46.228 46.99 0) 877 | (effects (font (size 1.27 1.27)) hide) 878 | ) 879 | (property "Datasheet" "" (id 3) (at 46.228 46.99 0) 880 | (effects (font (size 1.27 1.27)) hide) 881 | ) 882 | (pin "1" (uuid 63654150-eb35-4b22-b4c5-d640842d086f)) 883 | ) 884 | 885 | (symbol (lib_id "power:GND") (at 52.07 46.99 0) (unit 1) 886 | (in_bom yes) (on_board yes) (fields_autoplaced) 887 | (uuid 04e7fee7-4598-45f1-a159-2163b959a183) 888 | (property "Reference" "#PWR06" (id 0) (at 52.07 53.34 0) 889 | (effects (font (size 1.27 1.27)) hide) 890 | ) 891 | (property "Value" "GND" (id 1) (at 52.07 51.3144 0)) 892 | (property "Footprint" "" (id 2) (at 52.07 46.99 0) 893 | (effects (font (size 1.27 1.27)) hide) 894 | ) 895 | (property "Datasheet" "" (id 3) (at 52.07 46.99 0) 896 | (effects (font (size 1.27 1.27)) hide) 897 | ) 898 | (pin "1" (uuid 2fb27b44-15fd-4a68-9e58-5fce14f28440)) 899 | ) 900 | 901 | (symbol (lib_id "power:GND") (at 60.706 52.07 0) (unit 1) 902 | (in_bom yes) (on_board yes) (fields_autoplaced) 903 | (uuid 4a9f3439-62fb-417a-8e48-9b46b21d22ed) 904 | (property "Reference" "#PWR07" (id 0) (at 60.706 58.42 0) 905 | (effects (font (size 1.27 1.27)) hide) 906 | ) 907 | (property "Value" "GND" (id 1) (at 60.706 56.3944 0)) 908 | (property "Footprint" "" (id 2) (at 60.706 52.07 0) 909 | (effects (font (size 1.27 1.27)) hide) 910 | ) 911 | (property "Datasheet" "" (id 3) (at 60.706 52.07 0) 912 | (effects (font (size 1.27 1.27)) hide) 913 | ) 914 | (pin "1" (uuid 2fb27b44-15fd-4a68-9e58-5fce14f28440)) 915 | ) 916 | 917 | (symbol (lib_id "power:GNDA") (at 73.66 52.07 0) (unit 1) 918 | (in_bom yes) (on_board yes) (fields_autoplaced) 919 | (uuid 8dac021d-7477-408b-a172-9405700bca2b) 920 | (property "Reference" "#PWR09" (id 0) (at 73.66 58.42 0) 921 | (effects (font (size 1.27 1.27)) hide) 922 | ) 923 | (property "Value" "GNDA" (id 1) (at 73.66 56.3944 0)) 924 | (property "Footprint" "" (id 2) (at 73.66 52.07 0) 925 | (effects (font (size 1.27 1.27)) hide) 926 | ) 927 | (property "Datasheet" "" (id 3) (at 73.66 52.07 0) 928 | (effects (font (size 1.27 1.27)) hide) 929 | ) 930 | (pin "1" (uuid 63654150-eb35-4b22-b4c5-d640842d086f)) 931 | ) 932 | 933 | (symbol (lib_id "power:GNDA") (at 75.184 70.866 270) (unit 1) 934 | (in_bom yes) (on_board yes) (fields_autoplaced) 935 | (uuid 41f5a788-f4ee-44eb-8832-9874e81adefa) 936 | (property "Reference" "#PWR011" (id 0) (at 68.834 70.866 0) 937 | (effects (font (size 1.27 1.27)) hide) 938 | ) 939 | (property "Value" "GNDA" (id 1) (at 72.0089 71.2545 90) 940 | (effects (font (size 1.27 1.27)) (justify right)) 941 | ) 942 | (property "Footprint" "" (id 2) (at 75.184 70.866 0) 943 | (effects (font (size 1.27 1.27)) hide) 944 | ) 945 | (property "Datasheet" "" (id 3) (at 75.184 70.866 0) 946 | (effects (font (size 1.27 1.27)) hide) 947 | ) 948 | (pin "1" (uuid 63654150-eb35-4b22-b4c5-d640842d086f)) 949 | ) 950 | 951 | (symbol (lib_id "power:GND") (at 82.804 70.866 90) (unit 1) 952 | (in_bom yes) (on_board yes) (fields_autoplaced) 953 | (uuid d5e8cba6-4305-4232-9aca-dd90bb159be2) 954 | (property "Reference" "#PWR013" (id 0) (at 89.154 70.866 0) 955 | (effects (font (size 1.27 1.27)) hide) 956 | ) 957 | (property "Value" "GND" (id 1) (at 85.9791 71.2545 90) 958 | (effects (font (size 1.27 1.27)) (justify right)) 959 | ) 960 | (property "Footprint" "" (id 2) (at 82.804 70.866 0) 961 | (effects (font (size 1.27 1.27)) hide) 962 | ) 963 | (property "Datasheet" "" (id 3) (at 82.804 70.866 0) 964 | (effects (font (size 1.27 1.27)) hide) 965 | ) 966 | (pin "1" (uuid 2fb27b44-15fd-4a68-9e58-5fce14f28440)) 967 | ) 968 | 969 | (symbol (lib_id "power:GND") (at 86.868 52.07 0) (unit 1) 970 | (in_bom yes) (on_board yes) (fields_autoplaced) 971 | (uuid 1f8b3156-7f6d-42b9-87b7-b792af1f92dc) 972 | (property "Reference" "#PWR015" (id 0) (at 86.868 58.42 0) 973 | (effects (font (size 1.27 1.27)) hide) 974 | ) 975 | (property "Value" "GND" (id 1) (at 86.868 56.3944 0)) 976 | (property "Footprint" "" (id 2) (at 86.868 52.07 0) 977 | (effects (font (size 1.27 1.27)) hide) 978 | ) 979 | (property "Datasheet" "" (id 3) (at 86.868 52.07 0) 980 | (effects (font (size 1.27 1.27)) hide) 981 | ) 982 | (pin "1" (uuid 2fb27b44-15fd-4a68-9e58-5fce14f28440)) 983 | ) 984 | 985 | (symbol (lib_id "power:GND") (at 108.712 67.056 270) (unit 1) 986 | (in_bom yes) (on_board yes) (fields_autoplaced) 987 | (uuid 7305587b-824c-45f3-8184-a3b3511b9aa7) 988 | (property "Reference" "#PWR03" (id 0) (at 102.362 67.056 0) 989 | (effects (font (size 1.27 1.27)) hide) 990 | ) 991 | (property "Value" "GND" (id 1) (at 105.537 67.4445 90) 992 | (effects (font (size 1.27 1.27)) (justify right)) 993 | ) 994 | (property "Footprint" "" (id 2) (at 108.712 67.056 0) 995 | (effects (font (size 1.27 1.27)) hide) 996 | ) 997 | (property "Datasheet" "" (id 3) (at 108.712 67.056 0) 998 | (effects (font (size 1.27 1.27)) hide) 999 | ) 1000 | (pin "1" (uuid ba1cb54b-ebb7-4a68-99af-75f7c1701a15)) 1001 | ) 1002 | 1003 | (symbol (lib_id "Device:R_Small") (at 111.252 67.056 270) (unit 1) 1004 | (in_bom yes) (on_board yes) (fields_autoplaced) 1005 | (uuid 26fa69b4-96a4-485c-8f3c-4f68027d84ab) 1006 | (property "Reference" "R1" (id 0) (at 111.252 62.8862 90)) 1007 | (property "Value" "10kΩ" (id 1) (at 111.252 65.1849 90)) 1008 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (id 2) (at 111.252 67.056 0) 1009 | (effects (font (size 1.27 1.27)) hide) 1010 | ) 1011 | (property "Datasheet" "~" (id 3) (at 111.252 67.056 0) 1012 | (effects (font (size 1.27 1.27)) hide) 1013 | ) 1014 | (property "LCSC" "C25804" (id 4) (at 111.252 67.056 90) 1015 | (effects (font (size 1.27 1.27)) hide) 1016 | ) 1017 | (pin "1" (uuid 0418a5de-3553-4f96-b4e8-73ba8c29083f)) 1018 | (pin "2" (uuid 695da13e-d428-48aa-aa7d-4412f3be50a1)) 1019 | ) 1020 | 1021 | (symbol (lib_id "Device:R_Small") (at 119.888 67.056 270) (unit 1) 1022 | (in_bom yes) (on_board yes) (fields_autoplaced) 1023 | (uuid 73050aba-79d3-41c7-b66e-cd8669eda61f) 1024 | (property "Reference" "R2" (id 0) (at 119.888 62.8862 90)) 1025 | (property "Value" "10kΩ" (id 1) (at 119.888 65.1849 90)) 1026 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (id 2) (at 119.888 67.056 0) 1027 | (effects (font (size 1.27 1.27)) hide) 1028 | ) 1029 | (property "Datasheet" "~" (id 3) (at 119.888 67.056 0) 1030 | (effects (font (size 1.27 1.27)) hide) 1031 | ) 1032 | (property "LCSC" "C25804" (id 4) (at 119.888 67.056 90) 1033 | (effects (font (size 1.27 1.27)) hide) 1034 | ) 1035 | (pin "1" (uuid 0418a5de-3553-4f96-b4e8-73ba8c29083f)) 1036 | (pin "2" (uuid 695da13e-d428-48aa-aa7d-4412f3be50a1)) 1037 | ) 1038 | 1039 | (symbol (lib_id "Device:CP") (at 60.706 48.26 0) (unit 1) 1040 | (in_bom yes) (on_board yes) 1041 | (uuid 7a602df9-b4ab-4c8f-bcee-115ea78044b1) 1042 | (property "Reference" "C1" (id 0) (at 57.0231 44.1971 0) 1043 | (effects (font (size 1.27 1.27)) (justify left)) 1044 | ) 1045 | (property "Value" "560pF/680pF" (id 1) (at 64.6431 53.6078 90) 1046 | (effects (font (size 1.27 1.27)) (justify left)) 1047 | ) 1048 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (id 2) (at 61.6712 52.07 0) 1049 | (effects (font (size 1.27 1.27)) hide) 1050 | ) 1051 | (property "Datasheet" "~" (id 3) (at 60.706 48.26 0) 1052 | (effects (font (size 1.27 1.27)) hide) 1053 | ) 1054 | (property "LCSC" "C1630" (id 4) (at 60.706 48.26 0) 1055 | (effects (font (size 1.27 1.27)) hide) 1056 | ) 1057 | (pin "1" (uuid 94571d9d-52df-4e51-b09c-772a1aaaa145)) 1058 | (pin "2" (uuid c318b69b-dd9f-4f28-8c9a-44e8cbec5c84)) 1059 | ) 1060 | 1061 | (symbol (lib_id "Device:CP") (at 73.66 48.26 0) (unit 1) 1062 | (in_bom yes) (on_board yes) (fields_autoplaced) 1063 | (uuid 83e00d4f-b880-41eb-a80c-47548e30c913) 1064 | (property "Reference" "C2" (id 0) (at 76.5811 47.4991 0) 1065 | (effects (font (size 1.27 1.27)) (justify left)) 1066 | ) 1067 | (property "Value" "1uF" (id 1) (at 76.5811 49.7978 0) 1068 | (effects (font (size 1.27 1.27)) (justify left)) 1069 | ) 1070 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (id 2) (at 74.6252 52.07 0) 1071 | (effects (font (size 1.27 1.27)) hide) 1072 | ) 1073 | (property "Datasheet" "~" (id 3) (at 73.66 48.26 0) 1074 | (effects (font (size 1.27 1.27)) hide) 1075 | ) 1076 | (property "LCSC" "C15849" (id 4) (at 73.66 48.26 0) 1077 | (effects (font (size 1.27 1.27)) hide) 1078 | ) 1079 | (pin "1" (uuid 94571d9d-52df-4e51-b09c-772a1aaaa145)) 1080 | (pin "2" (uuid c318b69b-dd9f-4f28-8c9a-44e8cbec5c84)) 1081 | ) 1082 | 1083 | (symbol (lib_id "Device:CP") (at 86.868 48.26 0) (unit 1) 1084 | (in_bom yes) (on_board yes) (fields_autoplaced) 1085 | (uuid d11b5518-01e5-473f-a82d-fa89aa1fe8d7) 1086 | (property "Reference" "C3" (id 0) (at 89.7891 47.4991 0) 1087 | (effects (font (size 1.27 1.27)) (justify left)) 1088 | ) 1089 | (property "Value" "1uF" (id 1) (at 89.7891 49.7978 0) 1090 | (effects (font (size 1.27 1.27)) (justify left)) 1091 | ) 1092 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (id 2) (at 87.8332 52.07 0) 1093 | (effects (font (size 1.27 1.27)) hide) 1094 | ) 1095 | (property "Datasheet" "~" (id 3) (at 86.868 48.26 0) 1096 | (effects (font (size 1.27 1.27)) hide) 1097 | ) 1098 | (property "LCSC" "C15849" (id 4) (at 86.868 48.26 0) 1099 | (effects (font (size 1.27 1.27)) hide) 1100 | ) 1101 | (pin "1" (uuid 94571d9d-52df-4e51-b09c-772a1aaaa145)) 1102 | (pin "2" (uuid c318b69b-dd9f-4f28-8c9a-44e8cbec5c84)) 1103 | ) 1104 | 1105 | (symbol (lib_id "Device:Ferrite_Bead") (at 78.74 83.82 90) (unit 1) 1106 | (in_bom yes) (on_board yes) (fields_autoplaced) 1107 | (uuid 89deffba-7955-40a3-9fd3-26677edd0547) 1108 | (property "Reference" "FB1" (id 0) (at 78.74 77.7452 90)) 1109 | (property "Value" "Ferrite_Bead" (id 1) (at 78.74 80.0439 90)) 1110 | (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 78.74 85.598 90) 1111 | (effects (font (size 1.27 1.27)) hide) 1112 | ) 1113 | (property "Datasheet" "~" (id 3) (at 78.74 83.82 0) 1114 | (effects (font (size 1.27 1.27)) hide) 1115 | ) 1116 | (property "LCSC" "C1017" (id 4) (at 78.74 83.82 0) 1117 | (effects (font (size 1.27 1.27)) hide) 1118 | ) 1119 | (pin "1" (uuid cddc29df-5184-4f8f-920c-60bc38af85f5)) 1120 | (pin "2" (uuid 9f585117-7a01-4ad9-af13-4ff45031469c)) 1121 | ) 1122 | 1123 | (symbol (lib_id "Device:Ferrite_Bead") (at 78.994 70.866 90) (unit 1) 1124 | (in_bom yes) (on_board yes) (fields_autoplaced) 1125 | (uuid eaedebe3-b3cb-4f44-b3da-5acad1f9f451) 1126 | (property "Reference" "FB2" (id 0) (at 78.994 64.7912 90)) 1127 | (property "Value" "Ferrite_Bead" (id 1) (at 78.994 67.0899 90)) 1128 | (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 78.994 72.644 90) 1129 | (effects (font (size 1.27 1.27)) hide) 1130 | ) 1131 | (property "Datasheet" "~" (id 3) (at 78.994 70.866 0) 1132 | (effects (font (size 1.27 1.27)) hide) 1133 | ) 1134 | (property "LCSC" "C1017" (id 4) (at 78.994 70.866 0) 1135 | (effects (font (size 1.27 1.27)) hide) 1136 | ) 1137 | (pin "1" (uuid cddc29df-5184-4f8f-920c-60bc38af85f5)) 1138 | (pin "2" (uuid 9f585117-7a01-4ad9-af13-4ff45031469c)) 1139 | ) 1140 | 1141 | (symbol (lib_id "Connector_Generic:Conn_01x07") (at 32.004 78.994 180) (unit 1) 1142 | (in_bom yes) (on_board yes) 1143 | (uuid 0e6ca92c-f013-44bc-b11e-dacc5577681b) 1144 | (property "Reference" "J1" (id 0) (at 32.258 65.4008 0)) 1145 | (property "Value" "Pin Header" (id 1) (at 34.036 67.4455 0)) 1146 | (property "Footprint" "SharpMemoryLcdBreakout:PinSocket_2Row_5+3_P2.54mm_Vertical" (id 2) (at 32.004 78.994 0) 1147 | (effects (font (size 1.27 1.27)) hide) 1148 | ) 1149 | (property "Datasheet" "~" (id 3) (at 32.004 78.994 0) 1150 | (effects (font (size 1.27 1.27)) hide) 1151 | ) 1152 | (pin "1" (uuid 54514bbd-1493-44b6-a8b4-5154759ed50a)) 1153 | (pin "2" (uuid 820fe283-82e5-4934-80b9-145e504de9b9)) 1154 | (pin "3" (uuid 63e440a3-c158-42c3-800b-e7ccf0561410)) 1155 | (pin "4" (uuid fabc77e0-a601-4132-8fca-7d3422f36533)) 1156 | (pin "5" (uuid 2eba4095-1d0b-4d09-8629-3e26af7cea7f)) 1157 | (pin "6" (uuid 78778c03-1ad7-4078-9d1b-4750efbf77ea)) 1158 | (pin "7" (uuid 0e9d6aff-7fcc-4e8b-9248-37839d2a5526)) 1159 | ) 1160 | 1161 | (symbol (lib_id "Connector_Generic:Conn_01x10") (at 31.242 34.29 0) (mirror y) (unit 1) 1162 | (in_bom yes) (on_board yes) 1163 | (uuid 865617f0-df77-422e-ba2a-73c970ba048e) 1164 | (property "Reference" "J3" (id 0) (at 33.274 52.7092 0)) 1165 | (property "Value" "FH12-10S-0.5SH" (id 1) (at 33.02 50.4105 0)) 1166 | (property "Footprint" "Connector_FFC-FPC:Hirose_FH12-10S-0.5SH_1x10-1MP_P0.50mm_Horizontal" (id 2) (at 31.242 34.29 0) 1167 | (effects (font (size 1.27 1.27)) hide) 1168 | ) 1169 | (property "Datasheet" "~" (id 3) (at 31.242 34.29 0) 1170 | (effects (font (size 1.27 1.27)) hide) 1171 | ) 1172 | (property "LCSC" "C506791" (id 4) (at 31.242 34.29 0) 1173 | (effects (font (size 1.27 1.27)) hide) 1174 | ) 1175 | (pin "1" (uuid 56c25686-33dd-4688-92f3-e9f7fc44e767)) 1176 | (pin "10" (uuid f9e1c08f-92c2-4db9-8715-a874908bd388)) 1177 | (pin "2" (uuid def8c5f0-5228-449b-9514-2f996e9d68fd)) 1178 | (pin "3" (uuid bd81353a-309a-4d49-ab6c-578539a9a232)) 1179 | (pin "4" (uuid 32e3cb2a-e150-4bc0-8462-3ebcae877e4d)) 1180 | (pin "5" (uuid acda776b-b87d-467a-bf58-5d7116037b95)) 1181 | (pin "6" (uuid 3814acb5-48ab-4c9a-b787-3d8f4af5faa3)) 1182 | (pin "7" (uuid d3d66689-9b1c-4a76-914a-f22e42460968)) 1183 | (pin "8" (uuid eac37610-ff4d-4cec-a614-eae1ae3c58e5)) 1184 | (pin "9" (uuid 6230dc3f-2cd7-4f72-bd5b-f7ed5b9092c6)) 1185 | ) 1186 | 1187 | (sheet_instances 1188 | (path "/" (page "1")) 1189 | ) 1190 | 1191 | (symbol_instances 1192 | (path "/681f9cb0-9003-4443-aedf-14aab3748d4d" 1193 | (reference "#PWR01") (unit 1) (value "+3.3V") (footprint "") 1194 | ) 1195 | (path "/9480b272-08cd-4062-a836-71eced95313f" 1196 | (reference "#PWR02") (unit 1) (value "GND") (footprint "") 1197 | ) 1198 | (path "/7305587b-824c-45f3-8184-a3b3511b9aa7" 1199 | (reference "#PWR03") (unit 1) (value "GND") (footprint "") 1200 | ) 1201 | (path "/c409700e-3430-4cd8-94e2-28f2ab9c5423" 1202 | (reference "#PWR04") (unit 1) (value "+3.3V") (footprint "") 1203 | ) 1204 | (path "/6b32efcc-12f5-4de4-9aaf-8966b2217c62" 1205 | (reference "#PWR05") (unit 1) (value "GNDA") (footprint "") 1206 | ) 1207 | (path "/04e7fee7-4598-45f1-a159-2163b959a183" 1208 | (reference "#PWR06") (unit 1) (value "GND") (footprint "") 1209 | ) 1210 | (path "/4a9f3439-62fb-417a-8e48-9b46b21d22ed" 1211 | (reference "#PWR07") (unit 1) (value "GND") (footprint "") 1212 | ) 1213 | (path "/ef43e54c-0e94-444c-8b26-3d161b840d33" 1214 | (reference "#PWR08") (unit 1) (value "VDDA") (footprint "") 1215 | ) 1216 | (path "/8dac021d-7477-408b-a172-9405700bca2b" 1217 | (reference "#PWR09") (unit 1) (value "GNDA") (footprint "") 1218 | ) 1219 | (path "/622065a0-9ad4-480d-ba36-5271e486d86b" 1220 | (reference "#PWR010") (unit 1) (value "VDDA") (footprint "") 1221 | ) 1222 | (path "/41f5a788-f4ee-44eb-8832-9874e81adefa" 1223 | (reference "#PWR011") (unit 1) (value "GNDA") (footprint "") 1224 | ) 1225 | (path "/35e77453-5571-4c9e-8291-3dd366c03f0b" 1226 | (reference "#PWR012") (unit 1) (value "+3.3V") (footprint "") 1227 | ) 1228 | (path "/d5e8cba6-4305-4232-9aca-dd90bb159be2" 1229 | (reference "#PWR013") (unit 1) (value "GND") (footprint "") 1230 | ) 1231 | (path "/0d31eb61-b8a9-4e85-b926-49f603d06e9b" 1232 | (reference "#PWR014") (unit 1) (value "+3.3V") (footprint "") 1233 | ) 1234 | (path "/1f8b3156-7f6d-42b9-87b7-b792af1f92dc" 1235 | (reference "#PWR015") (unit 1) (value "GND") (footprint "") 1236 | ) 1237 | (path "/7a602df9-b4ab-4c8f-bcee-115ea78044b1" 1238 | (reference "C1") (unit 1) (value "560pF/680pF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder") 1239 | ) 1240 | (path "/83e00d4f-b880-41eb-a80c-47548e30c913" 1241 | (reference "C2") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder") 1242 | ) 1243 | (path "/d11b5518-01e5-473f-a82d-fa89aa1fe8d7" 1244 | (reference "C3") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder") 1245 | ) 1246 | (path "/89deffba-7955-40a3-9fd3-26677edd0547" 1247 | (reference "FB1") (unit 1) (value "Ferrite_Bead") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder") 1248 | ) 1249 | (path "/eaedebe3-b3cb-4f44-b3da-5acad1f9f451" 1250 | (reference "FB2") (unit 1) (value "Ferrite_Bead") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder") 1251 | ) 1252 | (path "/0e6ca92c-f013-44bc-b11e-dacc5577681b" 1253 | (reference "J1") (unit 1) (value "Pin Header") (footprint "SharpMemoryLcdBreakout:PinSocket_2Row_5+3_P2.54mm_Vertical") 1254 | ) 1255 | (path "/98fe7b47-0f77-478a-ba5f-c55556ba2530" 1256 | (reference "J2") (unit 1) (value "EMD") (footprint "TestPoint:TestPoint_Pad_D1.5mm") 1257 | ) 1258 | (path "/865617f0-df77-422e-ba2a-73c970ba048e" 1259 | (reference "J3") (unit 1) (value "FH12-10S-0.5SH") (footprint "Connector_FFC-FPC:Hirose_FH12-10S-0.5SH_1x10-1MP_P0.50mm_Horizontal") 1260 | ) 1261 | (path "/26fa69b4-96a4-485c-8f3c-4f68027d84ab" 1262 | (reference "R1") (unit 1) (value "10kΩ") (footprint "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder") 1263 | ) 1264 | (path "/73050aba-79d3-41c7-b66e-cd8669eda61f" 1265 | (reference "R2") (unit 1) (value "10kΩ") (footprint "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder") 1266 | ) 1267 | ) 1268 | ) 1269 | -------------------------------------------------------------------------------- /PCB/SharpMemoryLcdBreakout/SharpMemoryLcdBreakout.pretty/PinHeader_2Rows-05Pins_P2.54mm_Vertical.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "PinHeader_2Rows-05Pins_P2.54mm_Vertical" (version 20210228) (generator pcbnew) (layer "F.Cu") 2 | (tedit 616FF78D) 3 | (descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows") 4 | (tags "Through hole pin header THT 2x03 2.54mm double row") 5 | (attr through_hole) 6 | (fp_text reference "REF**" (at 1.27 -2.33) (layer "F.SilkS") 7 | (effects (font (size 1 1) (thickness 0.15))) 8 | (tstamp 00000000-0000-0000-0000-000000000000) 9 | ) 10 | (fp_text value "PinHeader_2Rows-05Pins_P2.54mm_Vertical" (at 1.27 7.41) (layer "F.Fab") 11 | (effects (font (size 1 1) (thickness 0.15))) 12 | (tstamp 00000000-0000-0000-0000-000000000000) 13 | ) 14 | (fp_text user "${REFERENCE}" (at 1.27 2.54 90) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 00000000-0000-0000-0000-000000000000) 17 | ) 18 | (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 19 | (fp_line (start 3.87 -1.33) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 20 | (fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 21 | (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 22 | (fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 23 | (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 24 | (fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 25 | (fp_line (start -1.33 6.41) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 26 | (fp_line (start 4.35 6.85) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 27 | (fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 28 | (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 29 | (fp_line (start -1.8 6.85) (end 4.35 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 30 | (fp_line (start 3.81 -1.27) (end 3.81 6.35) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 31 | (fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 32 | (fp_line (start 3.81 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 33 | (fp_line (start -1.27 6.35) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 34 | (fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 35 | (pad "1" thru_hole rect (at 0 0) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 36 | (pad "2" thru_hole oval (at 2.54 0) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 37 | (pad "3" thru_hole oval (at 0 2.54) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 38 | (pad "4" thru_hole oval (at 2.54 2.54) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 39 | (pad "5" thru_hole oval (at 0 5.08) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 40 | ) 41 | -------------------------------------------------------------------------------- /PCB/SharpMemoryLcdBreakout/SharpMemoryLcdBreakout.pretty/PinSocket_2Row_5+3_P2.54mm_Vertical.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "PinSocket_2Row_5+3_P2.54mm_Vertical" (version 20210228) (generator pcbnew) (layer "F.Cu") 2 | (tedit 617E4EBD) 3 | (descr "Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") 4 | (tags "Through hole socket strip THT 2x05 2.54mm double row") 5 | (attr through_hole) 6 | (fp_text reference "REF**" (at -1.27 -2.77) (layer "F.SilkS") 7 | (effects (font (size 1 1) (thickness 0.15))) 8 | (tstamp 00000000-0000-0000-0000-000000000000) 9 | ) 10 | (fp_text value "PinSocket_2Row_5+3_P2.54mm_Vertical" (at -1.27 12.93) (layer "F.Fab") 11 | (effects (font (size 1 1) (thickness 0.15))) 12 | (tstamp 00000000-0000-0000-0000-000000000000) 13 | ) 14 | (fp_text user "${REFERENCE}" (at -1.27 5.08 90) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 00000000-0000-0000-0000-000000000000) 17 | ) 18 | (fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 19 | (fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 20 | (fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 21 | (fp_line (start -3.87 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 22 | (fp_line (start -3.87 -1.33) (end -3.87 11.49) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 23 | (fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 24 | (fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 25 | (fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 26 | (fp_line (start 1.76 11.9) (end -4.34 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 27 | (fp_line (start 1.76 -1.8) (end 1.76 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 28 | (fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 29 | (fp_line (start -4.34 11.9) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 30 | (fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 31 | (fp_line (start -3.81 11.43) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 32 | (fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 33 | (fp_line (start 1.27 -0.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 34 | (fp_line (start 1.27 11.43) (end -3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 35 | (pad "1" thru_hole rect (at 0 0) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 36 | (pad "2" thru_hole oval (at 0 2.54) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 37 | (pad "3" thru_hole oval (at 0 5.08) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 38 | (pad "4" thru_hole oval (at 0 7.62) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 39 | (pad "5" thru_hole oval (at 0 10.16) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 40 | (pad "6" thru_hole oval (at -2.54 2.54) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 41 | (pad "6" thru_hole oval (at -2.54 7.62) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 42 | (pad "7" thru_hole oval (at -2.54 5.08) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 43 | (model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x05_P2.54mm_Vertical.wrl" 44 | (offset (xyz 0 0 0)) 45 | (scale (xyz 1 1 1)) 46 | (rotate (xyz 0 0 0)) 47 | ) 48 | ) 49 | -------------------------------------------------------------------------------- /PCB/SharpMemoryLcdBreakout/SharpMemoryLcdBreakout.pretty/PinSocket_2x04_P2.54mm_Vertical.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "PinSocket_2x04_P2.54mm_Vertical" (version 20210228) (generator pcbnew) (layer "F.Cu") 2 | (tedit 5A19A422) 3 | (descr "Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") 4 | (tags "Through hole socket strip THT 2x04 2.54mm double row") 5 | (attr through_hole) 6 | (fp_text reference "REF**" (at -1.27 -2.77) (layer "F.SilkS") 7 | (effects (font (size 1 1) (thickness 0.15))) 8 | (tstamp 00000000-0000-0000-0000-000000000000) 9 | ) 10 | (fp_text value "PinSocket_2x04_P2.54mm_Vertical" (at -1.27 10.39) (layer "F.Fab") 11 | (effects (font (size 1 1) (thickness 0.15))) 12 | (tstamp 00000000-0000-0000-0000-000000000000) 13 | ) 14 | (fp_text user "${REFERENCE}" (at -1.27 3.81 90) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 00000000-0000-0000-0000-000000000000) 17 | ) 18 | (fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 19 | (fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 20 | (fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 21 | (fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 22 | (fp_line (start -3.87 -1.33) (end -3.87 8.95) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 23 | (fp_line (start -3.87 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 24 | (fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 25 | (fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-000000000000)) 26 | (fp_line (start -4.34 9.4) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 27 | (fp_line (start 1.76 -1.8) (end 1.76 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 28 | (fp_line (start 1.76 9.4) (end -4.34 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 29 | (fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 00000000-0000-0000-0000-000000000000)) 30 | (fp_line (start -3.81 8.89) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 31 | (fp_line (start 1.27 8.89) (end -3.81 8.89) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 32 | (fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 33 | (fp_line (start 1.27 -0.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 34 | (fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp 00000000-0000-0000-0000-000000000000)) 35 | (pad "1" thru_hole rect (at 0 0) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 36 | (pad "2" thru_hole oval (at -2.54 0) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 37 | (pad "3" thru_hole oval (at 0 2.54) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 38 | (pad "4" thru_hole oval (at -2.54 2.54) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 39 | (pad "5" thru_hole oval (at 0 5.08) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 40 | (pad "6" thru_hole oval (at -2.54 5.08) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 41 | (pad "7" thru_hole oval (at 0 7.62) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 42 | (pad "8" thru_hole oval (at -2.54 7.62) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 00000000-0000-0000-0000-000000000000)) 43 | (model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x04_P2.54mm_Vertical.wrl" 44 | (offset (xyz 0 0 0)) 45 | (scale (xyz 1 1 1)) 46 | (rotate (xyz 0 0 0)) 47 | ) 48 | ) 49 | -------------------------------------------------------------------------------- /PCB/SharpMemoryLcdBreakout/SharpMemoryLcdBreakout.pretty/mouse-bite-2mm-slot.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "mouse-bite-2mm-slot" (version 20210228) (generator pcbnew) (layer "F.Cu") 2 | (tedit 60A37F50) 3 | (attr through_hole) 4 | (fp_text reference "mouse-bite-2mm-slot" (at 0 -2) (layer "F.SilkS") hide 5 | (effects (font (size 1 1) (thickness 0.2))) 6 | (tstamp ad07a6e0-0c7e-417d-bc93-32b1c983e4db) 7 | ) 8 | (fp_text value "VAL**" (at 0 2.1) (layer "F.SilkS") hide 9 | (effects (font (size 1 1) (thickness 0.2))) 10 | (tstamp 060b596c-0964-4589-b655-a4e11505e59a) 11 | ) 12 | (fp_circle (center 2 0) (end 2.06 0) (layer "Dwgs.User") (width 0.05) (fill none) (tstamp 6c04e49b-eaf5-4e23-b40e-38fa87ed2081)) 13 | (fp_circle (center -2 0) (end -2 -0.06) (layer "Dwgs.User") (width 0.05) (fill none) (tstamp d0c21cec-5b8e-4ce3-9cc6-541eadd84578)) 14 | (fp_line (start 2 0) (end 2 0) (layer "Eco1.User") (width 2) (tstamp 51159635-7eef-4d74-8f14-64b64026def6)) 15 | (fp_line (start -2 0) (end -2 0) (layer "Eco1.User") (width 2) (tstamp f941a099-d1f4-43f6-b32f-fbb09ede9935)) 16 | (pad "" np_thru_hole circle (at 0 -0.75) (locked) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask) (tstamp 4931503b-9c79-40a3-a3fc-bb784899cc3c)) 17 | (pad "" np_thru_hole circle (at 0 0.75) (locked) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask) (tstamp 542fa3a1-fdc9-402c-899c-9bfc3367535a)) 18 | (pad "" np_thru_hole circle (at 0.75 0.75) (locked) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask) (tstamp 91796bc2-37f4-46b8-88be-eac661ed125c)) 19 | (pad "" np_thru_hole circle (at -0.75 -0.75) (locked) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask) (tstamp a0d045fd-7e50-4d1c-a2b1-e882bee8fbda)) 20 | (pad "" np_thru_hole circle (at 0.75 -0.75) (locked) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask) (tstamp d41e8988-9d17-4c89-8032-093138359a42)) 21 | (pad "" np_thru_hole circle (at -0.75 0.75) (locked) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask) (tstamp e2f94c8a-d3b4-4ded-86f7-e86a249bc50a)) 22 | ) 23 | -------------------------------------------------------------------------------- /PCB/SharpMemoryLcdBreakout/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "SharpMemoryLcdBreakout")(type "KiCad")(uri "${KIPRJMOD}/SharpMemoryLcdBreakout.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /Pictures/SharpMemoryLcdBreakout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crehmann/Sharp-Memory-LCD-Breakout/1ab3fbbd07b1b0d569f4bbf1f4141c523ae23301/Pictures/SharpMemoryLcdBreakout.png -------------------------------------------------------------------------------- /Pictures/displayOnBreakoutBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crehmann/Sharp-Memory-LCD-Breakout/1ab3fbbd07b1b0d569f4bbf1f4141c523ae23301/Pictures/displayOnBreakoutBoard.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Breakout Board for Sharp Memory Display (LS011B7DH03) 2 | 3 | 4 | 5 | ![](https://raw.githubusercontent.com/crehmann/Sharp-Memory-LCD-Breakout/main/Pictures/SharpMemoryLcdBreakout.png) 6 | 7 | ## Bill of Material 8 | 9 | | Name | Qty | Package | Value | Description | 10 | | ------------------- | ---- | ------- | -------------------------------------------- | ------------------------------------------------------------ | 11 | | FB1, FB2 | 2 | 0805 | 300mΩ DC Resistance, 600Ω impedance @ 100MHz | Ferrite Bead | 12 | | C1 | 1 | 0603 | 560pF/680pF | Capacitor | 13 | | C2, C3 | 2 | 0603 | 1uF | Capacitor | 14 | | R1/R2 | 1 | 0603 | 10kΩ | Use either R1 **or** R2. Use R2 when VCOM toggling via EXTCOMIN pin (EIN) is used. | 15 | | J3 | 1 | SMD | FH12-10S-0.5SH | FPC connector with 10 pins and 0.5mm pitch | 16 | | LS011B7DH03 Display | 1 | - | | https://aliexpress.com/item/1005001809102193.html | 17 | 18 | See the BOM csv file in the [release zip-file](https://github.com/crehmann/Sharp-Memory-LCD-Breakout/releases) for LCSC part numbers 19 | 20 | **Note:** The current revision v0.3 is **not** tested. v0.2 was using wrong capacitor values but the schematic worked otherwise ([see picture](https://raw.githubusercontent.com/crehmann/Sharp-Memory-LCD-Breakout/main/Pictures/displayOnBreakoutBoard.png)). 21 | 22 | **Assembly**: Soldering by hand is doable. The pads for the components are larger for easier soldering. However, for the FPC connecter good equipment and routine is required as it has a pitch of only 0.5mm 23 | --------------------------------------------------------------------------------