├── FIRMWARE.md ├── LICENSE ├── README.md ├── images ├── PCB-3d.png ├── animated-box.gif ├── case-bottom.jpg ├── case-lid.jpg ├── openeew-node-blue.jpg ├── openeew-node-board.jpg ├── openeew-node-withlid.jpg ├── pcb-openeew.PNG ├── platformio-spiffs.png ├── sensor-bubble-level.jpg ├── sensor-case-closed.jpg ├── sensor-case-open.jpg ├── sensor-install.jpg └── threaded-insert.jpg └── pcb ├── .gitignore ├── fp-lib-table ├── legacy └── eagle │ ├── OpenEEW sensor board - ethernet.b## │ ├── OpenEEW sensor board - ethernet.brd │ ├── OpenEEW sensor board - ethernet.sch │ └── openeew_sensor.pdf ├── local ├── library │ ├── Sensor_Motion_local.dcm │ └── Sensor_Motion_local.lib └── modules │ ├── Buzzer_Beeper_local.pretty │ ├── Buzzer_12.2x6.5mm.kicad_mod │ ├── Buzzer_14x8mm.kicad_mod │ └── Buzzer_17x7.5mm.kicad_mod │ ├── Connector_JST_local.pretty │ └── HW4-SMD-2.0.kicad_mod │ ├── Package_LCC_local.pretty │ └── PLCC-14.kicad_mod │ ├── Package_TO_SOT_SMD_local.pretty │ └── SOT-143.kicad_mod │ └── Symbol_local.pretty │ ├── Accelerometer_Orientation_5mm.kicad_mod │ ├── Logo_OpenEEW_10mm.kicad_mod │ ├── Logo_OpenEEW_5mm.kicad_mod │ └── Text_OpenEEW_2mm.kicad_mod ├── openeew-schematic.pdf ├── pcb.kicad_pcb ├── pcb.pro ├── pcb.sch └── sym-lib-table /FIRMWARE.md: -------------------------------------------------------------------------------- 1 | # OpenEEW Firmware and MQTT 2 | 3 | This README describes many of the features of the OpenEEW firmware and how it transmits data and receives commands via the MQTT protocol. 4 | 5 | ## MQTT 6 | 7 | [MQTT](https://mqtt.org) is an OASIS standard messaging protocol for the Internet of Things (IoT). It is designed as an extremely lightweight publish / subscribe messaging transport that is ideal for connecting remote devices with a small code footprint and minimal network bandwidth. 8 | 9 | ### Understanding MQTT Topics 10 | 11 | - An MQTT topic is used to filter messages for each connected client. The topic consists of one or more topic levels. Each topic level is separated by a forward slash (topic level separator). 12 | - Read about the Watson IoT Platform opinionated topic hierachy and how to [subscribe / publish commands and events](https://www.ibm.com/support/knowledgecenter/SSQP8H/iot/platform/devices/mqtt.html) to Watson IoT Platform. 13 | 14 | ## Accelerometer Data 15 | 16 | There is only one type of message that the firmware publishes to the MQTT broker. This ESP32 based board reads Accelerometer data from the Analog Devices ADXL355 chip. The ADXL355 fills its buffer depending on the sample rate. The firmware loops until the buffer is filled then it reads the data. The data is then stored in an array of json objects that contain x,y,z arrays of 32 floats. 17 | 18 | ```json 19 | [ {"x":[],"y":[],"z":[]} , {"x":[],"y":[],"z":[]} ] 20 | ``` 21 | 22 | ### Format of an example record of accelerometer data 23 | 24 | Included in the Json data transmitted to the MQTT broker is the Device ID of the OpenEEW sensor. 25 | Each sensor uses the unique 12 digit hexadecimal MAC address identifier of the WiFi chip to identify itself to the OpenEEW network. 26 | 27 | The JSON object of one second of accelerometer data might look like this: 28 | 29 | ```json 30 | {"d":{"device_id":"A8032A4DD5F0","traces":[{"x":[-0.03,-0.011,-0.019,0,-0.026,-0.023,0.091,-0.049,0.004,0.03,-0.023,-0.004,0.057,0.049,0.023,-0.008,-0.113,0.008,-0.026,-0.023,0.015,-0.026,-0.004,0,0.011,-0.045,0.004,-0.008,-0.124,-0.026,0.041,0],"y":[-0.207,-0.083,-0.147,-0.298,-0.253,-0.256,-0.158,-0.17,-0.147,-0.275,-0.287,-0.207,-0.26,-0.162,-0.241,-0.215,-0.162,-0.223,-0.207,-0.207,-0.219,-0.264,-0.26,-0.226,-0.215,-0.162,-0.181,-0.181,-0.207,-0.256,-0.162,-0.155],"z":[-0.17,-0.204,-0.2,0.011,-0.249,-0.17,-0.057,-0.204,-0.106,0.038,-0.17,-0.196,-0.185,-0.256,-0.079,-0.068,-0.072,-0.128,-0.136,-0.102,-0.091,-0.049,-0.109,-0.143,-0.038,-0.279,-0.147,-0.109,-0.004,-0.151,-0.26,-0.162]}]}} 31 | ``` 32 | 33 | ### Publishing an MQTT event to the MQTT Broker 34 | 35 | Watson IoT Platform has several types of messages; events, commands, monitoring. 36 | Sending data **from** the sensor **to** the remote MQTT broker is an *event*. 37 | Denoted as a `/evt/` 38 | 39 | ```c 40 | #define MQTT_TOPIC "iot-2/evt/status/fmt/json" 41 | ``` 42 | 43 | ### Subscribing to the Accelerometer data 44 | 45 | Seismologists and data scientists want to study the accelerometer data for potential earthquake indications, often in near real time. 46 | 47 | #### MQTT Broker on a local subnet 48 | 49 | Listening to the accelerometer data from a MQTT broker on a local subnet is easy. The mosquitto MQTT Broker can even be running on a Raspberry Pi. 50 | 51 | ```sh 52 | mosquitto_sub -t "iot-2/evt/+/fmt/json" -h 192.168.1.101 -p 1883 -i "a:listen:data" 53 | ``` 54 | 55 | The client identifier `-i "a:string:string"` is optional when communicating with the mosquitto broker. It can be any string but might be helpful if you are running your mosquitto server in `-v` verbose mode and you're wondering where messages are coming from. 56 | 57 | #### Watson IoT Platform MQTT Broker 58 | 59 | IoT security is critical when running large distributed networks of IoT sensors. Sending unencrypted data across the Internet should be discouraged. The following command will allow you subscribe. In this case, the `-u`, `-P`, and `-i` are significant for protecting your data. 60 | 61 | - `-u` : The API Key can be generated on the Watson IoT web console. By convention, this API key will be `a--10digits`. For example `a-k55sah-iwh1ollkfr` 62 | - `-P` : The Password token can be generated on the Watson IoT web console. Special characters in the password need to be escaped with a slash on the mosquitto_sub CLI. If the generated password is `PZD*V!GFA5cEDHQrc)`, you want to specify `PZD*V\!GFA5cEDHQrc\)` 63 | - `-i` : must adhere to a specific format. It needs to be in the format of `a::anystring`. "a:" declares this as an application, followed by the 6 character Watson IoT OrgID, followed by a unique string of your choosing. For example `a:xyz123:walicki` 64 | - If you want to use mosquitto_sub to watch the data, the WIoTP connection security needs to be TLS Optional. The port needs to be 1883. The device can be sending its data via TLS with Token Auth 8883 to the cloud. 65 | - Better would be to turn off TLS Optional, use port 8883 and pass the Watson IoT messaging root certificate pem file. 66 | 67 | ```sh 68 | mosquitto_sub -t "iot-2/type/OpenEEW/id/+/evt/+/fmt/+" -h k55sah.messaging.internetofthings.ibmcloud.com -p 1883 -u "a-k55sah-i0a6h9p8ea" -P PZD*V\!GFA5cEDHQrc\) -i "a:k55sah:mosquitto" 69 | ``` 70 | 71 | ```sh 72 | mosquitto_sub -t "iot-2/type/OpenEEW/id/+/evt/+/fmt/+" -h k55sah.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u "a-k55sah-i0a6h9p8ea" -P PZD*V\!GFA5cEDHQrc\) -i "a:k55sah:mosquitto" 73 | ``` 74 | 75 | Now that we've demonstrated the `mosquitto_sub` syntax, I'll move the API Key and Token into environment variables so as to not confuse subsequent examples. That will make readability and your copy/paste easier. Just set the two env vars and specify your Org ID. 76 | 77 | ```sh 78 | export WIOTP_APIKEY=a-OrgID-10digits 79 | export WIOTP_TOKEN= 80 | mosquitto_sub -t iot-2/type/+/id/+/evt/+/fmt/+ -h OrgId.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i a:OrgId:mosquitto 81 | ``` 82 | 83 | #### Subscribe to all OpenEEW commands sent to your OpenEEW device 84 | 85 | Sometimes it is useful to subscribe to and watch all the commands crossing across your MQTT topic space. 86 | 87 | ##### Local 88 | 89 | ```sh 90 | mosquitto_sub -t "iot-2/cmd/+/fmt/json" -h localhost -p 1883 -i "a:listen:commands" 91 | ``` 92 | 93 | ##### Watson IoT Platform 94 | 95 | ```sh 96 | mosquitto_sub -t iot-2/type/+/id/+/cmd/+/fmt/json -h OrgId.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i a:OrgId:mosquitto 97 | ``` 98 | 99 | ##### Notes 100 | 101 | Sending Json data via MQTT requires serialization and deserialization of the data. The firmware uses the ArduinoJson library to marshal the arrays of json objects. 102 | 103 | ## Controlling the behavior of the device via remote messages 104 | 105 | The remote OpenEEW Device Management Dashboards can control the behavior of the devices in the OpenEEW network via MQTT topics. The firmware running on each device subscribes to these commands. It only receives published MQTT topics that are specificially for it. This is similar to listening for your mother calling just your name on the crowded playground. MQTT handles this with topic namespaces. 106 | 107 | ## MQTT Topics defined by the OpenEEW firmware 108 | 109 | This section describes the various commands that can be sent to the OpenEEW firmware. Some of the commands include parameters which control the firmware behavior. The section also provides `mosquitto_pub` examples on how to send the commands to your device. 110 | 111 | ### Snippet from OpenEEW firmware `main.cpp` 112 | 113 | ```c 114 | #define MQTT_TOPIC_ALARM "iot-2/cmd/earthquake/fmt/json" 115 | #define MQTT_TOPIC_SAMPLERATE "iot-2/cmd/samplerate/fmt/json" 116 | #define MQTT_TOPIC_FWCHECK "iot-2/cmd/firmwarecheck/fmt/json" 117 | #define MQTT_TOPIC_SEND10SEC "iot-2/cmd/10secondhistory/fmt/json" 118 | #define MQTT_TOPIC_SENDACCEL "iot-2/cmd/sendacceldata/fmt/json" 119 | ``` 120 | 121 | ### ALARM 122 | 123 | Tell the firmware to make the device blink the LEDs the color red and bleep a warning of an impending earthquake. 124 | 125 | #### Local MQTT Broker 126 | 127 | ```sh 128 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/earthquake/fmt/json -i cmd:earthquake -m {Alarm:true} 129 | ``` 130 | 131 | #### Watson IoT Platform 132 | 133 | ```sh 134 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/earthquake/fmt/json -m {Alarm:true} 135 | ``` 136 | 137 | ### SENDACCEL 138 | 139 | Tell the firmware to send live accelerometer data to the cloud for some duration of seconds. 140 | 141 | In the two subsections below, there are examples which send various amounts of accelerometer data to the cloud: 142 | 143 | - 1 second 144 | - 30 seconds 145 | - "Continous mode" - Send the maximum uint32 of 4294967295 146 | - To reset it to silence mode, send 0 seconds 147 | 148 | #### Local MQTT Broker 149 | 150 | ```sh 151 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/sendacceldata/fmt/json -i cmd:sendacceldata -m {LiveDataDuration:1} 152 | 153 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/sendacceldata/fmt/json -i cmd:sendacceldata -m {LiveDataDuration:30} 154 | 155 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/sendacceldata/fmt/json -i cmd:sendacceldata -m {LiveDataDuration:4294967295} 156 | 157 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/sendacceldata/fmt/json -i cmd:sendacceldata -m {LiveDataDuration:0} 158 | ``` 159 | 160 | #### Watson IoT Platform 161 | 162 | ```sh 163 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/sendacceldata/fmt/json -m {LiveDataDuration:1} 164 | 165 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/sendacceldata/fmt/json -m {LiveDataDuration:30} 166 | 167 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/sendacceldata/fmt/json -m {LiveDataDuration:4294967295} 168 | 169 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/sendacceldata/fmt/json -m {LiveDataDuration:0} 170 | ``` 171 | 172 | ### SAMPLERATE 173 | 174 | Use this MQTT topic to change the ADXL355 sampling rate. 175 | 176 | - Turn off the Accelerometer: 177 | 178 | ```sh 179 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/samplerate/fmt/json -m {SampleRate:0} -i cmd:samplerate 180 | 181 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/samplerate/fmt/json -m {SampleRate:0} 182 | ``` 183 | 184 | - Standard 31 samples per second 185 | 186 | ```sh 187 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/samplerate/fmt/json -m {SampleRate:31} -i cmd:samplerate 188 | 189 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/samplerate/fmt/json -m {SampleRate:31} 190 | ``` 191 | 192 | - 125 samples per second (a firehose that eats bandwidth) 193 | 194 | ```sh 195 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/samplerate/fmt/json -m {SampleRate:125} -i cmd:samplerate 196 | 197 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/samplerate/fmt/json -m {SampleRate:125} 198 | ``` 199 | 200 | ### FWCHECK 201 | 202 | Use this MQTT topic to force a check for new firmware. If a device is running for many months it might fall behind on the version of the firmware it has installed. As part of the ESP32 power up / activation process, the board does a firmware version check. If there is a newer firmware version, it initiates an OTA firmware update. That only happens on startup. 203 | 204 | A board that has been running for a long time might be stranded on an old version. 205 | The administrator / device owner can command the running firmware to check for a firmware update. 206 | 207 | This allows us to dynamically update sensors if there is a security / software flaw / feature improvement. 208 | 209 | The board will blink magenta while it checks if newer firmware is available. If the current firmware is downlevel, the new firmware will be downloaded, verified, installed and the device restarted. 210 | 211 | ```sh 212 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/firmwarecheck/fmt/json -m {} -i cmd:firmware 213 | 214 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/firmwarecheck/fmt/json -m {} 215 | ``` 216 | 217 | ### SEND10SEC 218 | 219 | Use this MQTT topic to send 10 seconds of accelerometer history to the cloud. In normal silence mode, the sensor will queue 10 seconds of data and run an algorithm that detects anomolous shaking. This command will send the entire 10 second buffer to the cloud. 220 | 221 | ```sh 222 | mosquitto_pub -h 192.168.1.101 -t iot-2/cmd/10secondhistory/fmt/json -m {} -i cmd:send10sec 223 | 224 | mosquitto_pub -h OrgID.messaging.internetofthings.ibmcloud.com -p 8883 --cafile messaging.pem -u $WIOTP_APIKEY -P $WIOTP_TOKEN -i "a:OrgID:mosquitto" -t iot-2/type/OpenEEW/id/A8032A4DD5F0/cmd/10secondhistory/fmt/json -m {} 225 | ``` 226 | 227 | ### Python Examples 228 | 229 | This repository also contains Python examples that can be modified to do the above. `tbd` 230 | Learn more about the [IBM Watson IoT Platform Python SDK](https://ibm-watson-iot.github.io/iot-python/) 231 | 232 | ### Node Examples 233 | 234 | This repository also contains Node examples that can be modified to do the above. `tbd` 235 | 236 | ### Author 237 | 238 | - John Walicki 239 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OpenEEW Sensor 2 | The OpenEEW sensor has already shown itself to be [as good as seismometers](https://openeew.com/blog/sensor-benchmark) for the purpose of earthquake early-warnings (EEW). EEWs are concerned only with strong shaking and so expensive broadband seismometers are not necessary for detection. 3 | 4 | This hardware design has been created to drastically reduce the cost of a seismometer through the usage of off-the-shelf parts. The key component is the ADXL355 MEMS accelerometer, which has far lower noise than other accelerometers on the market. This low noise allows it to detect earthquakes at further distances. 5 | 6 | The sensor can be bought from [PCBWay](https://www.pcbway.com/project/gifts_detail/OpenEEW_Node.html), [Grillo](https://grillo.io/product/openeew-node/), or made following these instructions. 7 | 8 | ## Hardware 9 | The PCB features the following: 10 | - A high performance MEMS accelerometer 11 | - ESP-32-WROOM-32 which features a dual-core processor, 240MHz frequency, 4MB Flahs, and 8MB PSRAM 12 | - Ethernet connector and controller to provide more stable internet connections that need to last for years in some installations 13 | - 3 Neopixel RBG LEDs and a buzzer to provide alarm functions when an alert message is received on the device 14 | - A USB-C interface for powering and flashing the device 15 | 16 | ![PCB](https://user-images.githubusercontent.com/6279965/118044476-4dd2c380-b33c-11eb-8baa-c089b383fa31.PNG) 17 | [Schematic here](/pcb/openeew-schematic.pdf) 18 | 19 | Please note the following pins: 20 | - ADXL355 > SPI (HSPI) > CS GPIO 15 21 | - Neopixel data pin> GPIO 16 22 | - Buzzer > GPIO 32 23 | 24 | The board operates at 3.3V with a minimum current of 0.5A. The accelerometer is accessed via the ESP32's HSPI interface. 25 | 26 | The ethernet uses the LAN8720A transceiver. We have not included PoE in this variant to reduce complexity and cost. 27 | 28 | GPS can optionally be added via the UART header, and I2C devices can be added via the I2C header. However we have opted to use NTP as a default for timekeeping, and we use the OpenEEW app to record latitude and longitude when provisioning the device. 29 | 30 | ### Information 31 | You can find the schematics, PCB, and BOM files in [here](/pcb). The board was generated using [Kicad](https://kicad.org/). 32 | 33 | 34 | 35 | 36 | 37 | ___ 38 | 39 | Enjoy! Give us [feedback](https://github.com/openeew/openeew-sensor/issues) if you have suggestions on how to improve this information. 40 | 41 | ## Contributing and Developer information 42 | 43 | The community welcomes your involvement and contributions to this project. Please read the OpenEEW [contributing](https://github.com/openeew/openeew/blob/master/CONTRIBUTING.md) document for details on our code of conduct, and the process for submitting pull requests to the community. 44 | 45 | ## License 46 | 47 | The OpenEEW sensor is licensed under the Apache Software License, Version 2. Separate third party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the [Developer Certificate of Origin, Version 1.1 (DCO)](https://developercertificate.org/) and the [Apache Software License, Version 2](http://www.apache.org/licenses/LICENSE-2.0.txt). 48 | -------------------------------------------------------------------------------- /images/PCB-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/PCB-3d.png -------------------------------------------------------------------------------- /images/animated-box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/animated-box.gif -------------------------------------------------------------------------------- /images/case-bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/case-bottom.jpg -------------------------------------------------------------------------------- /images/case-lid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/case-lid.jpg -------------------------------------------------------------------------------- /images/openeew-node-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/openeew-node-blue.jpg -------------------------------------------------------------------------------- /images/openeew-node-board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/openeew-node-board.jpg -------------------------------------------------------------------------------- /images/openeew-node-withlid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/openeew-node-withlid.jpg -------------------------------------------------------------------------------- /images/pcb-openeew.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/pcb-openeew.PNG -------------------------------------------------------------------------------- /images/platformio-spiffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/platformio-spiffs.png -------------------------------------------------------------------------------- /images/sensor-bubble-level.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/sensor-bubble-level.jpg -------------------------------------------------------------------------------- /images/sensor-case-closed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/sensor-case-closed.jpg -------------------------------------------------------------------------------- /images/sensor-case-open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/sensor-case-open.jpg -------------------------------------------------------------------------------- /images/sensor-install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/sensor-install.jpg -------------------------------------------------------------------------------- /images/threaded-insert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/images/threaded-insert.jpg -------------------------------------------------------------------------------- /pcb/.gitignore: -------------------------------------------------------------------------------- 1 | # Kicad related ignores 2 | *.bck 3 | *.sch-bak 4 | *.kicad_pcb-bak 5 | _autosave* 6 | pcb-cache.lib 7 | fp-info-cache 8 | -------------------------------------------------------------------------------- /pcb/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name Buzzer_Beeper_local)(type KiCad)(uri ${KIPRJMOD}/local/modules/Buzzer_Beeper_local.pretty)(options "")(descr "")) 3 | (lib (name Package_LCC_local)(type KiCad)(uri ${KIPRJMOD}/local/modules/Package_LCC_local.pretty)(options "")(descr "")) 4 | (lib (name Connector_JST_local)(type KiCad)(uri ${KIPRJMOD}/local/modules/Connector_JST_local.pretty)(options "")(descr "")) 5 | (lib (name Package_TO_SOT_SMD_local)(type KiCad)(uri ${KIPRJMOD}/local/modules/Package_TO_SOT_SMD_local.pretty)(options "")(descr "")) 6 | (lib (name Symbol_local)(type KiCad)(uri ${KIPRJMOD}/local/modules/Symbol_local.pretty)(options "")(descr "")) 7 | ) 8 | -------------------------------------------------------------------------------- /pcb/legacy/eagle/openeew_sensor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/pcb/legacy/eagle/openeew_sensor.pdf -------------------------------------------------------------------------------- /pcb/local/library/Sensor_Motion_local.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP ADXL355 4 | D 3-Axis MEMS Accelerometer, Low Noise, Low Drift, Low Power 5 | K 3-axis accelerometer i2c spi mems 6 | F https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL354_355.pdf 7 | $ENDCMP 8 | # 9 | #End Doc Library 10 | -------------------------------------------------------------------------------- /pcb/local/library/Sensor_Motion_local.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # ADXL355 5 | # 6 | DEF ADXL355 U 0 20 Y Y 1 F N 7 | F0 "U" -350 500 50 H V C CNN 8 | F1 "ADXL355" -400 -500 50 H V C CNN 9 | F2 "" 0 0 50 H I C CNN 10 | F3 "" 0 0 50 H I C CNN 11 | $FPLIST 12 | *LGA*3x5mm*P0.8mm* 13 | $ENDFPLIST 14 | DRAW 15 | S -450 450 450 -450 0 1 10 f 16 | X ~CS~/SCL 1 -550 150 100 R 50 50 1 1 B 17 | X V1P8ANA 10 150 550 100 D 50 50 1 1 W 18 | X VSUPPLY 11 -50 550 100 D 50 50 1 1 W 19 | X INT1 12 550 100 100 L 50 50 1 1 C 20 | X INT2 13 550 0 100 L 50 50 1 1 C 21 | X DRDY 14 550 -100 100 L 50 50 1 1 O 22 | X SCLK/VSSIO 2 -550 50 100 R 50 50 1 1 I 23 | X MOSI/SDA 3 -550 -50 100 R 50 50 1 1 B 24 | X MISO/ASEL 4 -550 -150 100 R 50 50 1 1 B 25 | X VDDIO 5 -150 550 100 D 50 50 1 1 W 26 | X VSSIO 6 -50 -550 100 U 50 50 1 1 W 27 | X RESERVED 7 -150 -550 100 U 50 50 1 1 N N 28 | X V1P8DIG 8 50 550 100 D 50 50 1 1 W 29 | X VSS 9 50 -550 100 U 50 50 1 1 W 30 | ENDDRAW 31 | ENDDEF 32 | # 33 | #End Library 34 | -------------------------------------------------------------------------------- /pcb/local/modules/Buzzer_Beeper_local.pretty/Buzzer_12.2x6.5mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Buzzer_12.2x6.5mm (layer F.Cu) (tedit 5FBC338A) 2 | (descr "Generic Buzzer, D15mm height 7.5mm with RM7.6mm") 3 | (tags buzzer) 4 | (fp_text reference REF** (at 0 -8.89) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value Buzzer_12.2x6.5mm (at 0 8.89) (layer F.Fab) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_circle (center 0 0) (end 6.35 0) (layer F.CrtYd) (width 0.05)) 11 | (fp_circle (center 0 0) (end 6.1 0) (layer F.Fab) (width 0.1)) 12 | (fp_circle (center 0 0) (end 1 0) (layer F.Fab) (width 0.1)) 13 | (fp_circle (center 0 0) (end 6.21 0) (layer F.SilkS) (width 0.12)) 14 | (fp_text user %R (at 0.2 -4) (layer F.Fab) 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | ) 17 | (pad 1 thru_hole circle (at -2.5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)) 18 | (pad 2 thru_hole circle (at 2.5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)) 19 | ) 20 | -------------------------------------------------------------------------------- /pcb/local/modules/Buzzer_Beeper_local.pretty/Buzzer_14x8mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Buzzer_14x8mm (layer F.Cu) (tedit 5FBC3395) 2 | (descr "Generic Buzzer, D15mm height 7.5mm with RM7.6mm") 3 | (tags buzzer) 4 | (fp_text reference REF** (at 0 -8.89) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value Buzzer_14x8mm (at 0 8.89) (layer F.Fab) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_circle (center 0 0) (end 7.11 0) (layer F.SilkS) (width 0.12)) 11 | (fp_circle (center 0 0) (end 1 0) (layer F.Fab) (width 0.1)) 12 | (fp_circle (center 0 0) (end 7 0) (layer F.Fab) (width 0.1)) 13 | (fp_circle (center 0 0) (end 7.25 0) (layer F.CrtYd) (width 0.05)) 14 | (fp_text user %R (at 0.2 -4) (layer F.Fab) 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | ) 17 | (pad 1 thru_hole circle (at -2.5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)) 18 | (pad 2 thru_hole circle (at 2.5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)) 19 | ) 20 | -------------------------------------------------------------------------------- /pcb/local/modules/Buzzer_Beeper_local.pretty/Buzzer_17x7.5mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Buzzer_17x7.5mm (layer F.Cu) (tedit 5FBC339C) 2 | (descr "Generic Buzzer, D15mm height 7.5mm with RM7.6mm") 3 | (tags buzzer) 4 | (fp_text reference REF** (at 0.2 -9.6) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value Buzzer_17x7.5mm (at 0.2 10.2) (layer F.Fab) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_circle (center 0 0) (end 8.75 0) (layer F.CrtYd) (width 0.05)) 11 | (fp_circle (center 0 0) (end 8.5 0) (layer F.Fab) (width 0.1)) 12 | (fp_circle (center 0 0) (end 1 0) (layer F.Fab) (width 0.1)) 13 | (fp_circle (center 0 0) (end 8.6 0) (layer F.SilkS) (width 0.12)) 14 | (fp_text user %R (at 0.2 -4) (layer F.Fab) 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | ) 17 | (pad 1 thru_hole circle (at -5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)) 18 | (pad 2 thru_hole circle (at 5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)) 19 | ) 20 | -------------------------------------------------------------------------------- /pcb/local/modules/Connector_JST_local.pretty/HW4-SMD-2.0.kicad_mod: -------------------------------------------------------------------------------- 1 | (module HW4-SMD-2.0 (layer F.Cu) (tedit 0) 2 | (fp_text reference J3 (at -1.305 2.812 -180) (layer F.SilkS) 3 | (effects (font (size 0.95 0.95) (thickness 0.1045)) (justify left bottom)) 4 | ) 5 | (fp_text value H4P-SMD-2.0 (at -1.905 -2.413 -180) (layer F.Fab) 6 | (effects (font (size 0.84455 0.84455) (thickness 0.0929)) (justify left bottom)) 7 | ) 8 | (fp_line (start -6.1 -1.073) (end -3.8 -1.073) (layer F.SilkS) (width 0.254)) 9 | (fp_line (start -6.1 -5.273) (end 6.1 -5.273) (layer F.SilkS) (width 0.254)) 10 | (fp_line (start -6.1 -1.073) (end -6.1 -0.173) (layer F.SilkS) (width 0.254)) 11 | (fp_line (start -6.1 -0.173) (end -3.8 -0.173) (layer F.SilkS) (width 0.254)) 12 | (fp_line (start -3.8 -0.173) (end -3.8 -1.073) (layer F.SilkS) (width 0.254)) 13 | (fp_line (start -3.8 -1.073) (end 3.8 -1.073) (layer F.Fab) (width 0.254)) 14 | (fp_line (start 3.8 -1.073) (end 6.1 -1.073) (layer F.SilkS) (width 0.254)) 15 | (fp_line (start 3.8 -1.073) (end 3.8 -0.173) (layer F.SilkS) (width 0.254)) 16 | (fp_line (start 3.8 -0.173) (end 6.1 -0.173) (layer F.SilkS) (width 0.254)) 17 | (fp_line (start 6.1 -0.173) (end 6.1 -1.073) (layer F.SilkS) (width 0.254)) 18 | (fp_line (start -6.1 -5.273) (end 6.1 -5.273) (layer Dwgs.User) (width 0.254)) 19 | (fp_line (start -6.053 -0.079) (end -3.775 -0.079) (layer Dwgs.User) (width 0.254)) 20 | (fp_line (start 3.775 0.021) (end 6.053 0.021) (layer Dwgs.User) (width 0.254)) 21 | (fp_line (start -6.1 -5.273) (end -6.1 -4.573) (layer F.SilkS) (width 0.254)) 22 | (fp_line (start -6.1 -1.073) (end -6.1 -1.719) (layer F.SilkS) (width 0.254)) 23 | (fp_line (start 6.1 -5.273) (end 6.1 -4.573) (layer F.SilkS) (width 0.254)) 24 | (fp_line (start 6.1 -1.073) (end 6.1 -1.719) (layer F.SilkS) (width 0.254)) 25 | (fp_line (start -6.1 -5.273) (end -6.1 -4.573) (layer Dwgs.User) (width 0.254)) 26 | (fp_line (start -6.1 -1.973) (end -6.1 -0.073) (layer Dwgs.User) (width 0.254)) 27 | (fp_line (start 6.1 -1.973) (end 6.1 0.027) (layer Dwgs.User) (width 0.254)) 28 | (fp_line (start 6.1 -5.273) (end 6.1 -4.573) (layer Dwgs.User) (width 0.254)) 29 | (fp_line (start 3.8 0.027) (end 3.8 1.5) (layer Dwgs.User) (width 0.254)) 30 | (fp_line (start 3.8 1.5) (end -3.8 1.5) (layer Dwgs.User) (width 0.254)) 31 | (fp_line (start -3.8 1.5) (end -3.8 -0.073) (layer Dwgs.User) (width 0.254)) 32 | (fp_line (start -2.4 -1.073) (end -1.7 -1.073) (layer F.SilkS) (width 0.254)) 33 | (fp_line (start -0.4 -1.073) (end 0.3 -1.073) (layer F.SilkS) (width 0.254)) 34 | (fp_line (start 1.6 -1.073) (end 2.3 -1.073) (layer F.SilkS) (width 0.254)) 35 | (pad 1 smd rect (at -3 0 90) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 36 | (solder_mask_margin 0.1016)) 37 | (pad 2 smd rect (at -1 0 90) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 38 | (solder_mask_margin 0.1016)) 39 | (pad 3 smd rect (at 1 0 90) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 40 | (solder_mask_margin 0.1016)) 41 | (pad 4 smd rect (at 3 0 90) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 42 | (solder_mask_margin 0.1016)) 43 | (pad SS1 smd rect (at -5.8 -3.123 90) (size 2.5 2) (layers F.Cu F.Paste F.Mask) 44 | (solder_mask_margin 0.1016)) 45 | (pad SS2 smd rect (at 5.8 -3.123 90) (size 2.5 2) (layers F.Cu F.Paste F.Mask) 46 | (solder_mask_margin 0.1016)) 47 | ) 48 | -------------------------------------------------------------------------------- /pcb/local/modules/Package_LCC_local.pretty/PLCC-14.kicad_mod: -------------------------------------------------------------------------------- 1 | (module PLCC-14 (layer F.Cu) (tedit 5F35AE9B) 2 | (descr "PLCC, 14 pins, 4 3 pins per side, surface mount") 3 | (tags "plcc smt") 4 | (attr smd) 5 | (fp_text reference REF** (at -0.05 -4.85) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value PLCC-14 (at 0 4.9) (layer F.Fab) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start -3 -2.75) (end -3 2.75) (layer F.Fab) (width 0.1)) 12 | (fp_line (start -2.75 3) (end 2.75 3) (layer F.Fab) (width 0.1)) 13 | (fp_line (start 3 2.75) (end 3 -2.75) (layer F.Fab) (width 0.1)) 14 | (fp_line (start 2.75 -3) (end -2.75 -3) (layer F.Fab) (width 0.1)) 15 | (fp_line (start -3.95 -3.95) (end -3.95 3.95) (layer F.CrtYd) (width 0.05)) 16 | (fp_line (start -3.95 3.95) (end 3.95 3.95) (layer F.CrtYd) (width 0.05)) 17 | (fp_line (start 3.95 3.95) (end 3.95 -3.95) (layer F.CrtYd) (width 0.05)) 18 | (fp_line (start 3.95 -3.95) (end -3.95 -3.95) (layer F.CrtYd) (width 0.05)) 19 | (fp_text user %R (at 0 0) (layer F.Fab) 20 | (effects (font (size 1 1) (thickness 0.15))) 21 | ) 22 | (fp_line (start -3.1 -3.1) (end -2.1 -3.1) (layer F.SilkS) (width 0.12)) 23 | (fp_line (start 2.1 -3.1) (end 3.1 -3.1) (layer F.SilkS) (width 0.12)) 24 | (fp_line (start 3.1 -3.1) (end 3.1 -2.5) (layer F.SilkS) (width 0.12)) 25 | (fp_line (start 3.1 2.5) (end 3.1 3.1) (layer F.SilkS) (width 0.12)) 26 | (fp_line (start 3.1 3.1) (end 2.1 3.1) (layer F.SilkS) (width 0.12)) 27 | (fp_line (start -3.1 2.5) (end -3.1 3.1) (layer F.SilkS) (width 0.12)) 28 | (fp_line (start -3.1 3.1) (end -2.1 3.1) (layer F.SilkS) (width 0.12)) 29 | (fp_arc (start 3 -3) (end 2.75 -3) (angle -90) (layer F.Fab) (width 0.1)) 30 | (fp_arc (start 3 3) (end 3 2.75) (angle -90) (layer F.Fab) (width 0.1)) 31 | (fp_arc (start -3 3) (end -2.75 3) (angle -90) (layer F.Fab) (width 0.1)) 32 | (fp_arc (start -3 -3) (end -3 -2.75) (angle -90) (layer F.Fab) (width 0.1)) 33 | (fp_poly (pts (xy -1.35 -1.15) (xy -0.65718 -1.55) (xy -0.95 -0.45718)) (layer F.Fab) (width 0.1)) 34 | (pad 1 smd rect (at -2.8 -1.905) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 35 | (pad 2 smd rect (at -2.8 -0.635) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 36 | (pad 3 smd rect (at -2.8 0.635) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 37 | (pad 4 smd rect (at -2.8 1.905) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 38 | (pad 5 smd rect (at -1.27 2.8 90) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 39 | (pad 6 smd rect (at 0 2.8 90) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 40 | (pad 7 smd rect (at 1.27 2.8 90) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 41 | (pad 8 smd rect (at 2.8 1.905 180) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 42 | (pad 9 smd rect (at 2.8 0.635 180) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 43 | (pad 10 smd rect (at 2.8 -0.635 180) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 44 | (pad 11 smd rect (at 2.8 -1.905 180) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 45 | (pad 12 smd rect (at 1.27 -2.8 270) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 46 | (pad 13 smd rect (at 0 -2.8 270) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 47 | (pad 14 smd rect (at -1.27 -2.8 270) (size 1.8 0.68) (layers F.Cu F.Paste F.Mask)) 48 | (model ${KISYS3DMOD}/Package_LCC.3dshapes/PLCC-28.wrl 49 | (at (xyz 0 0 0)) 50 | (scale (xyz 1 1 1)) 51 | (rotate (xyz 0 0 0)) 52 | ) 53 | ) 54 | -------------------------------------------------------------------------------- /pcb/local/modules/Package_TO_SOT_SMD_local.pretty/SOT-143.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SOT-143 (layer F.Cu) (tedit 5F3D4E54) 2 | (descr SOT-143) 3 | (tags SOT-143) 4 | (attr smd) 5 | (fp_text reference REF** (at 0.02 -2.38) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value SOT-143 (at -0.28 2.48) (layer F.Fab) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start -0.7 1.55) (end 0.7 1.55) (layer F.SilkS) (width 0.12)) 12 | (fp_line (start 0.7 -1.55) (end -1.35 -1.55) (layer F.SilkS) (width 0.12)) 13 | (fp_line (start -0.7 -1) (end -0.2 -1.5) (layer F.Fab) (width 0.1)) 14 | (fp_line (start -0.2 -1.5) (end 0.7 -1.5) (layer F.Fab) (width 0.1)) 15 | (fp_line (start -0.7 1.5) (end -0.7 -1) (layer F.Fab) (width 0.1)) 16 | (fp_line (start 0.7 1.5) (end -0.7 1.5) (layer F.Fab) (width 0.1)) 17 | (fp_line (start 0.7 -1.5) (end 0.7 1.5) (layer F.Fab) (width 0.1)) 18 | (fp_line (start 1.6 -1.75) (end 1.6 1.75) (layer F.CrtYd) (width 0.05)) 19 | (fp_line (start 1.6 -1.75) (end -1.6 -1.75) (layer F.CrtYd) (width 0.05)) 20 | (fp_line (start -1.6 1.75) (end 1.6 1.75) (layer F.CrtYd) (width 0.05)) 21 | (fp_line (start -1.6 1.75) (end -1.6 -1.75) (layer F.CrtYd) (width 0.05)) 22 | (fp_text user %R (at 0 0 90) (layer F.Fab) 23 | (effects (font (size 0.5 0.5) (thickness 0.075))) 24 | ) 25 | (pad 1 smd rect (at -1 -0.75 270) (size 1 0.7) (layers F.Cu F.Paste F.Mask)) 26 | (pad 2 smd rect (at -1 0.95 270) (size 0.6 0.7) (layers F.Cu F.Paste F.Mask)) 27 | (pad 3 smd rect (at 1 0.95 270) (size 0.6 0.7) (layers F.Cu F.Paste F.Mask)) 28 | (pad 4 smd rect (at 1 -0.95 270) (size 0.6 0.7) (layers F.Cu F.Paste F.Mask)) 29 | (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-143.wrl 30 | (at (xyz 0 0 0)) 31 | (scale (xyz 1 1 1)) 32 | (rotate (xyz 0 0 0)) 33 | ) 34 | ) 35 | -------------------------------------------------------------------------------- /pcb/local/modules/Symbol_local.pretty/Accelerometer_Orientation_5mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Accelerometer_Orientation_5mm (layer F.Cu) (tedit 5F934092) 2 | (fp_text reference REF** (at 0 0) (layer F.SilkS) hide 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value Accelerometer_Orientation_5mm (at 0 -0.5) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_poly (pts (xy 1.253259 -2.280729) (xy 1.195433 -2.279266) (xy 1.138365 -2.274925) (xy 1.082126 -2.267779) 9 | (xy 1.026788 -2.257896) (xy 0.972421 -2.245349) (xy 0.919095 -2.230207) (xy 0.866881 -2.212541) 10 | (xy 0.815849 -2.192421) (xy 0.766071 -2.169919) (xy 0.717616 -2.145104) (xy 0.670556 -2.118048) 11 | (xy 0.62496 -2.08882) (xy 0.5809 -2.057492) (xy 0.538446 -2.024135) (xy 0.497669 -1.988817) 12 | (xy 0.45864 -1.951612) (xy 0.421428 -1.912587) (xy 0.386104 -1.871816) (xy 0.35274 -1.829367) 13 | (xy 0.321405 -1.785312) (xy 0.292171 -1.739721) (xy 0.265107 -1.692665) (xy 0.240285 -1.644214) 14 | (xy 0.217775 -1.594439) (xy 0.197648 -1.54341) (xy 0.179974 -1.491199) (xy 0.164824 -1.437875) 15 | (xy 0.152268 -1.38351) (xy 0.142377 -1.328173) (xy 0.135222 -1.271936) (xy 0.130873 -1.214869) 16 | (xy 0.129401 -1.157042) (xy 0.130852 -1.099215) (xy 0.135181 -1.042146) (xy 0.142317 -0.985906) 17 | (xy 0.152188 -0.930566) (xy 0.164725 -0.876196) (xy 0.179856 -0.822867) (xy 0.197512 -0.77065) 18 | (xy 0.217621 -0.719614) (xy 0.240114 -0.669831) (xy 0.264919 -0.621372) (xy 0.291966 -0.574306) 19 | (xy 0.321184 -0.528705) (xy 0.352503 -0.484638) (xy 0.385853 -0.442178) (xy 0.421162 -0.401394) 20 | (xy 0.45836 -0.362357) (xy 0.497376 -0.325137) (xy 0.538141 -0.289805) (xy 0.580583 -0.256433) 21 | (xy 0.624632 -0.225089) (xy 0.670217 -0.195846) (xy 0.717268 -0.168773) (xy 0.765714 -0.143941) 22 | (xy 0.815484 -0.121421) (xy 0.866509 -0.101284) (xy 0.918717 -0.083599) (xy 0.972037 -0.068438) 23 | (xy 1.0264 -0.055872) (xy 1.081735 -0.04597) (xy 1.137971 -0.038804) (xy 1.195037 -0.034443) 24 | (xy 1.252864 -0.03296) (xy 1.310691 -0.0344) (xy 1.367761 -0.038717) (xy 1.424002 -0.045841) 25 | (xy 1.479344 -0.055702) (xy 1.533716 -0.068228) (xy 1.587048 -0.083348) (xy 1.63927 -0.100994) 26 | (xy 1.690309 -0.121093) (xy 1.740096 -0.143575) (xy 1.788561 -0.168371) (xy 1.835632 -0.195408) 27 | (xy 1.881239 -0.224618) (xy 1.925312 -0.255928) (xy 1.967779 -0.289269) (xy 2.00857 -0.32457) 28 | (xy 2.047614 -0.36176) (xy 2.084842 -0.400769) (xy 2.120181 -0.441527) (xy 2.153563 -0.483962) 29 | (xy 2.184915 -0.528005) (xy 2.214167 -0.573584) (xy 2.24125 -0.62063) (xy 2.266091 -0.669071) 30 | (xy 2.288621 -0.718837) (xy 2.308769 -0.769857) (xy 2.326463 -0.822061) (xy 2.341635 -0.875379) 31 | (xy 2.354213 -0.929739) (xy 2.364125 -0.985072) (xy 2.371303 -1.041307) (xy 2.375675 -1.098372) 32 | (xy 2.37717 -1.156198) (xy 2.062306 -1.155216) (xy 2.061172 -1.115382) (xy 2.057977 -1.076071) 33 | (xy 2.052771 -1.037332) (xy 2.045606 -0.999213) (xy 2.03653 -0.961764) (xy 2.025594 -0.925033) 34 | (xy 2.012849 -0.889068) (xy 1.998345 -0.853918) (xy 1.982132 -0.819631) (xy 1.96426 -0.786257) 35 | (xy 1.94478 -0.753844) (xy 1.923742 -0.72244) (xy 1.901197 -0.692094) (xy 1.877194 -0.662855) 36 | (xy 1.851784 -0.634772) (xy 1.825017 -0.607892) (xy 1.796943 -0.582264) (xy 1.767614 -0.557938) 37 | (xy 1.737078 -0.534962) (xy 1.705387 -0.513383) (xy 1.67259 -0.493252) (xy 1.638739 -0.474616) 38 | (xy 1.603883 -0.457525) (xy 1.568072 -0.442026) (xy 1.531357 -0.428168) (xy 1.493788 -0.416001) 39 | (xy 1.455415 -0.405572) (xy 1.41629 -0.39693) (xy 1.376461 -0.390124) (xy 1.335979 -0.385202) 40 | (xy 1.294895 -0.382214) (xy 1.253259 -0.381207) (xy 1.253259 -0.381517) (xy 1.21157 -0.382525) 41 | (xy 1.170433 -0.385519) (xy 1.1299 -0.390448) (xy 1.09002 -0.397265) (xy 1.050845 -0.40592) 42 | (xy 1.012425 -0.416365) (xy 0.97481 -0.428552) (xy 0.938051 -0.442431) (xy 0.902199 -0.457955) 43 | (xy 0.867304 -0.475074) (xy 0.833416 -0.493739) (xy 0.800587 -0.513903) (xy 0.768866 -0.535516) 44 | (xy 0.738305 -0.55853) (xy 0.708954 -0.582895) (xy 0.680863 -0.608564) (xy 0.654083 -0.635488) 45 | (xy 0.628664 -0.663618) (xy 0.604657 -0.692905) (xy 0.582113 -0.723301) (xy 0.561082 -0.754757) 46 | (xy 0.541614 -0.787225) (xy 0.523761 -0.820655) (xy 0.507572 -0.854999) (xy 0.493099 -0.890208) 47 | (xy 0.480391 -0.926235) (xy 0.4695 -0.963029) (xy 0.460476 -1.000543) (xy 0.453369 -1.038727) 48 | (xy 0.44823 -1.077534) (xy 0.44511 -1.116914) (xy 0.444058 -1.156818) (xy 0.445112 -1.196723) 49 | (xy 0.44824 -1.236103) (xy 0.45339 -1.274911) (xy 0.460513 -1.313096) (xy 0.469556 -1.350611) 50 | (xy 0.480468 -1.387407) (xy 0.4932 -1.423435) (xy 0.507699 -1.458646) (xy 0.523914 -1.492992) 51 | (xy 0.541795 -1.526424) (xy 0.561291 -1.558894) (xy 0.58235 -1.590352) (xy 0.604921 -1.62075) 52 | (xy 0.628954 -1.65004) (xy 0.654397 -1.678172) (xy 0.6812 -1.705098) (xy 0.709311 -1.73077) 53 | (xy 0.738679 -1.755138) (xy 0.769253 -1.778154) (xy 0.800982 -1.799769) (xy 0.833816 -1.819935) 54 | (xy 0.867702 -1.838603) (xy 0.902591 -1.855723) (xy 0.93843 -1.871249) (xy 0.97517 -1.88513) 55 | (xy 1.012759 -1.897318) (xy 1.051145 -1.907765) (xy 1.090278 -1.916422) (xy 1.130107 -1.923239) 56 | (xy 1.170581 -1.928169) (xy 1.211649 -1.931163) (xy 1.253259 -1.932172) (xy 1.29487 -1.931163) 57 | (xy 1.335937 -1.928169) (xy 1.376411 -1.923239) (xy 1.41624 -1.916422) (xy 1.455374 -1.907765) 58 | (xy 1.49376 -1.897318) (xy 1.531349 -1.88513) (xy 1.568088 -1.871249) (xy 1.603928 -1.855723) 59 | (xy 1.638817 -1.838603) (xy 1.672703 -1.819935) (xy 1.705537 -1.799769) (xy 1.737266 -1.778154) 60 | (xy 1.76784 -1.755138) (xy 1.797208 -1.73077) (xy 1.825319 -1.705098) (xy 1.852121 -1.678172) 61 | (xy 1.877565 -1.65004) (xy 1.901597 -1.62075) (xy 1.924169 -1.590352) (xy 1.945228 -1.558894) 62 | (xy 1.964723 -1.526424) (xy 1.982604 -1.492992) (xy 1.99882 -1.458646) (xy 2.013319 -1.423435) 63 | (xy 2.02605 -1.387407) (xy 2.036963 -1.350611) (xy 2.046006 -1.313096) (xy 2.053128 -1.274911) 64 | (xy 2.058279 -1.236103) (xy 2.061407 -1.196723) (xy 2.062461 -1.156818) (xy 2.062306 -1.155216) 65 | (xy 2.37717 -1.156198) (xy 2.37717 -1.156896) (xy 2.375789 -1.212619) (xy 2.37167 -1.267965) 66 | (xy 2.364853 -1.322841) (xy 2.355374 -1.377156) (xy 2.343273 -1.430816) (xy 2.328587 -1.483731) 67 | (xy 2.311355 -1.535808) (xy 2.291615 -1.586955) (xy 2.269404 -1.637079) (xy 2.244762 -1.686088) 68 | (xy 2.217725 -1.73389) (xy 2.188334 -1.780393) (xy 2.156624 -1.825505) (xy 2.122636 -1.869133) 69 | (xy 2.086406 -1.911185) (xy 2.047974 -1.951569) (xy 2.007588 -1.99) (xy 1.965534 -2.026228) 70 | (xy 1.921904 -2.060214) (xy 1.87679 -2.091921) (xy 1.830285 -2.121311) (xy 1.78248 -2.148345) 71 | (xy 1.733469 -2.172985) (xy 1.683341 -2.195193) (xy 1.632191 -2.214931) (xy 1.58011 -2.232161) 72 | (xy 1.52719 -2.246844) (xy 1.473524 -2.258943) (xy 1.419203 -2.268419) (xy 1.364319 -2.275234) 73 | (xy 1.308965 -2.27935) (xy 1.253233 -2.280729) (xy 1.253259 -2.280729)) (layer F.SilkS) (width 0.02997)) 74 | (fp_poly (pts (xy 1.057168 1.418213) (xy 0.844003 1.418213) (xy 0.560299 0.954676) (xy 0.27427 1.418213) 75 | (xy 0.075833 1.418213) (xy 0.451779 0.830652) (xy 0.099862 0.284949) (xy 0.306051 0.284949) 76 | (xy 0.56805 0.713605) (xy 0.83005 0.284949) (xy 1.030038 0.284949) (xy 0.675796 0.833753) 77 | (xy 1.057168 1.418213)) (layer F.SilkS) (width 0.02997)) 78 | (fp_poly (pts (xy 1.448067 -1.156532) (xy 1.447814 -1.146507) (xy 1.447061 -1.136614) (xy 1.445823 -1.126865) 79 | (xy 1.444109 -1.117272) (xy 1.441934 -1.107847) (xy 1.439309 -1.098602) (xy 1.436246 -1.089551) 80 | (xy 1.432758 -1.080704) (xy 1.428857 -1.072075) (xy 1.424555 -1.063676) (xy 1.419864 -1.055518) 81 | (xy 1.414797 -1.047614) (xy 1.409366 -1.039976) (xy 1.403583 -1.032617) (xy 1.39746 -1.025548) 82 | (xy 1.39101 -1.018783) (xy 1.384244 -1.012333) (xy 1.377176 -1.00621) (xy 1.369816 -1.000427) 83 | (xy 1.362179 -0.994995) (xy 1.354275 -0.989928) (xy 1.346117 -0.985237) (xy 1.337717 -0.980935) 84 | (xy 1.329088 -0.977034) (xy 1.320242 -0.973546) (xy 1.31119 -0.970484) (xy 1.301946 -0.967858) 85 | (xy 1.292521 -0.965683) (xy 1.282928 -0.96397) (xy 1.273178 -0.962731) (xy 1.263285 -0.961979) 86 | (xy 1.253261 -0.961725) (xy 1.243236 -0.961979) (xy 1.233343 -0.962731) (xy 1.223593 -0.96397) 87 | (xy 1.214 -0.965683) (xy 1.204575 -0.967858) (xy 1.195331 -0.970484) (xy 1.18628 -0.973546) 88 | (xy 1.177433 -0.977034) (xy 1.168804 -0.980935) (xy 1.160404 -0.985237) (xy 1.152246 -0.989928) 89 | (xy 1.144343 -0.994995) (xy 1.136705 -1.000427) (xy 1.129346 -1.00621) (xy 1.122277 -1.012333) 90 | (xy 1.115512 -1.018783) (xy 1.109061 -1.025548) (xy 1.102939 -1.032617) (xy 1.097155 -1.039976) 91 | (xy 1.091724 -1.047614) (xy 1.086657 -1.055518) (xy 1.081966 -1.063676) (xy 1.077664 -1.072075) 92 | (xy 1.073763 -1.080704) (xy 1.070275 -1.089551) (xy 1.067212 -1.098602) (xy 1.064587 -1.107847) 93 | (xy 1.062412 -1.117272) (xy 1.060699 -1.126865) (xy 1.05946 -1.136614) (xy 1.058708 -1.146507) 94 | (xy 1.058454 -1.156532) (xy 1.058708 -1.166557) (xy 1.05946 -1.17645) (xy 1.060699 -1.186199) 95 | (xy 1.062412 -1.195792) (xy 1.064587 -1.205217) (xy 1.067212 -1.214461) (xy 1.070275 -1.223513) 96 | (xy 1.073763 -1.232359) (xy 1.077664 -1.240989) (xy 1.081966 -1.249388) (xy 1.086657 -1.257546) 97 | (xy 1.091724 -1.26545) (xy 1.097155 -1.273088) (xy 1.102938 -1.280447) (xy 1.109061 -1.287515) 98 | (xy 1.115512 -1.294281) (xy 1.122277 -1.300731) (xy 1.129346 -1.306854) (xy 1.136705 -1.312637) 99 | (xy 1.144342 -1.318069) (xy 1.152246 -1.323136) (xy 1.160404 -1.327826) (xy 1.168804 -1.332128) 100 | (xy 1.177433 -1.33603) (xy 1.18628 -1.339518) (xy 1.195331 -1.34258) (xy 1.204575 -1.345206) 101 | (xy 1.214 -1.347381) (xy 1.223593 -1.349094) (xy 1.233343 -1.350333) (xy 1.243236 -1.351085) 102 | (xy 1.253261 -1.351339) (xy 1.263285 -1.351085) (xy 1.273178 -1.350333) (xy 1.282928 -1.349094) 103 | (xy 1.292521 -1.347381) (xy 1.301946 -1.345206) (xy 1.31119 -1.34258) (xy 1.320242 -1.339518) 104 | (xy 1.329088 -1.33603) (xy 1.337717 -1.332128) (xy 1.346117 -1.327826) (xy 1.354275 -1.323136) 105 | (xy 1.362179 -1.318069) (xy 1.369816 -1.312637) (xy 1.377176 -1.306854) (xy 1.384244 -1.300731) 106 | (xy 1.391009 -1.294281) (xy 1.39746 -1.287515) (xy 1.403583 -1.280447) (xy 1.409366 -1.273088) 107 | (xy 1.414797 -1.26545) (xy 1.419864 -1.257546) (xy 1.424555 -1.249388) (xy 1.428857 -1.240989) 108 | (xy 1.432758 -1.232359) (xy 1.436246 -1.223513) (xy 1.439309 -1.214461) (xy 1.441934 -1.205217) 109 | (xy 1.444109 -1.195792) (xy 1.445822 -1.186199) (xy 1.447061 -1.17645) (xy 1.447814 -1.166557) 110 | (xy 1.448067 -1.156532)) (layer F.SilkS) (width 0.02997)) 111 | (fp_poly (pts (xy 2.912732 -2.298099) (xy 2.101929 -2.298099) (xy 2.101929 -2.426774) (xy 2.673212 -3.272458) 112 | (xy 2.117432 -3.272458) (xy 2.117432 -3.431363) (xy 2.897229 -3.431363) (xy 2.897229 -3.301139) 113 | (xy 2.323621 -2.457004) (xy 2.912732 -2.457004) (xy 2.912732 -2.298099)) (layer F.SilkS) (width 0.02997)) 114 | (fp_poly (pts (xy -0.65634 -0.666571) (xy -0.388139 -1.183594) (xy -0.186601 -1.183594) (xy -0.564097 -0.489838) 115 | (xy -0.564097 -0.050329) (xy -0.750132 -0.050329) (xy -0.750132 -0.483636) (xy -1.126078 -1.183594) 116 | (xy -0.92454 -1.183594) (xy -0.65634 -0.666571)) (layer F.SilkS) (width 0.02997)) 117 | (fp_poly (pts (xy 3.126402 0.74658) (xy 2.526997 1.196133) (xy 2.526997 0.83649) (xy 1.508008 0.83649) 118 | (xy 1.508008 0.656669) (xy 2.526997 0.656669) (xy 2.526997 0.297026)) (layer F.SilkS) (width 0.05)) 119 | (fp_poly (pts (xy -0.58991 -3.299406) (xy -0.140357 -2.700001) (xy -0.5 -2.700001) (xy -0.5 -1.681012) 120 | (xy -0.679821 -1.681012) (xy -0.679821 -2.700001) (xy -1.039464 -2.700001)) (layer F.SilkS) (width 0.05)) 121 | ) 122 | -------------------------------------------------------------------------------- /pcb/local/modules/Symbol_local.pretty/Logo_OpenEEW_10mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Logo_OpenEEW_10mm (layer F.Cu) (tedit 5F9339F7) 2 | (fp_text reference REF** (at 0 0) (layer F.SilkS) hide 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value Logo_OpenEEW_10mm (at 0 -0.5) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -5 -5) (end 5 -5) (layer Dwgs.User) (width 0.12)) 9 | (fp_line (start 5 -5) (end 5 5) (layer Dwgs.User) (width 0.12)) 10 | (fp_line (start 5 5) (end -5 5) (layer Dwgs.User) (width 0.12)) 11 | (fp_line (start -5 5) (end -5 -5) (layer Dwgs.User) (width 0.12)) 12 | (fp_poly (pts (xy 0.2 -5) (xy 0.068353 -5.00331) (xy -0.063175 -5.003152) (xy -0.194517 -4.999537) 13 | (xy -0.325606 -4.992476) (xy -0.456374 -4.981982) (xy -0.586755 -4.968066) (xy -0.716682 -4.950739) 14 | (xy -0.846087 -4.930013) (xy -0.974904 -4.9059) (xy -1.103065 -4.878412) (xy -1.230504 -4.847559) 15 | (xy -1.357154 -4.813355) (xy -1.482946 -4.775809) (xy -1.607816 -4.734935) (xy -1.731694 -4.690744) 16 | (xy -1.854515 -4.643246) (xy -1.411173 -3.465957) (xy -1.135638 -3.566528) (xy -0.856217 -3.644516) 17 | (xy -0.57413 -3.700195) (xy -0.2906 -3.733842) (xy -0.006848 -3.745734) (xy 0.275903 -3.736145) 18 | (xy 0.556432 -3.705352) (xy 0.833516 -3.653631) (xy 1.105935 -3.581257) (xy 1.372465 -3.488507) 19 | (xy 1.631886 -3.375656) (xy 1.882975 -3.242981) (xy 2.12451 -3.090758) (xy 2.35527 -2.919262) 20 | (xy 2.574032 -2.728769) (xy 2.779575 -2.519555) (xy 2.968201 -2.294977) (xy 3.136923 -2.059035) 21 | (xy 3.285583 -1.812973) (xy 3.414023 -1.558031) (xy 3.522084 -1.295454) (xy 3.60961 -1.026482) 22 | (xy 3.676443 -0.752359) (xy 3.722425 -0.474326) (xy 3.747397 -0.193627) (xy 3.751203 0.088496) 23 | (xy 3.733685 0.370801) (xy 3.694684 0.652046) (xy 3.634043 0.930988) (xy 3.551604 1.206385) 24 | (xy 3.44721 1.476994) (xy 3.320703 1.741573) (xy 1.618698 -2.8238) (xy 0.35463 -2.956772) 25 | (xy 1.85659 1.097253) (xy 2.963865 4.031285) (xy 3.122132 3.910775) (xy 3.274563 3.784901) 26 | (xy 3.421091 3.653867) (xy 3.561646 3.517879) (xy 3.696161 3.377143) (xy 3.824566 3.231863) 27 | (xy 3.946794 3.082247) (xy 4.062777 2.928497) (xy 4.172445 2.770821) (xy 4.27573 2.609424) 28 | (xy 4.372565 2.44451) (xy 4.46288 2.276286) (xy 4.546607 2.104956) (xy 4.623678 1.930726) 29 | (xy 4.694025 1.753802) (xy 4.757578 1.574389) (xy 4.81427 1.392692) (xy 4.864033 1.208917) 30 | (xy 4.906797 1.023269) (xy 4.942494 0.835953) (xy 4.971057 0.647176) (xy 4.992416 0.457141) 31 | (xy 5.006504 0.266056) (xy 5.013251 0.074124) (xy 5.01259 -0.118448) (xy 5.004452 -0.311455) 32 | (xy 4.988768 -0.504692) (xy 4.965471 -0.697954) (xy 4.934492 -0.891034) (xy 4.895762 -1.083728) 33 | (xy 4.849213 -1.27583) (xy 4.794777 -1.467135) (xy 4.732826 -1.65614) (xy 4.663892 -1.841395) 34 | (xy 4.588146 -2.022766) (xy 4.50576 -2.200121) (xy 4.416905 -2.373329) (xy 4.321754 -2.542258) 35 | (xy 4.220479 -2.706775) (xy 4.113249 -2.866749) (xy 4.000238 -3.022048) (xy 3.881617 -3.172539) 36 | (xy 3.757557 -3.318092) (xy 3.628231 -3.458573) (xy 3.493809 -3.59385) (xy 3.354464 -3.723793) 37 | (xy 3.210367 -3.848269) (xy 3.06169 -3.967145) (xy 2.908604 -4.08029) (xy 2.751282 -4.187573) 38 | (xy 2.589894 -4.28886) (xy 2.424612 -4.38402) (xy 2.255608 -4.472922) (xy 2.083054 -4.555432) 39 | (xy 1.907121 -4.631419) (xy 1.727981 -4.700752) (xy 1.545805 -4.763298) (xy 1.360766 -4.818925) 40 | (xy 1.173034 -4.867501) (xy 0.982782 -4.908894) (xy 0.790181 -4.942972) (xy 0.595403 -4.969604) 41 | (xy 0.398619 -4.988657) (xy 0.200001 -5) (xy 0.2 -5)) (layer F.SilkS) (width 0.108119)) 42 | (fp_poly (pts (xy 1.42406 3.46264) (xy 1.148769 3.562691) (xy 0.869628 3.64021) (xy 0.587853 3.695472) 43 | (xy 0.304662 3.728753) (xy 0.021273 3.74033) (xy -0.261097 3.730478) (xy -0.541231 3.699474) 44 | (xy -0.817911 3.647592) (xy -1.089919 3.57511) (xy -1.356038 3.482303) (xy -1.615051 3.369447) 45 | (xy -1.865739 3.236818) (xy -2.106887 3.084692) (xy -2.337275 2.913345) (xy -2.555688 2.723053) 46 | (xy -2.760906 2.514091) (xy -2.949247 2.289806) (xy -3.117734 2.054183) (xy -3.26621 1.808461) 47 | (xy -3.394515 1.553877) (xy -3.502494 1.291671) (xy -3.589986 1.023079) (xy -3.656836 0.74934) 48 | (xy -3.702884 0.471693) (xy -3.727974 0.191374) (xy -3.731946 -0.090378) (xy -3.714644 -0.372324) 49 | (xy -3.67591 -0.653227) (xy -3.615585 -0.931848) (xy -3.533512 -1.206951) (xy -3.429533 -1.477295) 50 | (xy -3.30349 -1.741644) (xy -1.848027 2.012921) (xy -1.839377 2.012921) (xy -0.649921 2.07346) 51 | (xy -1.259787 0.451851) (xy -1.984275 -1.480026) (xy -2.961792 -4.021629) (xy -3.147103 -3.877654) 52 | (xy -3.323984 -3.726585) (xy -3.492362 -3.568759) (xy -3.652165 -3.404512) (xy -3.80332 -3.234181) 53 | (xy -3.945755 -3.058102) (xy -4.079398 -2.876612) (xy -4.204176 -2.690046) (xy -4.320016 -2.498742) 54 | (xy -4.426847 -2.303036) (xy -4.524596 -2.103265) (xy -4.613191 -1.899764) (xy -4.692558 -1.692871) 55 | (xy -4.762627 -1.482922) (xy -4.823323 -1.270253) (xy -4.874576 -1.055201) (xy -4.916312 -0.838101) 56 | (xy -4.94846 -0.619292) (xy -4.970946 -0.399109) (xy -4.983698 -0.177888) (xy -4.986644 0.044033) 57 | (xy -4.979713 0.266319) (xy -4.96283 0.488633) (xy -4.935924 0.710638) (xy -4.898922 0.931999) 58 | (xy -4.851753 1.152378) (xy -4.794342 1.371439) (xy -4.726619 1.588846) (xy -4.648511 1.804262) 59 | (xy -4.559945 2.017351) (xy -4.460849 2.227776) (xy -4.351151 2.4352) (xy -4.231963 2.637324) 60 | (xy -4.104661 2.831993) (xy -3.969571 3.019093) (xy -3.827018 3.198508) (xy -3.677324 3.370125) 61 | (xy -3.520817 3.533829) (xy -3.357818 3.689504) (xy -3.188655 3.837037) (xy -3.01365 3.976312) 62 | (xy -2.833128 4.107214) (xy -2.647415 4.22963) (xy -2.456834 4.343444) (xy -2.26171 4.448541) 63 | (xy -2.062368 4.544807) (xy -1.859132 4.632127) (xy -1.652327 4.710387) (xy -1.442277 4.779471) 64 | (xy -1.229307 4.839266) (xy -1.013741 4.889655) (xy -0.795905 4.930525) (xy -0.576122 4.961761) 65 | (xy -0.354717 4.983248) (xy -0.132015 4.994871) (xy 0.09166 4.996516) (xy 0.315984 4.988067) 66 | (xy 0.540631 4.969411) (xy 0.765277 4.940432) (xy 0.989598 4.901016) (xy 1.213268 4.851049) 67 | (xy 1.435965 4.790414) (xy 1.657362 4.718998) (xy 1.877135 4.636686) (xy 1.42406 3.46264)) (layer F.SilkS) (width 0.108119)) 68 | (fp_poly (pts (xy 1.42406 2.104813) (xy 0.197838 2.073462) (xy -0.22496 0.971848) (xy -0.84564 -0.648681) 69 | (xy -1.405766 -2.108129) (xy -0.148186 -2.108129) (xy 0.396802 -0.648681) (xy 1.42406 2.104813)) (layer F.SilkS) (width 0.108119)) 70 | (fp_poly (pts (xy -1.739909 2.012921) (xy -1.848027 2.012921) (xy -1.405766 -2.108129) (xy -1.297648 -2.108129)) (layer F.SilkS) (width 0.108119)) 71 | (fp_poly (pts (xy -0.649921 2.07346) (xy -0.758039 2.022564) (xy -0.256304 -2.108129) (xy -0.148186 -2.108129)) (layer F.SilkS) (width 0.108119)) 72 | (fp_poly (pts (xy 0.462748 -2.946772) (xy 0.305956 2.073462) (xy 0.197838 2.073462) (xy 0.35463 -2.956772)) (layer F.SilkS) (width 0.108119)) 73 | (fp_poly (pts (xy 1.42406 2.104813) (xy 1.315942 2.103813) (xy 1.51058 -2.8238) (xy 1.618698 -2.8238)) (layer F.SilkS) (width 0.108119)) 74 | ) 75 | -------------------------------------------------------------------------------- /pcb/local/modules/Symbol_local.pretty/Logo_OpenEEW_5mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Logo_OpenEEW_5mm (layer F.Cu) (tedit 5F9335EE) 2 | (descr "OpenEEW Logo 5mm") 3 | (tags "OpenEEW Logo Silkscreen") 4 | (fp_text reference REF** (at 0 0) (layer F.SilkS) hide 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value Logo_OpenEEW_5mm (at 0 -0.5) (layer F.Fab) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer Dwgs.User) (width 0.12)) 11 | (fp_line (start 2.5 -2.5) (end 2.5 2.5) (layer Dwgs.User) (width 0.12)) 12 | (fp_line (start 2.5 2.5) (end -2.5 2.5) (layer Dwgs.User) (width 0.12)) 13 | (fp_line (start -2.5 2.5) (end -2.5 -2.5) (layer Dwgs.User) (width 0.12)) 14 | (fp_poly (pts (xy 0.1 -2.5) (xy 0.034176 -2.501655) (xy -0.031588 -2.501576) (xy -0.097259 -2.499768) 15 | (xy -0.162803 -2.496238) (xy -0.228187 -2.490991) (xy -0.293378 -2.484033) (xy -0.358341 -2.475369) 16 | (xy -0.423044 -2.465006) (xy -0.487452 -2.45295) (xy -0.551533 -2.439206) (xy -0.615252 -2.423779) 17 | (xy -0.678577 -2.406677) (xy -0.741473 -2.387904) (xy -0.803908 -2.367467) (xy -0.865847 -2.345372) 18 | (xy -0.927258 -2.321623) (xy -0.705587 -1.732978) (xy -0.567819 -1.783264) (xy -0.428109 -1.822258) 19 | (xy -0.287065 -1.850097) (xy -0.1453 -1.866921) (xy -0.003424 -1.872867) (xy 0.137951 -1.868072) 20 | (xy 0.278216 -1.852676) (xy 0.416758 -1.826815) (xy 0.552967 -1.790628) (xy 0.686232 -1.744253) 21 | (xy 0.815943 -1.687828) (xy 0.941487 -1.62149) (xy 1.062255 -1.545379) (xy 1.177635 -1.459631) 22 | (xy 1.287016 -1.364384) (xy 1.389787 -1.259777) (xy 1.4841 -1.147488) (xy 1.568461 -1.029517) 23 | (xy 1.642791 -0.906486) (xy 1.707011 -0.779015) (xy 1.761042 -0.647727) (xy 1.804805 -0.513241) 24 | (xy 1.838221 -0.376179) (xy 1.861212 -0.237163) (xy 1.873698 -0.096813) (xy 1.875601 0.044248) 25 | (xy 1.866842 0.185401) (xy 1.847342 0.326023) (xy 1.817021 0.465494) (xy 1.775802 0.603193) 26 | (xy 1.723605 0.738497) (xy 1.660351 0.870787) (xy 0.809349 -1.4119) (xy 0.177315 -1.478386) 27 | (xy 0.928295 0.548627) (xy 1.481932 2.015643) (xy 1.561066 1.955388) (xy 1.637281 1.892451) 28 | (xy 1.710545 1.826934) (xy 1.780823 1.75894) (xy 1.84808 1.688572) (xy 1.912283 1.615932) 29 | (xy 1.973397 1.541124) (xy 2.031388 1.464249) (xy 2.086222 1.385411) (xy 2.137865 1.304712) 30 | (xy 2.186282 1.222255) (xy 2.23144 1.138143) (xy 2.273303 1.052478) (xy 2.311839 0.965363) 31 | (xy 2.347012 0.876901) (xy 2.378789 0.787195) (xy 2.407135 0.696346) (xy 2.432016 0.604459) 32 | (xy 2.453398 0.511635) (xy 2.471247 0.417977) (xy 2.485528 0.323588) (xy 2.496208 0.228571) 33 | (xy 2.503252 0.133028) (xy 2.506625 0.037062) (xy 2.506295 -0.059224) (xy 2.502226 -0.155727) 34 | (xy 2.494384 -0.252346) (xy 2.482735 -0.348977) (xy 2.467246 -0.445517) (xy 2.447881 -0.541864) 35 | (xy 2.424606 -0.637915) (xy 2.397388 -0.733567) (xy 2.366413 -0.82807) (xy 2.331946 -0.920697) 36 | (xy 2.294073 -1.011383) (xy 2.25288 -1.10006) (xy 2.208452 -1.186664) (xy 2.160877 -1.271129) 37 | (xy 2.110239 -1.353387) (xy 2.056624 -1.433374) (xy 2.000119 -1.511024) (xy 1.940808 -1.586269) 38 | (xy 1.878778 -1.659046) (xy 1.814115 -1.729286) (xy 1.746904 -1.796925) (xy 1.677232 -1.861896) 39 | (xy 1.605183 -1.924134) (xy 1.530845 -1.983572) (xy 1.454302 -2.040145) (xy 1.375641 -2.093786) 40 | (xy 1.294947 -2.14443) (xy 1.212306 -2.19201) (xy 1.127804 -2.236461) (xy 1.041527 -2.277716) 41 | (xy 0.95356 -2.315709) (xy 0.86399 -2.350376) (xy 0.772902 -2.381649) (xy 0.680383 -2.409462) 42 | (xy 0.586517 -2.43375) (xy 0.491391 -2.454447) (xy 0.39509 -2.471486) (xy 0.297701 -2.484802) 43 | (xy 0.199309 -2.494328) (xy 0.1 -2.5)) (layer F.SilkS) (width 0.054059)) 44 | (fp_poly (pts (xy 0.71203 1.73132) (xy 0.574384 1.781346) (xy 0.434814 1.820105) (xy 0.293926 1.847736) 45 | (xy 0.152331 1.864377) (xy 0.010636 1.870165) (xy -0.130549 1.865239) (xy -0.270616 1.849737) 46 | (xy -0.408956 1.823796) (xy -0.54496 1.787555) (xy -0.678019 1.741152) (xy -0.807526 1.684724) 47 | (xy -0.93287 1.618409) (xy -1.053444 1.542346) (xy -1.168638 1.456673) (xy -1.277844 1.361527) 48 | (xy -1.380453 1.257046) (xy -1.474624 1.144903) (xy -1.558867 1.027092) (xy -1.633105 0.904231) 49 | (xy -1.697258 0.776939) (xy -1.751247 0.645836) (xy -1.794993 0.51154) (xy -1.828418 0.37467) 50 | (xy -1.851442 0.235847) (xy -1.863987 0.095687) (xy -1.865973 -0.045189) (xy -1.857322 -0.186162) 51 | (xy -1.837955 -0.326613) (xy -1.807793 -0.465924) (xy -1.766756 -0.603475) (xy -1.714767 -0.738647) 52 | (xy -1.651745 -0.870822) (xy -0.924014 1.006461) (xy -0.919689 1.006461) (xy -0.324961 1.03673) 53 | (xy -0.629894 0.225926) (xy -0.992138 -0.740013) (xy -1.480896 -2.010814) (xy -1.573552 -1.938827) 54 | (xy -1.661992 -1.863292) (xy -1.746181 -1.784379) (xy -1.826083 -1.702256) (xy -1.90166 -1.61709) 55 | (xy -1.972878 -1.529051) (xy -2.039699 -1.438306) (xy -2.102088 -1.345023) (xy -2.160008 -1.249371) 56 | (xy -2.213424 -1.151518) (xy -2.262298 -1.051632) (xy -2.306596 -0.949882) (xy -2.346279 -0.846435) 57 | (xy -2.381314 -0.741461) (xy -2.411662 -0.635126) (xy -2.437288 -0.5276) (xy -2.458156 -0.41905) 58 | (xy -2.47423 -0.309646) (xy -2.485473 -0.199554) (xy -2.491849 -0.088944) (xy -2.493322 0.022017) 59 | (xy -2.489857 0.13316) (xy -2.481415 0.244317) (xy -2.467962 0.355319) (xy -2.449461 0.466) 60 | (xy -2.425877 0.576189) (xy -2.397171 0.68572) (xy -2.36331 0.794423) (xy -2.324256 0.902131) 61 | (xy -2.279973 1.008676) (xy -2.230425 1.113888) (xy -2.175576 1.2176) (xy -2.115982 1.318662) 62 | (xy -2.052331 1.415997) (xy -1.984786 1.509547) (xy -1.913509 1.599254) (xy -1.838662 1.685063) 63 | (xy -1.760409 1.766915) (xy -1.678909 1.844752) (xy -1.594328 1.918519) (xy -1.506825 1.988156) 64 | (xy -1.416564 2.053607) (xy -1.323708 2.114815) (xy -1.228417 2.171722) (xy -1.130855 2.224271) 65 | (xy -1.031184 2.272404) (xy -0.929566 2.316064) (xy -0.826164 2.355194) (xy -0.721139 2.389736) 66 | (xy -0.614654 2.419633) (xy -0.506871 2.444828) (xy -0.397953 2.465263) (xy -0.288061 2.480881) 67 | (xy -0.177359 2.491624) (xy -0.066008 2.497436) (xy 0.04583 2.498258) (xy 0.157992 2.494034) 68 | (xy 0.270315 2.484706) (xy 0.382638 2.470216) (xy 0.494799 2.450508) (xy 0.606634 2.425525) 69 | (xy 0.717982 2.395207) (xy 0.828681 2.359499) (xy 0.938567 2.318343) (xy 0.71203 1.73132)) (layer F.SilkS) (width 0.054059)) 70 | (fp_poly (pts (xy 0.71203 1.052407) (xy 0.098919 1.036731) (xy -0.11248 0.485924) (xy -0.42282 -0.32434) 71 | (xy -0.702883 -1.054064) (xy -0.074093 -1.054064) (xy 0.198401 -0.32434) (xy 0.71203 1.052407)) (layer F.SilkS) (width 0.054059)) 72 | (fp_poly (pts (xy -0.815896 1.006461) (xy -0.924014 1.006461) (xy -0.702883 -1.054064) (xy -0.594765 -1.054064)) (layer F.SilkS) (width 0.054059)) 73 | (fp_poly (pts (xy -0.324961 1.03673) (xy -0.433079 1.02673) (xy -0.182211 -1.054064) (xy -0.074093 -1.054064)) (layer F.SilkS) (width 0.054059)) 74 | (fp_poly (pts (xy 0.71203 1.052407) (xy 0.603912 1.051407) (xy 0.701231 -1.4119) (xy 0.809349 -1.4119)) (layer F.SilkS) (width 0.054059)) 75 | (fp_poly (pts (xy 0.285433 -1.468386) (xy 0.207037 1.036731) (xy 0.098919 1.036731) (xy 0.177315 -1.478386)) (layer F.SilkS) (width 0.054059)) 76 | ) 77 | -------------------------------------------------------------------------------- /pcb/local/modules/Symbol_local.pretty/Text_OpenEEW_2mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Text_OpenEEW_2mm (layer F.Cu) (tedit 5F933E0E) 2 | (fp_text reference REF** (at 0 0) (layer F.SilkS) hide 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value Text_OpenEEW_2mm (at 0 -0.5) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_poly (pts (xy 0.6 0.5) (xy 0.6 -1.050335) (xy 1.64698 -1.050335) (xy 1.64698 -0.75727) 9 | (xy 0.948994 -0.75727) (xy 0.948994 -0.45302) (xy 1.568681 -0.45302) (xy 1.568681 -0.166666) 10 | (xy 0.948993 -0.166666) (xy 0.948993 0.206935) (xy 1.698434 0.206935) (xy 1.698434 0.5) 11 | (xy 0.6 0.5)) (layer F.SilkS) (width 0.055928)) 12 | (fp_poly (pts (xy -1.538741 -0.708065) (xy -1.552145 -0.707907) (xy -1.565513 -0.707434) (xy -1.578845 -0.706645) 13 | (xy -1.592141 -0.705542) (xy -1.605401 -0.704123) (xy -1.618626 -0.70239) (xy -1.631815 -0.700341) 14 | (xy -1.644969 -0.697978) (xy -1.658088 -0.6953) (xy -1.671172 -0.692308) (xy -1.684222 -0.689002) 15 | (xy -1.697237 -0.685381) (xy -1.710219 -0.681446) (xy -1.723166 -0.677197) (xy -1.73608 -0.672634) 16 | (xy -1.74896 -0.667757) (xy -1.761457 -0.662575) (xy -1.77378 -0.657097) (xy -1.785929 -0.651322) 17 | (xy -1.797903 -0.645249) (xy -1.809703 -0.638881) (xy -1.821329 -0.632215) (xy -1.83278 -0.625252) 18 | (xy -1.844056 -0.617992) (xy -1.855158 -0.610435) (xy -1.866085 -0.602581) (xy -1.876837 -0.59443) 19 | (xy -1.887413 -0.585981) (xy -1.897815 -0.577235) (xy -1.908041 -0.568191) (xy -1.918092 -0.55885) 20 | (xy -1.927967 -0.549211) (xy -1.937641 -0.539266) (xy -1.947088 -0.529007) (xy -1.956309 -0.518432) 21 | (xy -1.965303 -0.507542) (xy -1.974069 -0.496337) (xy -1.982609 -0.484818) (xy -1.990921 -0.472984) 22 | (xy -1.999007 -0.460835) (xy -2.006865 -0.448372) (xy -2.014496 -0.435594) (xy -2.021899 -0.422501) 23 | (xy -2.029075 -0.409095) (xy -2.036024 -0.395373) (xy -2.042745 -0.381338) (xy -2.049239 -0.366988) 24 | (xy -2.055505 -0.352324) (xy -2.061193 -0.337625) (xy -2.066513 -0.322611) (xy -2.071465 -0.307282) 25 | (xy -2.076049 -0.291638) (xy -2.080266 -0.275679) (xy -2.084115 -0.259406) (xy -2.087596 -0.242817) 26 | (xy -2.090711 -0.225914) (xy -2.093458 -0.208696) (xy -2.095838 -0.191164) (xy -2.097852 -0.173317) 27 | (xy -2.099499 -0.155156) (xy -2.10078 -0.136681) (xy -2.101695 -0.117891) (xy -2.102244 -0.098787) 28 | (xy -2.102427 -0.079369) (xy -2.101869 -0.047214) (xy -2.100195 -0.015623) (xy -2.097404 0.015405) 29 | (xy -2.093495 0.045873) (xy -2.088468 0.075781) (xy -2.082321 0.105131) (xy -2.075055 0.133926) 30 | (xy -2.066667 0.162166) (xy -2.061764 0.176034) (xy -2.056564 0.189675) (xy -2.051067 0.203088) 31 | (xy -2.045273 0.216274) (xy -2.039181 0.229233) (xy -2.032793 0.241963) (xy -2.026107 0.254467) 32 | (xy -2.019124 0.266744) (xy -2.011844 0.278793) (xy -2.004266 0.290615) (xy -1.996392 0.30221) 33 | (xy -1.988221 0.313578) (xy -1.979752 0.324718) (xy -1.970987 0.335632) (xy -1.961924 0.346319) 34 | (xy -1.952565 0.35678) (xy -1.942629 0.366716) (xy -1.932397 0.37639) (xy -1.921867 0.385803) 35 | (xy -1.911041 0.394954) (xy -1.899918 0.403843) (xy -1.888498 0.41247) (xy -1.87678 0.420835) 36 | (xy -1.864766 0.428938) (xy -1.852455 0.436778) (xy -1.839846 0.444357) (xy -1.826941 0.451673) 37 | (xy -1.813738 0.458727) (xy -1.800237 0.465518) (xy -1.786439 0.472047) (xy -1.772344 0.478313) 38 | (xy -1.757952 0.484317) (xy -1.742973 0.490006) (xy -1.727681 0.49533) (xy -1.712073 0.500287) 39 | (xy -1.696152 0.504878) (xy -1.679915 0.509102) (xy -1.663365 0.51296) (xy -1.646499 0.516451) 40 | (xy -1.629319 0.519575) (xy -1.611825 0.522332) (xy -1.594016 0.524722) (xy -1.575892 0.526744) 41 | (xy -1.557453 0.528399) (xy -1.5387 0.529687) (xy -1.519632 0.530607) (xy -1.50025 0.531159) 42 | (xy -1.480553 0.531343) (xy -1.464893 0.531237) (xy -1.449235 0.530922) (xy -1.433578 0.530397) 43 | (xy -1.417921 0.529661) (xy -1.402264 0.528717) (xy -1.386606 0.527562) (xy -1.370948 0.526198) 44 | (xy -1.355289 0.524625) (xy -1.339767 0.522878) (xy -1.324521 0.520992) (xy -1.309554 0.518967) 45 | (xy -1.294864 0.516803) (xy -1.280454 0.514499) (xy -1.266325 0.512055) (xy -1.252478 0.50947) 46 | (xy -1.238914 0.506745) (xy -1.225107 0.504435) (xy -1.211649 0.501982) (xy -1.198542 0.499386) 47 | (xy -1.185785 0.496649) (xy -1.173376 0.493773) (xy -1.161318 0.490758) (xy -1.149608 0.487605) 48 | (xy -1.138248 0.484317) (xy -1.12734 0.48096) (xy -1.11699 0.477602) (xy -1.107197 0.474242) 49 | (xy -1.097962 0.470881) (xy -1.089287 0.467521) (xy -1.081171 0.464161) (xy -1.073617 0.460802) 50 | (xy -1.066624 0.457445) (xy -1.111376 0.186764) (xy -1.125883 0.192815) (xy -1.141438 0.198661) 51 | (xy -1.158043 0.204301) (xy -1.175696 0.209733) (xy -1.194398 0.214955) (xy -1.214148 0.219966) 52 | (xy -1.234947 0.224763) (xy -1.256794 0.229346) (xy -1.278677 0.233014) (xy -1.300703 0.236188) 53 | (xy -1.322871 0.238871) (xy -1.345179 0.241064) (xy -1.367627 0.242767) (xy -1.390214 0.243981) 54 | (xy -1.412939 0.244709) (xy -1.435801 0.244952) (xy -1.453471 0.244716) (xy -1.470687 0.24401) 55 | (xy -1.487449 0.242832) (xy -1.503756 0.241184) (xy -1.51961 0.239063) (xy -1.535009 0.236472) 56 | (xy -1.549954 0.233408) (xy -1.564444 0.229873) (xy -1.57848 0.225866) (xy -1.592061 0.221387) 57 | (xy -1.605188 0.216436) (xy -1.617861 0.211013) (xy -1.630079 0.205117) (xy -1.641842 0.198749) 58 | (xy -1.65315 0.191908) (xy -1.664004 0.184594) (xy -1.674342 0.176878) (xy -1.684104 0.16883) 59 | (xy -1.69329 0.16045) (xy -1.701899 0.151738) (xy -1.709932 0.142694) (xy -1.717388 0.133319) 60 | (xy -1.724268 0.123611) (xy -1.730571 0.113571) (xy -1.736297 0.1032) (xy -1.741447 0.092496) 61 | (xy -1.746019 0.08146) (xy -1.750015 0.070092) (xy -1.753433 0.058391) (xy -1.756275 0.046359) 62 | (xy -1.758539 0.033994) (xy -1.760226 0.021296) (xy -1.003993 0.021296) (xy -1.319426 -0.206907) 63 | (xy -1.760226 -0.206907) (xy -1.758442 -0.217499) (xy -1.756447 -0.228022) (xy -1.754242 -0.238475) 64 | (xy -1.751826 -0.248859) (xy -1.749201 -0.259173) (xy -1.746367 -0.269417) (xy -1.743323 -0.27959) 65 | (xy -1.740072 -0.289692) (xy -1.73807 -0.294962) (xy -1.735979 -0.300143) (xy -1.733799 -0.305236) 66 | (xy -1.731531 -0.310241) (xy -1.729174 -0.315159) (xy -1.72673 -0.319989) (xy -1.724197 -0.324731) 67 | (xy -1.721577 -0.329386) (xy -1.71887 -0.333953) (xy -1.716076 -0.338433) (xy -1.713194 -0.342826) 68 | (xy -1.710226 -0.347132) (xy -1.707171 -0.351351) (xy -1.70403 -0.355483) (xy -1.700803 -0.359528) 69 | (xy -1.69749 -0.363486) (xy -1.694083 -0.36735) (xy -1.690571 -0.37111) (xy -1.686955 -0.374767) 70 | (xy -1.683234 -0.37832) (xy -1.67941 -0.38177) (xy -1.67548 -0.385115) (xy -1.671447 -0.388356) 71 | (xy -1.667308 -0.391492) (xy -1.663064 -0.394523) (xy -1.658716 -0.397449) (xy -1.654262 -0.40027) 72 | (xy -1.649704 -0.402985) (xy -1.645039 -0.405595) (xy -1.64027 -0.408098) (xy -1.635395 -0.410495) 73 | (xy -1.630414 -0.412786) (xy -1.625319 -0.415223) (xy -1.620101 -0.417501) (xy -1.614761 -0.41962) 74 | (xy -1.609298 -0.421581) (xy -1.603712 -0.423384) (xy -1.598003 -0.425029) (xy -1.592172 -0.426515) 75 | (xy -1.586219 -0.427844) (xy -1.580143 -0.429016) (xy -1.573945 -0.430031) (xy -1.567625 -0.430889) 76 | (xy -1.561182 -0.431591) (xy -1.554618 -0.432136) (xy -1.547931 -0.432525) (xy -1.541123 -0.432758) 77 | (xy -1.534193 -0.432836) (xy -1.527002 -0.432758) (xy -1.51997 -0.432525) (xy -1.513096 -0.432136) 78 | (xy -1.506381 -0.431591) (xy -1.499824 -0.430889) (xy -1.493425 -0.430031) (xy -1.487184 -0.429016) 79 | (xy -1.4811 -0.427844) (xy -1.475174 -0.426515) (xy -1.469405 -0.425029) (xy -1.463792 -0.423384) 80 | (xy -1.458336 -0.421581) (xy -1.453037 -0.41962) (xy -1.447894 -0.417501) (xy -1.442906 -0.415223) 81 | (xy -1.438075 -0.412786) (xy -1.433102 -0.410225) (xy -1.428251 -0.407577) (xy -1.423522 -0.404841) 82 | (xy -1.418915 -0.402017) (xy -1.41443 -0.399106) (xy -1.410067 -0.396107) (xy -1.405826 -0.393021) 83 | (xy -1.401707 -0.389847) (xy -1.397711 -0.386586) (xy -1.393837 -0.383238) (xy -1.390085 -0.379802) 84 | (xy -1.386457 -0.376279) (xy -1.38295 -0.372669) (xy -1.379567 -0.368972) (xy -1.376307 -0.365187) 85 | (xy -1.373169 -0.361316) (xy -1.369874 -0.357366) (xy -1.366702 -0.353345) (xy -1.363652 -0.349253) 86 | (xy -1.360725 -0.345091) (xy -1.357919 -0.340859) (xy -1.355236 -0.336557) (xy -1.352676 -0.332184) 87 | (xy -1.350237 -0.327741) (xy -1.347921 -0.323229) (xy -1.345727 -0.318647) (xy -1.343656 -0.313995) 88 | (xy -1.341707 -0.309273) (xy -1.339881 -0.304482) (xy -1.338176 -0.299621) (xy -1.336595 -0.294691) 89 | (xy -1.335135 -0.289692) (xy -1.331952 -0.27959) (xy -1.329115 -0.269417) (xy -1.326625 -0.259173) 90 | (xy -1.324484 -0.248859) (xy -1.322692 -0.238475) (xy -1.321251 -0.228022) (xy -1.320162 -0.217499) 91 | (xy -1.319426 -0.206907) (xy -1.003993 0.021296) (xy -1.001771 -0.007257) (xy -0.999549 -0.039165) 92 | (xy -0.998564 -0.056647) (xy -0.997852 -0.073296) (xy -0.99742 -0.089105) (xy -0.997275 -0.104071) 93 | (xy -0.997843 -0.140694) (xy -0.999547 -0.17618) (xy -1.002387 -0.210528) (xy -1.006364 -0.24374) 94 | (xy -1.011476 -0.275814) (xy -1.017725 -0.306751) (xy -1.025109 -0.336552) (xy -1.03363 -0.365217) 95 | (xy -1.043287 -0.392745) (xy -1.054079 -0.419138) (xy -1.066008 -0.444395) (xy -1.079073 -0.468517) 96 | (xy -1.093274 -0.491504) (xy -1.108611 -0.513356) (xy -1.125083 -0.534073) (xy -1.142692 -0.553656) 97 | (xy -1.16128 -0.572348) (xy -1.180692 -0.589836) (xy -1.200926 -0.606119) (xy -1.221982 -0.621196) 98 | (xy -1.243861 -0.635069) (xy -1.266562 -0.647735) (xy -1.290085 -0.659196) (xy -1.31443 -0.669451) 99 | (xy -1.339596 -0.6785) (xy -1.365583 -0.686343) (xy -1.392391 -0.692979) (xy -1.420021 -0.69841) 100 | (xy -1.44847 -0.702634) (xy -1.47774 -0.705651) (xy -1.50783 -0.707461) (xy -1.538741 -0.708065)) (layer F.SilkS) (width 0.055928)) 101 | (fp_poly (pts (xy 4.351673 -0.884787) (xy 4.365376 -0.837388) (xy 4.379638 -0.786912) (xy 4.394459 -0.733361) 102 | (xy 4.40984 -0.676734) (xy 4.479191 -0.439597) (xy 4.555254 -0.193512) (xy 4.57413 -0.133109) 103 | (xy 4.592726 -0.074944) (xy 4.611042 -0.019015) (xy 4.629079 0.034676) (xy 4.64362 -0.02363) 104 | (xy 4.658162 -0.084452) (xy 4.672703 -0.147791) (xy 4.687245 -0.213646) (xy 4.702625 -0.28132) 105 | (xy 4.717446 -0.350112) (xy 4.731708 -0.420022) (xy 4.745411 -0.491051) (xy 4.771697 -0.633669) 106 | (xy 4.796865 -0.775168) (xy 4.822592 -0.915548) (xy 4.846082 -1.050335) (xy 5.208498 -1.050335) 107 | (xy 5.16781 -0.855005) (xy 5.124045 -0.658277) (xy 5.077204 -0.460151) (xy 5.027288 -0.260626) 108 | (xy 4.975834 -0.062919) (xy 4.922142 0.129754) (xy 4.866214 0.317394) (xy 4.808049 0.5) 109 | (xy 4.488139 0.5) (xy 4.449269 0.391359) (xy 4.410958 0.280202) (xy 4.373206 0.166527) 110 | (xy 4.336013 0.050336) (xy 4.262747 -0.186801) (xy 4.190599 -0.423937) (xy 4.047422 0.050336) 111 | (xy 4.011208 0.166527) (xy 3.974156 0.280202) (xy 3.936265 0.391359) (xy 3.897534 0.5) 112 | (xy 3.577623 0.5) (xy 3.519318 0.317394) (xy 3.46297 0.129754) (xy 3.40858 -0.062919) 113 | (xy 3.356147 -0.260626) (xy 3.30721 -0.460151) (xy 3.261069 -0.658277) (xy 3.217725 -0.855005) 114 | (xy 3.177177 -1.050335) (xy 3.555253 -1.050335) (xy 3.578742 -0.915548) (xy 3.604469 -0.775168) 115 | (xy 3.631874 -0.633669) (xy 3.660398 -0.491051) (xy 3.689481 -0.350112) (xy 3.718564 -0.213646) 116 | (xy 3.734224 -0.147791) (xy 3.749884 -0.084452) (xy 3.765544 -0.02363) (xy 3.781203 0.034676) 117 | (xy 3.801198 -0.020973) (xy 3.820913 -0.0783) (xy 3.840348 -0.137304) (xy 3.859504 -0.197986) 118 | (xy 3.896976 -0.321029) (xy 3.93333 -0.444071) (xy 3.950808 -0.505033) (xy 3.967446 -0.564877) 119 | (xy 3.983246 -0.623602) (xy 3.998206 -0.681208) (xy 4.054134 -0.884787) (xy 4.351673 -0.884787)) (layer F.SilkS) (width 0.055928)) 120 | (fp_poly (pts (xy -0.740042 -0.636465) (xy -0.71802 -0.642547) (xy -0.69446 -0.64849) (xy -0.669363 -0.654292) 121 | (xy -0.642727 -0.659955) (xy -0.614553 -0.665478) (xy -0.584841 -0.670861) (xy -0.553591 -0.676104) 122 | (xy -0.520803 -0.681208) (xy -0.487036 -0.686451) (xy -0.45285 -0.690995) (xy -0.418244 -0.69484) 123 | (xy -0.383219 -0.697986) (xy -0.347774 -0.700433) (xy -0.31191 -0.702181) (xy -0.275627 -0.70323) 124 | (xy -0.238924 -0.703579) (xy -0.202255 -0.70295) (xy -0.167195 -0.701062) (xy -0.133743 -0.697916) 125 | (xy -0.11762 -0.695872) (xy -0.101899 -0.693512) (xy -0.08658 -0.690838) (xy -0.071663 -0.687849) 126 | (xy -0.057147 -0.684546) (xy -0.043034 -0.680928) (xy -0.029323 -0.676996) (xy -0.016014 -0.672749) 127 | (xy -0.003107 -0.668187) (xy 0.009399 -0.663311) (xy 0.021817 -0.658426) (xy 0.033902 -0.653279) 128 | (xy 0.045656 -0.647869) (xy 0.057078 -0.642198) (xy 0.068167 -0.636264) (xy 0.078925 -0.630068) 129 | (xy 0.08935 -0.62361) (xy 0.099443 -0.61689) (xy 0.109205 -0.609908) (xy 0.118634 -0.602663) 130 | (xy 0.127731 -0.595157) (xy 0.136496 -0.587388) (xy 0.144929 -0.579357) (xy 0.15303 -0.571064) 131 | (xy 0.160799 -0.562509) (xy 0.168235 -0.553691) (xy 0.175375 -0.544638) (xy 0.182252 -0.535375) 132 | (xy 0.188868 -0.525902) (xy 0.195221 -0.516219) (xy 0.201312 -0.506327) (xy 0.20714 -0.496225) 133 | (xy 0.212707 -0.485913) (xy 0.218011 -0.475391) (xy 0.223054 -0.46466) (xy 0.227834 -0.453719) 134 | (xy 0.232352 -0.442568) (xy 0.236608 -0.431208) (xy 0.240601 -0.419638) (xy 0.244333 -0.407858) 135 | (xy 0.247802 -0.395868) (xy 0.251009 -0.383669) (xy 0.256777 -0.358711) (xy 0.261776 -0.333053) 136 | (xy 0.266005 -0.306697) (xy 0.269466 -0.279642) (xy 0.272157 -0.251887) (xy 0.27408 -0.223434) 137 | (xy 0.275234 -0.194281) (xy 0.275618 -0.164429) (xy 0.275618 0.5) (xy -0.057716 0.5) 138 | (xy -0.057716 -0.124161) (xy -0.05838 -0.162961) (xy -0.05921 -0.18126) (xy -0.060373 -0.198825) 139 | (xy -0.061867 -0.215656) (xy -0.063693 -0.231753) (xy -0.065852 -0.247116) (xy -0.068342 -0.261745) 140 | (xy -0.071165 -0.275639) (xy -0.07432 -0.2888) (xy -0.077806 -0.301227) (xy -0.081625 -0.312919) 141 | (xy -0.085776 -0.323878) (xy -0.090259 -0.334102) (xy -0.095074 -0.343592) (xy -0.100221 -0.352349) 142 | (xy -0.10295 -0.356478) (xy -0.105823 -0.360476) (xy -0.10884 -0.364343) (xy -0.112001 -0.368079) 143 | (xy -0.115307 -0.371683) (xy -0.118756 -0.375157) (xy -0.12235 -0.3785) (xy -0.126088 -0.381711) 144 | (xy -0.12997 -0.384792) (xy -0.133997 -0.387741) (xy -0.138167 -0.390559) (xy -0.142482 -0.393246) 145 | (xy -0.146941 -0.395803) (xy -0.151544 -0.398228) (xy -0.156292 -0.400521) (xy -0.161183 -0.402684) 146 | (xy -0.166219 -0.404716) (xy -0.171399 -0.406617) (xy -0.176723 -0.408386) (xy -0.182191 -0.410025) 147 | (xy -0.193561 -0.412909) (xy -0.205507 -0.415268) (xy -0.218029 -0.417103) (xy -0.231129 -0.418414) 148 | (xy -0.244805 -0.419201) (xy -0.259058 -0.419463) (xy -0.268076 -0.419393) (xy -0.277235 -0.419183) 149 | (xy -0.286533 -0.418834) (xy -0.295971 -0.418344) (xy -0.305549 -0.417715) (xy -0.315266 -0.416946) 150 | (xy -0.325123 -0.416037) (xy -0.33512 -0.414989) (xy -0.354695 -0.41373) (xy -0.373152 -0.412192) 151 | (xy -0.39049 -0.410375) (xy -0.398739 -0.409361) (xy -0.406709 -0.408277) (xy -0.406709 0.5) 152 | (xy -0.740042 0.5) (xy -0.740042 -0.636465)) (layer F.SilkS) (width 0.055928)) 153 | (fp_poly (pts (xy -4.437994 -1.086129) (xy -4.457237 -1.085928) (xy -4.476374 -1.085325) (xy -4.495406 -1.084319) 154 | (xy -4.514333 -1.082911) (xy -4.533155 -1.081101) (xy -4.551871 -1.078889) (xy -4.570483 -1.076275) 155 | (xy -4.58899 -1.073258) (xy -4.607391 -1.06984) (xy -4.625688 -1.06602) (xy -4.643881 -1.061797) 156 | (xy -4.661968 -1.057173) (xy -4.679951 -1.052148) (xy -4.69783 -1.04672) (xy -4.715604 -1.040891) 157 | (xy -4.733274 -1.03466) (xy -4.75049 -1.028028) (xy -4.767464 -1.020995) (xy -4.784195 -1.013561) 158 | (xy -4.800683 -1.005726) (xy -4.816928 -0.997489) (xy -4.832928 -0.988851) (xy -4.848685 -0.979812) 159 | (xy -4.864197 -0.97037) (xy -4.879464 -0.960527) (xy -4.894487 -0.950282) (xy -4.909264 -0.939634) 160 | (xy -4.923795 -0.928583) (xy -4.938081 -0.91713) (xy -4.952121 -0.905275) (xy -4.965914 -0.893016) 161 | (xy -4.97946 -0.880354) (xy -4.992437 -0.867298) (xy -5.00508 -0.853856) (xy -5.017391 -0.840029) 162 | (xy -5.029369 -0.825817) (xy -5.041015 -0.81122) (xy -5.052328 -0.796239) (xy -5.063309 -0.780872) 163 | (xy -5.073957 -0.765121) (xy -5.084274 -0.748985) (xy -5.094258 -0.732465) (xy -5.103911 -0.715561) 164 | (xy -5.113232 -0.698272) (xy -5.122221 -0.6806) (xy -5.130879 -0.662543) (xy -5.139206 -0.644103) 165 | (xy -5.147202 -0.625279) (xy -5.154787 -0.606351) (xy -5.161883 -0.587037) (xy -5.168489 -0.567338) 166 | (xy -5.174605 -0.547254) (xy -5.180233 -0.526786) (xy -5.18537 -0.505933) (xy -5.190019 -0.484695) 167 | (xy -5.194178 -0.463072) (xy -5.197847 -0.441065) (xy -5.201027 -0.418674) (xy -5.203718 -0.395898) 168 | (xy -5.20592 -0.372738) (xy -5.207632 -0.349193) (xy -5.208855 -0.325265) (xy -5.209589 -0.300953) 169 | (xy -5.209833 -0.276256) (xy -5.208892 -0.227216) (xy -5.206065 -0.179646) (xy -5.203945 -0.156412) 170 | (xy -5.201353 -0.133546) (xy -5.19829 -0.111047) (xy -5.194755 -0.088915) (xy -5.190748 -0.06715) 171 | (xy -5.186269 -0.045752) (xy -5.181318 -0.024721) (xy -5.175895 -0.004057) (xy -5.169999 0.016241) 172 | (xy -5.16363 0.036173) (xy -5.156789 0.055738) (xy -5.149475 0.074936) (xy -5.14175 0.093489) 173 | (xy -5.133675 0.111675) (xy -5.125249 0.129493) (xy -5.116474 0.146945) (xy -5.107349 0.16403) 174 | (xy -5.097874 0.180747) (xy -5.08805 0.197098) (xy -5.077875 0.213082) (xy -5.067352 0.228699) 175 | (xy -5.056479 0.243948) (xy -5.045256 0.258831) (xy -5.033684 0.273346) (xy -5.021763 0.287495) 176 | (xy -5.009492 0.301276) (xy -4.996873 0.31469) (xy -4.983904 0.327737) (xy -4.970621 0.340129) 177 | (xy -4.957059 0.352137) (xy -4.943216 0.36376) (xy -4.929095 0.374999) (xy -4.914693 0.385853) 178 | (xy -4.900012 0.396323) (xy -4.885051 0.406408) (xy -4.869811 0.416109) (xy -4.854291 0.425426) 179 | (xy -4.838492 0.434358) (xy -4.822412 0.442905) (xy -4.806053 0.451068) (xy -4.789415 0.458846) 180 | (xy -4.772497 0.46624) (xy -4.755299 0.473249) (xy -4.737821 0.479873) (xy -4.720133 0.486104) 181 | (xy -4.702304 0.491933) (xy -4.684335 0.497361) (xy -4.666225 0.502387) (xy -4.647974 0.507011) 182 | (xy -4.629584 0.511233) (xy -4.611053 0.515053) (xy -4.592382 0.518471) (xy -4.573571 0.521488) 183 | (xy -4.554621 0.524102) (xy -4.535531 0.526314) (xy -4.516302 0.528124) (xy -4.496934 0.529532) 184 | (xy -4.477426 0.530538) (xy -4.45778 0.531141) (xy -4.437994 0.531343) (xy -4.397515 0.530538) 185 | (xy -4.357734 0.528124) (xy -4.318651 0.524102) (xy -4.299371 0.521488) (xy -4.280266 0.518471) 186 | (xy -4.261336 0.515053) (xy -4.242581 0.511233) (xy -4.224 0.507011) (xy -4.205595 0.502387) 187 | (xy -4.187364 0.497361) (xy -4.169309 0.491933) (xy -4.151429 0.486104) (xy -4.133724 0.479873) 188 | (xy -4.115984 0.473249) (xy -4.098559 0.46624) (xy -4.081448 0.458846) (xy -4.064652 0.451068) 189 | (xy -4.048171 0.442905) (xy -4.032004 0.434358) (xy -4.016152 0.425426) (xy -4.000615 0.416109) 190 | (xy -3.985392 0.406408) (xy -3.970484 0.396323) (xy -3.95589 0.385853) (xy -3.941611 0.374999) 191 | (xy -3.927647 0.36376) (xy -3.913997 0.352137) (xy -3.900661 0.340129) (xy -3.887641 0.327737) 192 | (xy -3.874952 0.31469) (xy -3.862615 0.301276) (xy -3.850628 0.287495) (xy -3.838991 0.273346) 193 | (xy -3.827704 0.258831) (xy -3.816767 0.243948) (xy -3.80618 0.228699) (xy -3.795943 0.213082) 194 | (xy -3.786055 0.197098) (xy -3.776517 0.180747) (xy -3.767328 0.16403) (xy -3.758488 0.146945) 195 | (xy -3.749997 0.129493) (xy -3.741855 0.111675) (xy -3.734062 0.093489) (xy -3.726617 0.074936) 196 | (xy -3.719303 0.055738) (xy -3.712462 0.036173) (xy -3.706093 0.016241) (xy -3.700198 -0.004057) 197 | (xy -3.694774 -0.024721) (xy -3.689823 -0.045752) (xy -3.685344 -0.06715) (xy -3.681337 -0.088915) 198 | (xy -3.677802 -0.111047) (xy -3.674739 -0.133546) (xy -3.672147 -0.156412) (xy -3.670027 -0.179646) 199 | (xy -3.668378 -0.203247) (xy -3.667201 -0.227216) (xy -3.666494 -0.251552) (xy -3.666259 -0.276256) 200 | (xy -4.02634 -0.276256) (xy -4.026797 -0.248084) (xy -4.028168 -0.220614) (xy -4.03045 -0.193845) 201 | (xy -4.033642 -0.167776) (xy -4.037743 -0.142406) (xy -4.042752 -0.117734) (xy -4.048667 -0.093759) 202 | (xy -4.055486 -0.070481) (xy -4.058946 -0.059112) (xy -4.062615 -0.047934) (xy -4.066494 -0.036949) 203 | (xy -4.070582 -0.026155) (xy -4.07488 -0.015554) (xy -4.079387 -0.005144) (xy -4.084104 0.005073) 204 | (xy -4.08903 0.015098) (xy -4.094166 0.02493) (xy -4.099512 0.034571) (xy -4.105068 0.044019) 205 | (xy -4.110834 0.053275) (xy -4.116809 0.062338) (xy -4.122995 0.071209) (xy -4.129391 0.079887) 206 | (xy -4.135997 0.088372) (xy -4.142535 0.096368) (xy -4.149283 0.104137) (xy -4.156242 0.111678) 207 | (xy -4.163411 0.118992) (xy -4.170791 0.126079) (xy -4.178381 0.132938) (xy -4.186181 0.139571) 208 | (xy -4.194192 0.145976) (xy -4.202411 0.152154) (xy -4.210841 0.158104) (xy -4.21948 0.163828) 209 | (xy -4.228328 0.169324) (xy -4.237385 0.174593) (xy -4.246651 0.179635) (xy -4.256125 0.18445) 210 | (xy -4.265809 0.189038) (xy -4.275394 0.193372) (xy -4.285136 0.197426) (xy -4.295033 0.201199) 211 | (xy -4.305087 0.204693) (xy -4.315297 0.207906) (xy -4.325664 0.210839) (xy -4.336187 0.213493) 212 | (xy -4.346868 0.215867) (xy -4.357706 0.217961) (xy -4.368701 0.219775) (xy -4.379855 0.22131) 213 | (xy -4.391166 0.222566) (xy -4.402635 0.223543) (xy -4.414263 0.22424) (xy -4.426049 0.224659) 214 | (xy -4.437994 0.224798) (xy -4.450212 0.224659) (xy -4.462256 0.22424) (xy -4.474127 0.223543) 215 | (xy -4.485824 0.222566) (xy -4.497346 0.22131) (xy -4.508695 0.219775) (xy -4.519869 0.217961) 216 | (xy -4.530869 0.215867) (xy -4.541694 0.213493) (xy -4.552343 0.210839) (xy -4.562818 0.207906) 217 | (xy -4.573117 0.204693) (xy -4.583241 0.201199) (xy -4.593189 0.197426) (xy -4.602961 0.193372) 218 | (xy -4.612557 0.189038) (xy -4.621977 0.18445) (xy -4.631222 0.179635) (xy -4.64029 0.174593) 219 | (xy -4.649183 0.169324) (xy -4.657901 0.163828) (xy -4.666444 0.158104) (xy -4.674811 0.152154) 220 | (xy -4.683004 0.145976) (xy -4.691022 0.139571) (xy -4.698865 0.132938) (xy -4.706534 0.126079) 221 | (xy -4.714029 0.118992) (xy -4.721349 0.111678) (xy -4.728495 0.104137) (xy -4.735467 0.096368) 222 | (xy -4.742265 0.088372) (xy -4.748609 0.079887) (xy -4.754778 0.071209) (xy -4.760772 0.062338) 223 | (xy -4.76659 0.053275) (xy -4.772234 0.044019) (xy -4.777702 0.034571) (xy -4.782995 0.02493) 224 | (xy -4.788114 0.015098) (xy -4.793058 0.005073) (xy -4.797827 -0.005144) (xy -4.802421 -0.015554) 225 | (xy -4.806841 -0.026155) (xy -4.811087 -0.036949) (xy -4.815158 -0.047934) (xy -4.819055 -0.059112) 226 | (xy -4.822777 -0.070481) (xy -4.82907 -0.093759) (xy -4.834526 -0.117734) (xy -4.839144 -0.142406) 227 | (xy -4.842924 -0.167776) (xy -4.845865 -0.193845) (xy -4.847967 -0.220614) (xy -4.849228 -0.248084) 228 | (xy -4.849649 -0.276256) (xy -4.849228 -0.303907) (xy -4.847967 -0.330931) (xy -4.845865 -0.357326) 229 | (xy -4.842924 -0.383093) (xy -4.839144 -0.40823) (xy -4.834526 -0.432738) (xy -4.82907 -0.456615) 230 | (xy -4.822777 -0.479862) (xy -4.819055 -0.491493) (xy -4.815158 -0.502898) (xy -4.811087 -0.514076) 231 | (xy -4.806841 -0.525026) (xy -4.802421 -0.53575) (xy -4.797827 -0.546247) (xy -4.793058 -0.556517) 232 | (xy -4.788114 -0.566559) (xy -4.782995 -0.576374) (xy -4.777702 -0.585962) (xy -4.772234 -0.595323) 233 | (xy -4.76659 -0.604456) (xy -4.760772 -0.613362) (xy -4.754778 -0.622041) (xy -4.748609 -0.630492) 234 | (xy -4.742265 -0.638715) (xy -4.735467 -0.646982) (xy -4.728495 -0.655005) (xy -4.721349 -0.662785) 235 | (xy -4.714029 -0.670319) (xy -4.706534 -0.67761) (xy -4.698865 -0.684656) (xy -4.691022 -0.691458) 236 | (xy -4.683004 -0.698015) (xy -4.674811 -0.704327) (xy -4.666444 -0.710395) (xy -4.657901 -0.716217) 237 | (xy -4.649183 -0.721795) (xy -4.64029 -0.727128) (xy -4.631222 -0.732215) (xy -4.621977 -0.737058) 238 | (xy -4.612557 -0.741654) (xy -4.602961 -0.74626) (xy -4.593189 -0.750568) (xy -4.583241 -0.754579) 239 | (xy -4.573117 -0.758294) (xy -4.562818 -0.761711) (xy -4.552343 -0.764831) (xy -4.541694 -0.767653) 240 | (xy -4.530869 -0.770179) (xy -4.519869 -0.772408) (xy -4.508695 -0.774339) (xy -4.497346 -0.775974) 241 | (xy -4.485824 -0.777311) (xy -4.474127 -0.778351) (xy -4.462256 -0.779094) (xy -4.450212 -0.77954) 242 | (xy -4.437994 -0.779688) (xy -4.426049 -0.779548) (xy -4.414263 -0.779126) (xy -4.402635 -0.778424) 243 | (xy -4.391166 -0.77744) (xy -4.379855 -0.776177) (xy -4.368701 -0.774633) (xy -4.357706 -0.772809) 244 | (xy -4.346868 -0.770705) (xy -4.336187 -0.768322) (xy -4.325664 -0.765659) (xy -4.315297 -0.762717) 245 | (xy -4.305087 -0.759496) (xy -4.295033 -0.755996) (xy -4.285136 -0.752217) (xy -4.275394 -0.74816) 246 | (xy -4.265809 -0.743825) (xy -4.256125 -0.739229) (xy -4.246651 -0.73439) (xy -4.237385 -0.729308) 247 | (xy -4.228328 -0.723982) (xy -4.21948 -0.718412) (xy -4.210841 -0.712598) (xy -4.202411 -0.706539) 248 | (xy -4.194192 -0.700237) (xy -4.186181 -0.693689) (xy -4.178381 -0.686897) (xy -4.170791 -0.67986) 249 | (xy -4.163411 -0.672577) (xy -4.156242 -0.665049) (xy -4.149283 -0.657275) (xy -4.142535 -0.649255) 250 | (xy -4.135997 -0.640989) (xy -4.129391 -0.632765) (xy -4.122995 -0.624314) (xy -4.116809 -0.615636) 251 | (xy -4.110834 -0.60673) (xy -4.105068 -0.597597) (xy -4.099512 -0.588236) (xy -4.094166 -0.578648) 252 | (xy -4.08903 -0.568833) (xy -4.084104 -0.55879) (xy -4.079387 -0.548521) (xy -4.07488 -0.538024) 253 | (xy -4.070582 -0.5273) (xy -4.066494 -0.516349) (xy -4.062615 -0.505172) (xy -4.058946 -0.493767) 254 | (xy -4.055486 -0.482136) (xy -4.051963 -0.470582) (xy -4.048667 -0.458853) (xy -4.045596 -0.446947) 255 | (xy -4.042752 -0.434866) (xy -4.037743 -0.410178) (xy -4.033642 -0.384789) (xy -4.03045 -0.358701) 256 | (xy -4.028168 -0.331915) (xy -4.026797 -0.304433) (xy -4.02634 -0.276256) (xy -3.666259 -0.276256) 257 | (xy -3.667201 -0.325265) (xy -3.670027 -0.372738) (xy -3.672147 -0.395898) (xy -3.674739 -0.418674) 258 | (xy -3.677802 -0.441065) (xy -3.681337 -0.463072) (xy -3.685344 -0.484695) (xy -3.689823 -0.505933) 259 | (xy -3.694774 -0.526786) (xy -3.700198 -0.547254) (xy -3.706093 -0.567338) (xy -3.712462 -0.587037) 260 | (xy -3.719303 -0.606351) (xy -3.726617 -0.625279) (xy -3.734342 -0.644103) (xy -3.742418 -0.662543) 261 | (xy -3.750843 -0.6806) (xy -3.759618 -0.698272) (xy -3.768743 -0.715561) (xy -3.778218 -0.732465) 262 | (xy -3.788043 -0.748985) (xy -3.798217 -0.765121) (xy -3.80874 -0.780872) (xy -3.819614 -0.796239) 263 | (xy -3.830836 -0.81122) (xy -3.842408 -0.825817) (xy -3.854329 -0.840029) (xy -3.8666 -0.853856) 264 | (xy -3.879219 -0.867298) (xy -3.892188 -0.880354) (xy -3.905471 -0.893016) (xy -3.919034 -0.905275) 265 | (xy -3.932876 -0.91713) (xy -3.946998 -0.928583) (xy -3.961399 -0.939634) (xy -3.97608 -0.950282) 266 | (xy -3.991041 -0.960527) (xy -4.006281 -0.97037) (xy -4.021801 -0.979812) (xy -4.037601 -0.988851) 267 | (xy -4.05368 -0.997489) (xy -4.070039 -1.005726) (xy -4.086677 -1.013561) (xy -4.103596 -1.020995) 268 | (xy -4.120794 -1.028028) (xy -4.138271 -1.03466) (xy -4.155958 -1.040891) (xy -4.173783 -1.04672) 269 | (xy -4.191748 -1.052148) (xy -4.209851 -1.057173) (xy -4.228094 -1.061797) (xy -4.246476 -1.06602) 270 | (xy -4.264997 -1.06984) (xy -4.283659 -1.073258) (xy -4.30246 -1.076275) (xy -4.321401 -1.078889) 271 | (xy -4.340482 -1.081101) (xy -4.359703 -1.082911) (xy -4.379065 -1.084319) (xy -4.398567 -1.085325) 272 | (xy -4.41821 -1.085928) (xy -4.437994 -1.086129)) (layer F.SilkS) (width 0.055928)) 273 | (fp_poly (pts (xy -2.916744 -0.703621) (xy -2.93195 -0.703515) (xy -2.947368 -0.7032) (xy -2.962996 -0.702675) 274 | (xy -2.978835 -0.701939) (xy -2.994883 -0.700995) (xy -3.011141 -0.69984) (xy -3.027607 -0.698476) 275 | (xy -3.044281 -0.696903) (xy -3.076729 -0.694384) (xy -3.109187 -0.691303) (xy -3.141645 -0.687663) 276 | (xy -3.174092 -0.683467) (xy -3.189679 -0.681157) (xy -3.205119 -0.678704) (xy -3.235569 -0.673372) 277 | (xy -3.26546 -0.66748) (xy -3.294809 -0.661039) (xy -3.309142 -0.658208) (xy -3.323057 -0.655308) 278 | (xy -3.336555 -0.652339) (xy -3.349634 -0.6493) (xy -3.362294 -0.64619) (xy -3.374533 -0.643011) 279 | (xy -3.386351 -0.639762) (xy -3.397748 -0.636441) (xy -3.397748 0.913851) (xy -3.064435 0.913851) 280 | (xy -3.064435 0.470881) (xy -3.050381 0.476859) (xy -3.036184 0.482487) (xy -3.021846 0.487765) 281 | (xy -3.007366 0.492694) (xy -2.992747 0.497274) (xy -2.977988 0.501504) (xy -2.963092 0.505384) 282 | (xy -2.94806 0.508915) (xy -2.932821 0.512062) (xy -2.917306 0.51479) (xy -2.901514 0.517099) 283 | (xy -2.885443 0.518989) (xy -2.869092 0.520459) (xy -2.852461 0.52151) (xy -2.835548 0.522141) 284 | (xy -2.818352 0.522351) (xy -2.802805 0.522176) (xy -2.787486 0.521651) (xy -2.772394 0.520777) 285 | (xy -2.757528 0.519553) (xy -2.74289 0.517979) (xy -2.728479 0.516056) (xy -2.714295 0.513783) 286 | (xy -2.700339 0.511161) (xy -2.686609 0.508189) (xy -2.673107 0.504867) (xy -2.659832 0.501196) 287 | (xy -2.646784 0.497175) (xy -2.633964 0.492805) (xy -2.621371 0.488086) (xy -2.609005 0.483017) 288 | (xy -2.596867 0.477599) (xy -2.584964 0.471867) (xy -2.573305 0.465855) (xy -2.561889 0.459564) 289 | (xy -2.550718 0.452993) (xy -2.53979 0.446143) (xy -2.529107 0.439014) (xy -2.518668 0.431604) 290 | (xy -2.508473 0.423916) (xy -2.498524 0.415947) (xy -2.488819 0.407699) (xy -2.479359 0.399172) 291 | (xy -2.470144 0.390364) (xy -2.461175 0.381277) (xy -2.452451 0.37191) (xy -2.443972 0.362263) 292 | (xy -2.43574 0.352335) (xy -2.427753 0.342147) (xy -2.420012 0.331714) (xy -2.412516 0.321038) 293 | (xy -2.405265 0.310118) (xy -2.39826 0.298954) (xy -2.3915 0.287545) (xy -2.384984 0.275893) 294 | (xy -2.378714 0.263996) (xy -2.372688 0.251854) (xy -2.366907 0.239467) (xy -2.36137 0.226835) 295 | (xy -2.356077 0.213958) (xy -2.351029 0.200836) (xy -2.346225 0.187468) (xy -2.341664 0.173855) 296 | (xy -2.337348 0.159996) (xy -2.329481 0.131646) (xy -2.322661 0.102524) (xy -2.316889 0.072632) 297 | (xy -2.312164 0.041969) (xy -2.308487 0.010538) (xy -2.305861 -0.021661) (xy -2.304284 -0.054628) 298 | (xy -2.303758 -0.088361) (xy -2.643789 -0.079369) (xy -2.644716 -0.040631) (xy -2.647497 -0.004392) 299 | (xy -2.652131 0.029347) (xy -2.658619 0.060586) (xy -2.66696 0.089326) (xy -2.671826 0.102758) 300 | (xy -2.677155 0.115565) (xy -2.682947 0.127748) (xy -2.689202 0.139306) (xy -2.695921 0.150239) 301 | (xy -2.703102 0.160547) (xy -2.710747 0.17023) (xy -2.718855 0.179288) (xy -2.727426 0.187722) 302 | (xy -2.73646 0.195531) (xy -2.745958 0.202715) (xy -2.755918 0.209274) (xy -2.766341 0.215209) 303 | (xy -2.777227 0.220518) (xy -2.788577 0.225204) (xy -2.800389 0.229264) (xy -2.812664 0.2327) 304 | (xy -2.825402 0.235511) (xy -2.838603 0.237697) (xy -2.852267 0.239258) (xy -2.866394 0.240195) 305 | (xy -2.880984 0.240508) (xy -2.893849 0.240297) (xy -2.906716 0.239667) (xy -2.919584 0.238616) 306 | (xy -2.932454 0.237145) (xy -2.945323 0.235255) (xy -2.958191 0.232946) (xy -2.971058 0.230218) 307 | (xy -2.983923 0.227072) (xy -2.995947 0.22361) (xy -3.007409 0.219936) (xy -3.018311 0.216051) 308 | (xy -3.028653 0.211955) (xy -3.038436 0.207649) (xy -3.047661 0.203135) (xy -3.056327 0.198412) 309 | (xy -3.064435 0.193482) (xy -3.064435 -0.408238) (xy -3.058074 -0.409322) (xy -3.051293 -0.410336) 310 | (xy -3.044094 -0.411281) (xy -3.036475 -0.412156) (xy -3.028437 -0.412962) (xy -3.019979 -0.413697) 311 | (xy -3.011101 -0.414362) (xy -3.001803 -0.414956) (xy -2.99219 -0.416008) (xy -2.982366 -0.416925) 312 | (xy -2.972332 -0.417706) (xy -2.962088 -0.418348) (xy -2.951635 -0.418851) (xy -2.940971 -0.419213) 313 | (xy -2.930099 -0.419431) (xy -2.919018 -0.419504) (xy -2.902222 -0.419136) (xy -2.885952 -0.418032) 314 | (xy -2.870206 -0.416192) (xy -2.854986 -0.413617) (xy -2.84029 -0.410307) (xy -2.826119 -0.406262) 315 | (xy -2.812473 -0.401482) (xy -2.799351 -0.395968) (xy -2.786754 -0.38972) (xy -2.77468 -0.382738) 316 | (xy -2.763131 -0.375023) (xy -2.752106 -0.366574) (xy -2.741605 -0.357393) (xy -2.731627 -0.347478) 317 | (xy -2.722173 -0.336832) (xy -2.713242 -0.325453) (xy -2.704843 -0.313743) (xy -2.696984 -0.301543) 318 | (xy -2.689664 -0.288855) (xy -2.682885 -0.275677) (xy -2.676646 -0.262009) (xy -2.670949 -0.247852) 319 | (xy -2.665793 -0.233206) (xy -2.661178 -0.218071) (xy -2.657105 -0.202446) (xy -2.653574 -0.186332) 320 | (xy -2.650585 -0.169728) (xy -2.648139 -0.152635) (xy -2.646237 -0.135053) (xy -2.644877 -0.116981) 321 | (xy -2.644061 -0.09842) (xy -2.643789 -0.079369) (xy -2.303758 -0.088361) (xy -2.304426 -0.123178) 322 | (xy -2.306427 -0.15716) (xy -2.30976 -0.190304) (xy -2.311925 -0.206562) (xy -2.314422 -0.22261) 323 | (xy -2.317252 -0.238449) (xy -2.320414 -0.254077) (xy -2.323907 -0.269496) (xy -2.327732 -0.284705) 324 | (xy -2.331887 -0.299703) (xy -2.336374 -0.314491) (xy -2.341192 -0.329069) (xy -2.34634 -0.343436) 325 | (xy -2.351521 -0.357557) (xy -2.357 -0.371398) (xy -2.362775 -0.384958) (xy -2.368847 -0.398237) 326 | (xy -2.375216 -0.411237) (xy -2.381882 -0.423956) (xy -2.388845 -0.436395) (xy -2.396105 -0.448554) 327 | (xy -2.403662 -0.460434) (xy -2.411516 -0.472034) (xy -2.419667 -0.483355) (xy -2.428116 -0.494397) 328 | (xy -2.436862 -0.50516) (xy -2.445906 -0.515644) (xy -2.455247 -0.525849) (xy -2.464885 -0.535776) 329 | (xy -2.474812 -0.545695) (xy -2.485017 -0.555318) (xy -2.495501 -0.564645) (xy -2.506264 -0.573675) 330 | (xy -2.517306 -0.582409) (xy -2.528627 -0.590846) (xy -2.540227 -0.598987) (xy -2.552106 -0.60683) 331 | (xy -2.564266 -0.614376) (xy -2.576705 -0.621625) (xy -2.589424 -0.628577) (xy -2.602423 -0.635231) 332 | (xy -2.615703 -0.641588) (xy -2.629263 -0.647646) (xy -2.643104 -0.653406) (xy -2.657225 -0.658869) 333 | (xy -2.671609 -0.664287) (xy -2.686238 -0.669356) (xy -2.701112 -0.674075) (xy -2.716231 -0.678445) 334 | (xy -2.731595 -0.682466) (xy -2.747203 -0.686137) (xy -2.763056 -0.689458) (xy -2.779154 -0.69243) 335 | (xy -2.795497 -0.695053) (xy -2.812084 -0.697326) (xy -2.828916 -0.699249) (xy -2.845993 -0.700823) 336 | (xy -2.863314 -0.702047) (xy -2.880879 -0.702921) (xy -2.898689 -0.703446) (xy -2.916744 -0.703621)) (layer F.SilkS) (width 0.055928)) 337 | (fp_poly (pts (xy 1.955701 0.5) (xy 1.955701 -1.050335) (xy 3.002682 -1.050335) (xy 3.002682 -0.75727) 338 | (xy 2.304695 -0.75727) (xy 2.304695 -0.45302) (xy 2.924382 -0.45302) (xy 2.924382 -0.166666) 339 | (xy 2.304695 -0.166666) (xy 2.304695 0.206935) (xy 3.054137 0.206935) (xy 3.054137 0.5) 340 | (xy 1.955701 0.5)) (layer F.SilkS) (width 0.055928)) 341 | ) 342 | -------------------------------------------------------------------------------- /pcb/openeew-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeew/openeew-sensor/03fccccbf11788bfdceb1c45408e6745f914a1e6/pcb/openeew-schematic.pdf -------------------------------------------------------------------------------- /pcb/pcb.pro: -------------------------------------------------------------------------------- 1 | update=sex 09 out 2020 15:44:34 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [cvpcb] 9 | version=1 10 | NetIExt=net 11 | [eeschema] 12 | version=1 13 | LibDir= 14 | [eeschema/libraries] 15 | [schematic_editor] 16 | version=1 17 | PageLayoutDescrFile= 18 | PlotDirectoryName=./ 19 | SubpartIdSeparator=0 20 | SubpartFirstId=65 21 | NetFmtName= 22 | SpiceAjustPassiveValues=0 23 | LabSize=50 24 | ERC_TestSimilarLabels=1 25 | [pcbnew] 26 | version=1 27 | PageLayoutDescrFile= 28 | LastNetListRead= 29 | CopperLayerCount=2 30 | BoardThickness=1.6 31 | AllowMicroVias=0 32 | AllowBlindVias=0 33 | RequireCourtyardDefinitions=0 34 | ProhibitOverlappingCourtyards=1 35 | MinTrackWidth=0.15 36 | MinViaDiameter=0.6 37 | MinViaDrill=0.3 38 | MinMicroViaDiameter=0.2 39 | MinMicroViaDrill=0.09999999999999999 40 | MinHoleToHole=0.25 41 | TrackWidth1=0.15 42 | TrackWidth2=0.15 43 | TrackWidth3=0.19 44 | TrackWidth4=0.25 45 | TrackWidth5=0.35 46 | TrackWidth6=0.45 47 | TrackWidth7=0.75 48 | ViaDiameter1=0.6 49 | ViaDrill1=0.3 50 | ViaDiameter2=0.6 51 | ViaDrill2=0.3 52 | dPairWidth1=0.19 53 | dPairGap1=0.15 54 | dPairViaGap1=0.25 55 | SilkLineWidth=0.15 56 | SilkTextSizeV=0.7999999999999999 57 | SilkTextSizeH=0.7999999999999999 58 | SilkTextSizeThickness=0.15 59 | SilkTextItalic=0 60 | SilkTextUpright=1 61 | CopperLineWidth=0.15 62 | CopperTextSizeV=1.5 63 | CopperTextSizeH=1.5 64 | CopperTextThickness=0.3 65 | CopperTextItalic=0 66 | CopperTextUpright=1 67 | EdgeCutLineWidth=0.09999999999999999 68 | CourtyardLineWidth=0.05 69 | OthersLineWidth=0.15 70 | OthersTextSizeV=1 71 | OthersTextSizeH=1 72 | OthersTextSizeThickness=0.15 73 | OthersTextItalic=0 74 | OthersTextUpright=1 75 | SolderMaskClearance=0 76 | SolderMaskMinWidth=0.09 77 | SolderPasteClearance=0 78 | SolderPasteRatio=-0 79 | [pcbnew/Layer.F.Cu] 80 | Name=F.Cu 81 | Type=0 82 | Enabled=1 83 | [pcbnew/Layer.In1.Cu] 84 | Name=In1.Cu 85 | Type=0 86 | Enabled=0 87 | [pcbnew/Layer.In2.Cu] 88 | Name=In2.Cu 89 | Type=0 90 | Enabled=0 91 | [pcbnew/Layer.In3.Cu] 92 | Name=In3.Cu 93 | Type=0 94 | Enabled=0 95 | [pcbnew/Layer.In4.Cu] 96 | Name=In4.Cu 97 | Type=0 98 | Enabled=0 99 | [pcbnew/Layer.In5.Cu] 100 | Name=In5.Cu 101 | Type=0 102 | Enabled=0 103 | [pcbnew/Layer.In6.Cu] 104 | Name=In6.Cu 105 | Type=0 106 | Enabled=0 107 | [pcbnew/Layer.In7.Cu] 108 | Name=In7.Cu 109 | Type=0 110 | Enabled=0 111 | [pcbnew/Layer.In8.Cu] 112 | Name=In8.Cu 113 | Type=0 114 | Enabled=0 115 | [pcbnew/Layer.In9.Cu] 116 | Name=In9.Cu 117 | Type=0 118 | Enabled=0 119 | [pcbnew/Layer.In10.Cu] 120 | Name=In10.Cu 121 | Type=0 122 | Enabled=0 123 | [pcbnew/Layer.In11.Cu] 124 | Name=In11.Cu 125 | Type=0 126 | Enabled=0 127 | [pcbnew/Layer.In12.Cu] 128 | Name=In12.Cu 129 | Type=0 130 | Enabled=0 131 | [pcbnew/Layer.In13.Cu] 132 | Name=In13.Cu 133 | Type=0 134 | Enabled=0 135 | [pcbnew/Layer.In14.Cu] 136 | Name=In14.Cu 137 | Type=0 138 | Enabled=0 139 | [pcbnew/Layer.In15.Cu] 140 | Name=In15.Cu 141 | Type=0 142 | Enabled=0 143 | [pcbnew/Layer.In16.Cu] 144 | Name=In16.Cu 145 | Type=0 146 | Enabled=0 147 | [pcbnew/Layer.In17.Cu] 148 | Name=In17.Cu 149 | Type=0 150 | Enabled=0 151 | [pcbnew/Layer.In18.Cu] 152 | Name=In18.Cu 153 | Type=0 154 | Enabled=0 155 | [pcbnew/Layer.In19.Cu] 156 | Name=In19.Cu 157 | Type=0 158 | Enabled=0 159 | [pcbnew/Layer.In20.Cu] 160 | Name=In20.Cu 161 | Type=0 162 | Enabled=0 163 | [pcbnew/Layer.In21.Cu] 164 | Name=In21.Cu 165 | Type=0 166 | Enabled=0 167 | [pcbnew/Layer.In22.Cu] 168 | Name=In22.Cu 169 | Type=0 170 | Enabled=0 171 | [pcbnew/Layer.In23.Cu] 172 | Name=In23.Cu 173 | Type=0 174 | Enabled=0 175 | [pcbnew/Layer.In24.Cu] 176 | Name=In24.Cu 177 | Type=0 178 | Enabled=0 179 | [pcbnew/Layer.In25.Cu] 180 | Name=In25.Cu 181 | Type=0 182 | Enabled=0 183 | [pcbnew/Layer.In26.Cu] 184 | Name=In26.Cu 185 | Type=0 186 | Enabled=0 187 | [pcbnew/Layer.In27.Cu] 188 | Name=In27.Cu 189 | Type=0 190 | Enabled=0 191 | [pcbnew/Layer.In28.Cu] 192 | Name=In28.Cu 193 | Type=0 194 | Enabled=0 195 | [pcbnew/Layer.In29.Cu] 196 | Name=In29.Cu 197 | Type=0 198 | Enabled=0 199 | [pcbnew/Layer.In30.Cu] 200 | Name=In30.Cu 201 | Type=0 202 | Enabled=0 203 | [pcbnew/Layer.B.Cu] 204 | Name=B.Cu 205 | Type=0 206 | Enabled=1 207 | [pcbnew/Layer.B.Adhes] 208 | Enabled=1 209 | [pcbnew/Layer.F.Adhes] 210 | Enabled=1 211 | [pcbnew/Layer.B.Paste] 212 | Enabled=1 213 | [pcbnew/Layer.F.Paste] 214 | Enabled=1 215 | [pcbnew/Layer.B.SilkS] 216 | Enabled=1 217 | [pcbnew/Layer.F.SilkS] 218 | Enabled=1 219 | [pcbnew/Layer.B.Mask] 220 | Enabled=1 221 | [pcbnew/Layer.F.Mask] 222 | Enabled=1 223 | [pcbnew/Layer.Dwgs.User] 224 | Enabled=1 225 | [pcbnew/Layer.Cmts.User] 226 | Enabled=1 227 | [pcbnew/Layer.Eco1.User] 228 | Enabled=1 229 | [pcbnew/Layer.Eco2.User] 230 | Enabled=1 231 | [pcbnew/Layer.Edge.Cuts] 232 | Enabled=1 233 | [pcbnew/Layer.Margin] 234 | Enabled=1 235 | [pcbnew/Layer.B.CrtYd] 236 | Enabled=1 237 | [pcbnew/Layer.F.CrtYd] 238 | Enabled=1 239 | [pcbnew/Layer.B.Fab] 240 | Enabled=1 241 | [pcbnew/Layer.F.Fab] 242 | Enabled=1 243 | [pcbnew/Layer.Rescue] 244 | Enabled=0 245 | [pcbnew/Netclasses] 246 | [pcbnew/Netclasses/Default] 247 | Name=Default 248 | Clearance=0.1499 249 | TrackWidth=0.15 250 | ViaDiameter=0.6 251 | ViaDrill=0.3 252 | uViaDiameter=0.3 253 | uViaDrill=0.1 254 | dPairWidth=0.19 255 | dPairGap=0.15 256 | dPairViaGap=0.25 257 | [pcbnew/Netclasses/1] 258 | Name=Power 259 | Clearance=0.1499 260 | TrackWidth=0.25 261 | ViaDiameter=0.6 262 | ViaDrill=0.3 263 | uViaDiameter=0.3 264 | uViaDrill=0.1 265 | dPairWidth=0.2 266 | dPairGap=0.2 267 | dPairViaGap=0.25 268 | [pcbnew/Netclasses/2] 269 | Name=Signal 270 | Clearance=0.1499 271 | TrackWidth=0.15 272 | ViaDiameter=0.6 273 | ViaDrill=0.3 274 | uViaDiameter=0.3 275 | uViaDrill=0.1 276 | dPairWidth=0.19 277 | dPairGap=0.15 278 | dPairViaGap=0.25 279 | -------------------------------------------------------------------------------- /pcb/pcb.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A3 16535 11693 5 | encoding utf-8 6 | Sheet 1 1 7 | Title "openeew-sensor" 8 | Date "2020-08-13" 9 | Rev "0.2" 10 | Comp "OpenEEW" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "licensed under the Apache Software License, Version 2" 15 | $EndDescr 16 | $Comp 17 | L power:+5V #PWR057 18 | U 1 1 5F359C5C 19 | P 2850 4350 20 | F 0 "#PWR057" H 2850 4200 50 0001 C CNN 21 | F 1 "+5V" H 2865 4523 50 0000 C CNN 22 | F 2 "" H 2850 4350 50 0001 C CNN 23 | F 3 "" H 2850 4350 50 0001 C CNN 24 | 1 2850 4350 25 | 1 0 0 -1 26 | $EndComp 27 | $Comp 28 | L power:+3V3 #PWR064 29 | U 1 1 5F35A9C9 30 | P 4000 4350 31 | F 0 "#PWR064" H 4000 4200 50 0001 C CNN 32 | F 1 "+3V3" H 4015 4523 50 0000 C CNN 33 | F 2 "" H 4000 4350 50 0001 C CNN 34 | F 3 "" H 4000 4350 50 0001 C CNN 35 | 1 4000 4350 36 | 1 0 0 -1 37 | $EndComp 38 | $Comp 39 | L Device:C_Small C25 40 | U 1 1 5F35B2E9 41 | P 4000 4750 42 | F 0 "C25" H 4092 4796 50 0000 L CNN 43 | F 1 "10uF" H 4092 4705 50 0000 L CNN 44 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 4000 4750 50 0001 C CNN 45 | F 3 "~" H 4000 4750 50 0001 C CNN 46 | 1 4000 4750 47 | 1 0 0 -1 48 | $EndComp 49 | Wire Wire Line 50 | 3250 4850 3250 4950 51 | Wire Wire Line 52 | 4000 4850 4000 4950 53 | Wire Wire Line 54 | 2850 4450 2850 4550 55 | Wire Wire Line 56 | 2950 4550 2850 4550 57 | Connection ~ 2850 4550 58 | Wire Wire Line 59 | 2850 4550 2850 4650 60 | $Comp 61 | L power:GND #PWR065 62 | U 1 1 5F35D349 63 | P 4000 4950 64 | F 0 "#PWR065" H 4000 4700 50 0001 C CNN 65 | F 1 "GND" H 4005 4777 50 0000 C CNN 66 | F 2 "" H 4000 4950 50 0001 C CNN 67 | F 3 "" H 4000 4950 50 0001 C CNN 68 | 1 4000 4950 69 | 1 0 0 -1 70 | $EndComp 71 | $Comp 72 | L power:GND #PWR063 73 | U 1 1 5F35D871 74 | P 3250 4950 75 | F 0 "#PWR063" H 3250 4700 50 0001 C CNN 76 | F 1 "GND" H 3255 4777 50 0000 C CNN 77 | F 2 "" H 3250 4950 50 0001 C CNN 78 | F 3 "" H 3250 4950 50 0001 C CNN 79 | 1 3250 4950 80 | 1 0 0 -1 81 | $EndComp 82 | $Comp 83 | L RF_Module:ESP32-WROOM-32D U1 84 | U 1 1 5F360D48 85 | P 10550 3500 86 | F 0 "U1" H 11000 4950 50 0000 C CNN 87 | F 1 "ESP32-WROOM-32D" H 11000 4850 50 0000 C CNN 88 | F 2 "RF_Module:ESP32-WROOM-32" H 10550 2000 50 0001 C CNN 89 | F 3 "https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf" H 10250 3550 50 0001 C CNN 90 | 1 10550 3500 91 | 1 0 0 -1 92 | $EndComp 93 | Wire Wire Line 94 | 9950 2300 9700 2300 95 | Wire Wire Line 96 | 9050 2400 9050 2450 97 | NoConn ~ 9950 2500 98 | NoConn ~ 9950 2600 99 | $Comp 100 | L power:+3V3 #PWR07 101 | U 1 1 5F368CA5 102 | P 9700 1850 103 | F 0 "#PWR07" H 9700 1700 50 0001 C CNN 104 | F 1 "+3V3" H 9715 2023 50 0000 C CNN 105 | F 2 "" H 9700 1850 50 0001 C CNN 106 | F 3 "" H 9700 1850 50 0001 C CNN 107 | 1 9700 1850 108 | 1 0 0 -1 109 | $EndComp 110 | $Comp 111 | L Device:R_Small R3 112 | U 1 1 5F369C53 113 | P 9700 2000 114 | F 0 "R3" H 9759 2046 50 0000 L CNN 115 | F 1 "10k" H 9759 1955 50 0000 L CNN 116 | F 2 "Resistor_SMD:R_0402_1005Metric" H 9700 2000 50 0001 C CNN 117 | F 3 "~" H 9700 2000 50 0001 C CNN 118 | 1 9700 2000 119 | 1 0 0 -1 120 | $EndComp 121 | Wire Wire Line 122 | 9700 1900 9700 1850 123 | NoConn ~ 9950 4000 124 | NoConn ~ 9950 3900 125 | NoConn ~ 9950 3800 126 | NoConn ~ 9950 3700 127 | Wire Wire Line 128 | 10550 2100 10550 2000 129 | $Comp 130 | L power:+3V3 #PWR012 131 | U 1 1 5F37CBA8 132 | P 10550 2000 133 | F 0 "#PWR012" H 10550 1850 50 0001 C CNN 134 | F 1 "+3V3" H 10565 2173 50 0000 C CNN 135 | F 2 "" H 10550 2000 50 0001 C CNN 136 | F 3 "" H 10550 2000 50 0001 C CNN 137 | 1 10550 2000 138 | 1 0 0 -1 139 | $EndComp 140 | $Comp 141 | L power:+3V3 #PWR018 142 | U 1 1 5F37D5F8 143 | P 10800 1500 144 | F 0 "#PWR018" H 10800 1350 50 0001 C CNN 145 | F 1 "+3V3" H 10815 1673 50 0000 C CNN 146 | F 2 "" H 10800 1500 50 0001 C CNN 147 | F 3 "" H 10800 1500 50 0001 C CNN 148 | 1 10800 1500 149 | 1 0 0 -1 150 | $EndComp 151 | $Comp 152 | L Device:C_Small C8 153 | U 1 1 5F37DE07 154 | P 10800 1650 155 | F 0 "C8" H 10892 1696 50 0000 L CNN 156 | F 1 "100nF" H 10892 1605 50 0000 L CNN 157 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 10800 1650 50 0001 C CNN 158 | F 3 "~" H 10800 1650 50 0001 C CNN 159 | 1 10800 1650 160 | 1 0 0 -1 161 | $EndComp 162 | $Comp 163 | L power:GND #PWR019 164 | U 1 1 5F37E3C8 165 | P 10800 1800 166 | F 0 "#PWR019" H 10800 1550 50 0001 C CNN 167 | F 1 "GND" H 10805 1627 50 0000 C CNN 168 | F 2 "" H 10800 1800 50 0001 C CNN 169 | F 3 "" H 10800 1800 50 0001 C CNN 170 | 1 10800 1800 171 | 1 0 0 -1 172 | $EndComp 173 | Wire Wire Line 174 | 10800 1800 10800 1750 175 | Wire Wire Line 176 | 10800 1550 10800 1500 177 | $Comp 178 | L power:+3V3 #PWR016 179 | U 1 1 5F388AFC 180 | P 10300 1500 181 | F 0 "#PWR016" H 10300 1350 50 0001 C CNN 182 | F 1 "+3V3" H 10315 1673 50 0000 C CNN 183 | F 2 "" H 10300 1500 50 0001 C CNN 184 | F 3 "" H 10300 1500 50 0001 C CNN 185 | 1 10300 1500 186 | -1 0 0 -1 187 | $EndComp 188 | $Comp 189 | L Device:C_Small C7 190 | U 1 1 5F388B02 191 | P 10300 1650 192 | F 0 "C7" H 10208 1604 50 0000 R CNN 193 | F 1 "10uF" H 10208 1695 50 0000 R CNN 194 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 10300 1650 50 0001 C CNN 195 | F 3 "~" H 10300 1650 50 0001 C CNN 196 | 1 10300 1650 197 | 1 0 0 1 198 | $EndComp 199 | $Comp 200 | L power:GND #PWR017 201 | U 1 1 5F388B08 202 | P 10300 1800 203 | F 0 "#PWR017" H 10300 1550 50 0001 C CNN 204 | F 1 "GND" H 10305 1627 50 0000 C CNN 205 | F 2 "" H 10300 1800 50 0001 C CNN 206 | F 3 "" H 10300 1800 50 0001 C CNN 207 | 1 10300 1800 208 | -1 0 0 -1 209 | $EndComp 210 | Wire Wire Line 211 | 10300 1800 10300 1750 212 | Wire Wire Line 213 | 10300 1550 10300 1500 214 | Wire Wire Line 215 | 12200 2000 12200 2050 216 | $Comp 217 | L power:GND #PWR025 218 | U 1 1 5F39D077 219 | P 12200 2050 220 | F 0 "#PWR025" H 12200 1800 50 0001 C CNN 221 | F 1 "GND" H 12205 1877 50 0000 C CNN 222 | F 2 "" H 12200 2050 50 0001 C CNN 223 | F 3 "" H 12200 2050 50 0001 C CNN 224 | 1 12200 2050 225 | -1 0 0 -1 226 | $EndComp 227 | $Comp 228 | L power:+3V3 #PWR022 229 | U 1 1 5F39D07D 230 | P 11500 1650 231 | F 0 "#PWR022" H 11500 1500 50 0001 C CNN 232 | F 1 "+3V3" H 11515 1823 50 0000 C CNN 233 | F 2 "" H 11500 1650 50 0001 C CNN 234 | F 3 "" H 11500 1650 50 0001 C CNN 235 | 1 11500 1650 236 | -1 0 0 -1 237 | $EndComp 238 | $Comp 239 | L Device:R_Small R6 240 | U 1 1 5F39D083 241 | P 11500 1800 242 | F 0 "R6" H 11559 1846 50 0000 L CNN 243 | F 1 "10k" H 11559 1755 50 0000 L CNN 244 | F 2 "Resistor_SMD:R_0402_1005Metric" H 11500 1800 50 0001 C CNN 245 | F 3 "~" H 11500 1800 50 0001 C CNN 246 | 1 11500 1800 247 | -1 0 0 -1 248 | $EndComp 249 | Wire Wire Line 250 | 11500 1700 11500 1650 251 | Wire Wire Line 252 | 11500 2300 11150 2300 253 | Text Label 11200 2300 0 50 ~ 0 254 | BOOT 255 | Wire Wire Line 256 | 11500 1900 11500 2000 257 | Connection ~ 11500 2000 258 | Wire Wire Line 259 | 11500 2000 11500 2300 260 | Text Label 11750 2800 2 50 ~ 0 261 | BUZZ 262 | Wire Wire Line 263 | 11150 2800 11750 2800 264 | Text Label 9500 2300 0 50 ~ 0 265 | EN 266 | Wire Wire Line 267 | 10550 4900 10550 5000 268 | $Comp 269 | L power:GND #PWR013 270 | U 1 1 5F4040D8 271 | P 10550 5000 272 | F 0 "#PWR013" H 10550 4750 50 0001 C CNN 273 | F 1 "GND" H 10555 4827 50 0000 C CNN 274 | F 2 "" H 10550 5000 50 0001 C CNN 275 | F 3 "" H 10550 5000 50 0001 C CNN 276 | 1 10550 5000 277 | 1 0 0 -1 278 | $EndComp 279 | Wire Wire Line 280 | 13600 4050 13200 4050 281 | Wire Wire Line 282 | 13600 3950 13200 3950 283 | Wire Wire Line 284 | 13600 3850 13200 3850 285 | Text Label 13200 3850 0 50 ~ 0 286 | H_CLK 287 | Text Label 13200 3950 0 50 ~ 0 288 | H_MOSI 289 | Text Label 13200 4050 0 50 ~ 0 290 | H_MISO 291 | Wire Wire Line 292 | 14200 4450 14200 4550 293 | $Comp 294 | L power:GND #PWR037 295 | U 1 1 5F4226E3 296 | P 14100 5000 297 | F 0 "#PWR037" H 14100 4750 50 0001 C CNN 298 | F 1 "GND" H 14105 4827 50 0000 C CNN 299 | F 2 "" H 14100 5000 50 0001 C CNN 300 | F 3 "" H 14100 5000 50 0001 C CNN 301 | 1 14100 5000 302 | 1 0 0 -1 303 | $EndComp 304 | $Comp 305 | L Device:C_Small C18 306 | U 1 1 5F43EBEE 307 | P 14450 2900 308 | F 0 "C18" V 14400 2950 50 0000 L CNN 309 | F 1 "1uF" V 14500 2700 50 0000 L CNN 310 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 14450 2900 50 0001 C CNN 311 | F 3 "~" H 14450 2900 50 0001 C CNN 312 | 1 14450 2900 313 | 1 0 0 -1 314 | $EndComp 315 | $Comp 316 | L Device:C_Small C19 317 | U 1 1 5F4423FC 318 | P 14850 2900 319 | F 0 "C19" V 14800 2950 50 0000 L CNN 320 | F 1 "100nF" H 14900 2800 50 0000 L CNN 321 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 14850 2900 50 0001 C CNN 322 | F 3 "~" H 14850 2900 50 0001 C CNN 323 | 1 14850 2900 324 | 1 0 0 -1 325 | $EndComp 326 | $Comp 327 | L power:GND #PWR041 328 | U 1 1 5F442402 329 | P 14850 3050 330 | F 0 "#PWR041" H 14850 2800 50 0001 C CNN 331 | F 1 "GND" H 14855 2877 50 0000 C CNN 332 | F 2 "" H 14850 3050 50 0001 C CNN 333 | F 3 "" H 14850 3050 50 0001 C CNN 334 | 1 14850 3050 335 | 1 0 0 -1 336 | $EndComp 337 | Wire Wire Line 338 | 14850 3050 14850 3000 339 | $Comp 340 | L power:+3V3 #PWR031 341 | U 1 1 5F4454E0 342 | P 12950 2500 343 | F 0 "#PWR031" H 12950 2350 50 0001 C CNN 344 | F 1 "+3V3" H 12965 2673 50 0000 C CNN 345 | F 2 "" H 12950 2500 50 0001 C CNN 346 | F 3 "" H 12950 2500 50 0001 C CNN 347 | 1 12950 2500 348 | 1 0 0 -1 349 | $EndComp 350 | $Comp 351 | L Device:C_Small C13 352 | U 1 1 5F4454E6 353 | P 13450 2900 354 | F 0 "C13" H 13150 2950 50 0000 L CNN 355 | F 1 "1uF" H 13150 2850 50 0000 L CNN 356 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 13450 2900 50 0001 C CNN 357 | F 3 "~" H 13450 2900 50 0001 C CNN 358 | 1 13450 2900 359 | 1 0 0 -1 360 | $EndComp 361 | $Comp 362 | L power:GND #PWR032 363 | U 1 1 5F4454EC 364 | P 13450 3050 365 | F 0 "#PWR032" H 13450 2800 50 0001 C CNN 366 | F 1 "GND" H 13455 2877 50 0000 C CNN 367 | F 2 "" H 13450 3050 50 0001 C CNN 368 | F 3 "" H 13450 3050 50 0001 C CNN 369 | 1 13450 3050 370 | 1 0 0 -1 371 | $EndComp 372 | Wire Wire Line 373 | 13450 3050 13450 3000 374 | $Comp 375 | L Device:C_Small C14 376 | U 1 1 5F448960 377 | P 13650 2900 378 | F 0 "C14" H 13750 2950 50 0000 L CNN 379 | F 1 "100nF" H 13750 2850 50 0000 L CNN 380 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 13650 2900 50 0001 C CNN 381 | F 3 "~" H 13650 2900 50 0001 C CNN 382 | 1 13650 2900 383 | 1 0 0 -1 384 | $EndComp 385 | $Comp 386 | L power:GND #PWR034 387 | U 1 1 5F448966 388 | P 13650 3050 389 | F 0 "#PWR034" H 13650 2800 50 0001 C CNN 390 | F 1 "GND" H 13655 2877 50 0000 C CNN 391 | F 2 "" H 13650 3050 50 0001 C CNN 392 | F 3 "" H 13650 3050 50 0001 C CNN 393 | 1 13650 3050 394 | 1 0 0 -1 395 | $EndComp 396 | Wire Wire Line 397 | 13650 3050 13650 3000 398 | Wire Wire Line 399 | 14450 2600 14450 2800 400 | Wire Wire Line 401 | 14850 2500 14850 2800 402 | $Comp 403 | L Sensor_Motion_local:ADXL355 U3 404 | U 1 1 5F464A7A 405 | P 14150 3900 406 | F 0 "U3" H 13750 4400 50 0000 C CNN 407 | F 1 "ADXL355" H 14450 3400 50 0000 C CNN 408 | F 2 "Package_LCC_local:PLCC-14" H 14150 3900 50 0001 C CNN 409 | F 3 "https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL354_355.pdf" H 14150 3900 50 0001 C CNN 410 | 1 14150 3900 411 | 1 0 0 -1 412 | $EndComp 413 | NoConn ~ 14700 4000 414 | Wire Wire Line 415 | 14700 3800 15000 3800 416 | Text Label 15200 3800 2 50 ~ 0 417 | INT1 418 | Connection ~ 15000 3800 419 | Wire Wire Line 420 | 15000 3800 15200 3800 421 | $Comp 422 | L power:+3V3 #PWR042 423 | U 1 1 5F4A24D6 424 | P 15000 3400 425 | F 0 "#PWR042" H 15000 3250 50 0001 C CNN 426 | F 1 "+3V3" H 15015 3573 50 0000 C CNN 427 | F 2 "" H 15000 3400 50 0001 C CNN 428 | F 3 "" H 15000 3400 50 0001 C CNN 429 | 1 15000 3400 430 | 1 0 0 -1 431 | $EndComp 432 | Wire Wire Line 433 | 14300 2600 14450 2600 434 | Wire Wire Line 435 | 15000 3400 15000 3500 436 | Wire Wire Line 437 | 14300 2600 14300 3350 438 | Wire Wire Line 439 | 14200 2500 14200 3350 440 | Wire Wire Line 441 | 15000 3700 15000 3800 442 | Wire Notes Line 443 | 15750 750 15750 5750 444 | Text Label 13000 7000 0 50 ~ 0 445 | BUZZ 446 | Wire Wire Line 447 | 13250 7000 13000 7000 448 | $Comp 449 | L Device:R_Small R14 450 | U 1 1 5F501DD8 451 | P 13750 6600 452 | F 0 "R14" H 13809 6646 50 0000 L CNN 453 | F 1 "1k" H 13809 6555 50 0000 L CNN 454 | F 2 "Resistor_SMD:R_0402_1005Metric" H 13750 6600 50 0001 C CNN 455 | F 3 "~" H 13750 6600 50 0001 C CNN 456 | 1 13750 6600 457 | -1 0 0 -1 458 | $EndComp 459 | $Comp 460 | L Device:R_Small R13 461 | U 1 1 5F502554 462 | P 13350 7000 463 | F 0 "R13" V 13154 7000 50 0000 C CNN 464 | F 1 "1k" V 13245 7000 50 0000 C CNN 465 | F 2 "Resistor_SMD:R_0402_1005Metric" H 13350 7000 50 0001 C CNN 466 | F 3 "~" H 13350 7000 50 0001 C CNN 467 | 1 13350 7000 468 | 0 1 1 0 469 | $EndComp 470 | Wire Wire Line 471 | 13450 7000 13550 7000 472 | Wire Wire Line 473 | 13850 6800 13850 6750 474 | $Comp 475 | L power:+5V #PWR061 476 | U 1 1 5F517256 477 | P 13850 6300 478 | F 0 "#PWR061" H 13850 6150 50 0001 C CNN 479 | F 1 "+5V" H 13865 6473 50 0000 C CNN 480 | F 2 "" H 13850 6300 50 0001 C CNN 481 | F 3 "" H 13850 6300 50 0001 C CNN 482 | 1 13850 6300 483 | 1 0 0 -1 484 | $EndComp 485 | $Comp 486 | L power:GND #PWR062 487 | U 1 1 5F51F6B7 488 | P 13850 7300 489 | F 0 "#PWR062" H 13850 7050 50 0001 C CNN 490 | F 1 "GND" H 13855 7127 50 0000 C CNN 491 | F 2 "" H 13850 7300 50 0001 C CNN 492 | F 3 "" H 13850 7300 50 0001 C CNN 493 | 1 13850 7300 494 | 1 0 0 -1 495 | $EndComp 496 | Wire Wire Line 497 | 13850 7300 13850 7200 498 | $Comp 499 | L LED:WS2812B D1 500 | U 1 1 5F55C797 501 | P 10100 7000 502 | F 0 "D1" H 9900 7250 50 0000 L CNN 503 | F 1 "WS2812B" H 10150 6750 50 0000 L CNN 504 | F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 10150 6700 50 0001 L TNN 505 | F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 10200 6625 50 0001 L TNN 506 | 1 10100 7000 507 | 1 0 0 -1 508 | $EndComp 509 | $Comp 510 | L LED:WS2812B D2 511 | U 1 1 5F55DB69 512 | P 11100 7000 513 | F 0 "D2" H 10900 7250 50 0000 L CNN 514 | F 1 "WS2812B" H 11150 6750 50 0000 L CNN 515 | F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 11150 6700 50 0001 L TNN 516 | F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 11200 6625 50 0001 L TNN 517 | 1 11100 7000 518 | 1 0 0 -1 519 | $EndComp 520 | $Comp 521 | L LED:WS2812B D3 522 | U 1 1 5F55E15E 523 | P 12100 7000 524 | F 0 "D3" H 11900 7250 50 0000 L CNN 525 | F 1 "WS2812B" H 12150 6750 50 0000 L CNN 526 | F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 12150 6700 50 0001 L TNN 527 | F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 12200 6625 50 0001 L TNN 528 | 1 12100 7000 529 | 1 0 0 -1 530 | $EndComp 531 | NoConn ~ 12400 7000 532 | Wire Wire Line 533 | 10400 7000 10800 7000 534 | Wire Wire Line 535 | 11400 7000 11800 7000 536 | Wire Wire Line 537 | 10100 6700 10100 6600 538 | Wire Wire Line 539 | 11100 6700 11100 6600 540 | Wire Wire Line 541 | 12100 6700 12100 6600 542 | $Comp 543 | L power:+5V #PWR045 544 | U 1 1 5F57A932 545 | P 10100 6600 546 | F 0 "#PWR045" H 10100 6450 50 0001 C CNN 547 | F 1 "+5V" H 10115 6773 50 0000 C CNN 548 | F 2 "" H 10100 6600 50 0001 C CNN 549 | F 3 "" H 10100 6600 50 0001 C CNN 550 | 1 10100 6600 551 | 1 0 0 -1 552 | $EndComp 553 | $Comp 554 | L power:+5V #PWR049 555 | U 1 1 5F57B250 556 | P 11100 6600 557 | F 0 "#PWR049" H 11100 6450 50 0001 C CNN 558 | F 1 "+5V" H 11115 6773 50 0000 C CNN 559 | F 2 "" H 11100 6600 50 0001 C CNN 560 | F 3 "" H 11100 6600 50 0001 C CNN 561 | 1 11100 6600 562 | 1 0 0 -1 563 | $EndComp 564 | $Comp 565 | L power:+5V #PWR053 566 | U 1 1 5F57B640 567 | P 12100 6600 568 | F 0 "#PWR053" H 12100 6450 50 0001 C CNN 569 | F 1 "+5V" H 12115 6773 50 0000 C CNN 570 | F 2 "" H 12100 6600 50 0001 C CNN 571 | F 3 "" H 12100 6600 50 0001 C CNN 572 | 1 12100 6600 573 | 1 0 0 -1 574 | $EndComp 575 | Wire Wire Line 576 | 10100 7300 10100 7400 577 | Wire Wire Line 578 | 11100 7300 11100 7400 579 | Wire Wire Line 580 | 12100 7300 12100 7400 581 | $Comp 582 | L power:GND #PWR046 583 | U 1 1 5F58A25E 584 | P 10100 7400 585 | F 0 "#PWR046" H 10100 7150 50 0001 C CNN 586 | F 1 "GND" H 10105 7227 50 0000 C CNN 587 | F 2 "" H 10100 7400 50 0001 C CNN 588 | F 3 "" H 10100 7400 50 0001 C CNN 589 | 1 10100 7400 590 | 1 0 0 -1 591 | $EndComp 592 | $Comp 593 | L power:GND #PWR050 594 | U 1 1 5F58A660 595 | P 11100 7400 596 | F 0 "#PWR050" H 11100 7150 50 0001 C CNN 597 | F 1 "GND" H 11105 7227 50 0000 C CNN 598 | F 2 "" H 11100 7400 50 0001 C CNN 599 | F 3 "" H 11100 7400 50 0001 C CNN 600 | 1 11100 7400 601 | 1 0 0 -1 602 | $EndComp 603 | $Comp 604 | L power:GND #PWR054 605 | U 1 1 5F58A9E8 606 | P 12100 7400 607 | F 0 "#PWR054" H 12100 7150 50 0001 C CNN 608 | F 1 "GND" H 12105 7227 50 0000 C CNN 609 | F 2 "" H 12100 7400 50 0001 C CNN 610 | F 3 "" H 12100 7400 50 0001 C CNN 611 | 1 12100 7400 612 | 1 0 0 -1 613 | $EndComp 614 | Text Label 8850 7000 0 50 ~ 0 615 | NEOPIX_DI 616 | $Comp 617 | L Device:C_Small C21 618 | U 1 1 5F591735 619 | P 10600 6550 620 | F 0 "C21" H 10692 6596 50 0000 L CNN 621 | F 1 "100nF" H 10692 6505 50 0000 L CNN 622 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 10600 6550 50 0001 C CNN 623 | F 3 "~" H 10600 6550 50 0001 C CNN 624 | 1 10600 6550 625 | 1 0 0 -1 626 | $EndComp 627 | $Comp 628 | L power:GND #PWR048 629 | U 1 1 5F59173B 630 | P 10600 6700 631 | F 0 "#PWR048" H 10600 6450 50 0001 C CNN 632 | F 1 "GND" H 10605 6527 50 0000 C CNN 633 | F 2 "" H 10600 6700 50 0001 C CNN 634 | F 3 "" H 10600 6700 50 0001 C CNN 635 | 1 10600 6700 636 | 1 0 0 -1 637 | $EndComp 638 | Wire Wire Line 639 | 10600 6700 10600 6650 640 | Wire Wire Line 641 | 10600 6450 10600 6400 642 | $Comp 643 | L Device:C_Small C22 644 | U 1 1 5F596DC7 645 | P 11600 6550 646 | F 0 "C22" H 11692 6596 50 0000 L CNN 647 | F 1 "100nF" H 11692 6505 50 0000 L CNN 648 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 11600 6550 50 0001 C CNN 649 | F 3 "~" H 11600 6550 50 0001 C CNN 650 | 1 11600 6550 651 | 1 0 0 -1 652 | $EndComp 653 | $Comp 654 | L power:GND #PWR052 655 | U 1 1 5F596DCD 656 | P 11600 6700 657 | F 0 "#PWR052" H 11600 6450 50 0001 C CNN 658 | F 1 "GND" H 11605 6527 50 0000 C CNN 659 | F 2 "" H 11600 6700 50 0001 C CNN 660 | F 3 "" H 11600 6700 50 0001 C CNN 661 | 1 11600 6700 662 | 1 0 0 -1 663 | $EndComp 664 | Wire Wire Line 665 | 11600 6700 11600 6650 666 | Wire Wire Line 667 | 11600 6450 11600 6400 668 | $Comp 669 | L Device:C_Small C23 670 | U 1 1 5F59C591 671 | P 12450 6550 672 | F 0 "C23" H 12542 6596 50 0000 L CNN 673 | F 1 "100nF" H 12542 6505 50 0000 L CNN 674 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 12450 6550 50 0001 C CNN 675 | F 3 "~" H 12450 6550 50 0001 C CNN 676 | 1 12450 6550 677 | 1 0 0 -1 678 | $EndComp 679 | $Comp 680 | L power:GND #PWR056 681 | U 1 1 5F59C597 682 | P 12450 6700 683 | F 0 "#PWR056" H 12450 6450 50 0001 C CNN 684 | F 1 "GND" H 12455 6527 50 0000 C CNN 685 | F 2 "" H 12450 6700 50 0001 C CNN 686 | F 3 "" H 12450 6700 50 0001 C CNN 687 | 1 12450 6700 688 | 1 0 0 -1 689 | $EndComp 690 | Wire Wire Line 691 | 12450 6700 12450 6650 692 | Wire Wire Line 693 | 12450 6450 12450 6400 694 | $Comp 695 | L power:+5V #PWR047 696 | U 1 1 5F5A14DF 697 | P 10600 6400 698 | F 0 "#PWR047" H 10600 6250 50 0001 C CNN 699 | F 1 "+5V" H 10615 6573 50 0000 C CNN 700 | F 2 "" H 10600 6400 50 0001 C CNN 701 | F 3 "" H 10600 6400 50 0001 C CNN 702 | 1 10600 6400 703 | 1 0 0 -1 704 | $EndComp 705 | $Comp 706 | L power:+5V #PWR051 707 | U 1 1 5F5A194E 708 | P 11600 6400 709 | F 0 "#PWR051" H 11600 6250 50 0001 C CNN 710 | F 1 "+5V" H 11615 6573 50 0000 C CNN 711 | F 2 "" H 11600 6400 50 0001 C CNN 712 | F 3 "" H 11600 6400 50 0001 C CNN 713 | 1 11600 6400 714 | 1 0 0 -1 715 | $EndComp 716 | $Comp 717 | L power:+5V #PWR055 718 | U 1 1 5F5A1CD7 719 | P 12450 6400 720 | F 0 "#PWR055" H 12450 6250 50 0001 C CNN 721 | F 1 "+5V" H 12465 6573 50 0000 C CNN 722 | F 2 "" H 12450 6400 50 0001 C CNN 723 | F 3 "" H 12450 6400 50 0001 C CNN 724 | 1 12450 6400 725 | 1 0 0 -1 726 | $EndComp 727 | $Comp 728 | L Connector:RJ45_LED_Shielded J2 729 | U 1 1 5F5C448E 730 | P 1850 8850 731 | F 0 "J2" H 1600 8400 50 0000 C CNN 732 | F 1 "HR911105A" H 1850 9400 50 0000 C CNN 733 | F 2 "Connector_RJ:RJ45_Hanrun_HR911105A" V 1850 8875 50 0001 C CNN 734 | F 3 "~" V 1850 8875 50 0001 C CNN 735 | 1 1850 8850 736 | 1 0 0 -1 737 | $EndComp 738 | Wire Wire Line 739 | 2250 9150 2450 9150 740 | Wire Wire Line 741 | 2250 9050 2450 9050 742 | Wire Wire Line 743 | 2250 8950 2450 8950 744 | Wire Wire Line 745 | 2250 8850 2350 8850 746 | Wire Wire Line 747 | 2250 8750 2350 8750 748 | Wire Wire Line 749 | 2350 8750 2350 8850 750 | Wire Wire Line 751 | 2250 8650 2450 8650 752 | Wire Wire Line 753 | 2250 8550 2850 8550 754 | Wire Wire Line 755 | 1450 8450 1250 8450 756 | Wire Wire Line 757 | 1450 9050 1250 9050 758 | Wire Wire Line 759 | 1450 9150 1250 9150 760 | Text Label 1850 9400 0 30 ~ 0 761 | RJ_SH 762 | Text Label 2450 9150 2 50 ~ 0 763 | TX_P 764 | Text Label 2450 9050 2 50 ~ 0 765 | TX_N 766 | Text Label 2450 8950 2 50 ~ 0 767 | RX_P 768 | Text Label 2450 8650 2 50 ~ 0 769 | RX_N 770 | $Comp 771 | L power:GND #PWR09 772 | U 1 1 5F66B1A5 773 | P 2450 8300 774 | F 0 "#PWR09" H 2450 8050 50 0001 C CNN 775 | F 1 "GND" H 2455 8127 50 0000 C CNN 776 | F 2 "" H 2450 8300 50 0001 C CNN 777 | F 3 "" H 2450 8300 50 0001 C CNN 778 | 1 2450 8300 779 | 1 0 0 -1 780 | $EndComp 781 | Wire Wire Line 782 | 2250 8450 2350 8450 783 | Wire Wire Line 784 | 2350 8450 2350 8250 785 | Wire Wire Line 786 | 2350 8250 2450 8250 787 | Wire Wire Line 788 | 2450 8250 2450 8300 789 | $Comp 790 | L Device:C_Small C6 791 | U 1 1 5F6A821A 792 | P 2850 9650 793 | F 0 "C6" H 2942 9696 50 0000 L CNN 794 | F 1 "100nF" H 2942 9605 50 0000 L CNN 795 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 2850 9650 50 0001 C CNN 796 | F 3 "~" H 2850 9650 50 0001 C CNN 797 | 1 2850 9650 798 | 1 0 0 -1 799 | $EndComp 800 | Wire Wire Line 801 | 2850 8550 2850 8850 802 | Wire Wire Line 803 | 2850 9750 2850 9850 804 | $Comp 805 | L power:GND #PWR015 806 | U 1 1 5F6C343E 807 | P 2850 9850 808 | F 0 "#PWR015" H 2850 9600 50 0001 C CNN 809 | F 1 "GND" H 2855 9677 50 0000 C CNN 810 | F 2 "" H 2850 9850 50 0001 C CNN 811 | F 3 "" H 2850 9850 50 0001 C CNN 812 | 1 2850 9850 813 | 1 0 0 -1 814 | $EndComp 815 | Connection ~ 2350 8850 816 | Connection ~ 2850 8850 817 | Wire Wire Line 818 | 2850 8850 2850 9550 819 | Text Label 1250 8450 0 50 ~ 0 820 | AG1 821 | Text Label 1250 9050 0 50 ~ 0 822 | KY1 823 | Text Label 1250 9150 0 50 ~ 0 824 | AY1 825 | $Comp 826 | L Device:R_Pack04 RN1 827 | U 1 1 5F746D95 828 | P 7400 8150 829 | F 0 "RN1" V 6983 8150 50 0000 C CNN 830 | F 1 "2.2k" V 7074 8150 50 0000 C CNN 831 | F 2 "Resistor_SMD:R_Array_Concave_4x0402" V 7675 8150 50 0001 C CNN 832 | F 3 "~" H 7400 8150 50 0001 C CNN 833 | 1 7400 8150 834 | 0 -1 1 0 835 | $EndComp 836 | $Comp 837 | L Device:R_Pack04 RN2 838 | U 1 1 5F758C10 839 | P 7400 8800 840 | F 0 "RN2" V 6983 8800 50 0000 C CNN 841 | F 1 "2.2k" V 7074 8800 50 0000 C CNN 842 | F 2 "Resistor_SMD:R_Array_Concave_4x0402" V 7675 8800 50 0001 C CNN 843 | F 3 "~" H 7400 8800 50 0001 C CNN 844 | 1 7400 8800 845 | 0 -1 1 0 846 | $EndComp 847 | $Comp 848 | L Device:C_Small C1 849 | U 1 1 5F7A5A83 850 | P 1700 6800 851 | F 0 "C1" H 1792 6846 50 0000 L CNN 852 | F 1 "22uF" H 1792 6755 50 0000 L CNN 853 | F 2 "Capacitor_SMD:C_0805_2012Metric" H 1700 6800 50 0001 C CNN 854 | F 3 "~" H 1700 6800 50 0001 C CNN 855 | 1 1700 6800 856 | -1 0 0 -1 857 | $EndComp 858 | $Comp 859 | L Device:R_Small R1 860 | U 1 1 5F7A6337 861 | P 1850 6800 862 | F 0 "R1" H 1909 6846 50 0000 L CNN 863 | F 1 "10k" H 1909 6755 50 0000 L CNN 864 | F 2 "Resistor_SMD:R_0402_1005Metric" H 1850 6800 50 0001 C CNN 865 | F 3 "~" H 1850 6800 50 0001 C CNN 866 | 1 1850 6800 867 | 1 0 0 -1 868 | $EndComp 869 | Wire Wire Line 870 | 1700 6700 1700 6600 871 | Wire Wire Line 872 | 1700 6600 1850 6600 873 | Wire Wire Line 874 | 1850 6600 1850 6700 875 | Wire Wire Line 876 | 1700 6900 1700 7000 877 | Wire Wire Line 878 | 1700 7000 1850 7000 879 | Wire Wire Line 880 | 1850 7000 1850 6900 881 | $Comp 882 | L Device:R_Small R2 883 | U 1 1 5F7CEC73 884 | P 1850 7200 885 | F 0 "R2" H 1909 7246 50 0000 L CNN 886 | F 1 "1k" H 1909 7155 50 0000 L CNN 887 | F 2 "Resistor_SMD:R_0402_1005Metric" H 1850 7200 50 0001 C CNN 888 | F 3 "~" H 1850 7200 50 0001 C CNN 889 | 1 1850 7200 890 | 1 0 0 -1 891 | $EndComp 892 | Wire Wire Line 893 | 1850 7100 1850 7000 894 | Connection ~ 1850 7000 895 | Wire Wire Line 896 | 1850 7300 1850 7400 897 | Wire Wire Line 898 | 1300 7600 1200 7600 899 | Text Label 850 7600 0 50 ~ 0 900 | PHY_PWR 901 | Wire Wire Line 902 | 1850 7800 1850 7900 903 | $Comp 904 | L power:GND #PWR04 905 | U 1 1 5F7F1D33 906 | P 1850 7900 907 | F 0 "#PWR04" H 1850 7650 50 0001 C CNN 908 | F 1 "GND" H 1855 7727 50 0000 C CNN 909 | F 2 "" H 1850 7900 50 0001 C CNN 910 | F 3 "" H 1850 7900 50 0001 C CNN 911 | 1 1850 7900 912 | 1 0 0 -1 913 | $EndComp 914 | $Comp 915 | L Device:Q_PMOS_GSD Q2 916 | U 1 1 5F7F3488 917 | P 2250 6700 918 | F 0 "Q2" V 2592 6700 50 0000 C CNN 919 | F 1 "WPM2015-3_TR" V 2501 6700 50 0000 C CNN 920 | F 2 "Package_TO_SOT_SMD:SOT-23" H 2450 6800 50 0001 C CNN 921 | F 3 "~" H 2250 6700 50 0001 C CNN 922 | 1 2250 6700 923 | 0 1 -1 0 924 | $EndComp 925 | Wire Wire Line 926 | 2050 6600 1850 6600 927 | Connection ~ 1850 6600 928 | Wire Wire Line 929 | 2250 6900 2250 7000 930 | Wire Wire Line 931 | 2250 7000 1850 7000 932 | Wire Wire Line 933 | 1700 6600 1700 6500 934 | Connection ~ 1700 6600 935 | $Comp 936 | L power:+3.3V #PWR01 937 | U 1 1 5F80FA29 938 | P 1700 6500 939 | F 0 "#PWR01" H 1700 6350 50 0001 C CNN 940 | F 1 "+3.3V" H 1715 6673 50 0000 C CNN 941 | F 2 "" H 1700 6500 50 0001 C CNN 942 | F 3 "" H 1700 6500 50 0001 C CNN 943 | 1 1700 6500 944 | 1 0 0 -1 945 | $EndComp 946 | $Comp 947 | L Device:C_Small C4 948 | U 1 1 5F82C56F 949 | P 2700 6800 950 | F 0 "C4" H 2792 6846 50 0000 L CNN 951 | F 1 "22uF" H 2792 6755 50 0000 L CNN 952 | F 2 "Capacitor_SMD:C_0805_2012Metric" H 2700 6800 50 0001 C CNN 953 | F 3 "~" H 2700 6800 50 0001 C CNN 954 | 1 2700 6800 955 | -1 0 0 -1 956 | $EndComp 957 | Wire Wire Line 958 | 2450 6600 2700 6600 959 | Wire Wire Line 960 | 2700 6600 2700 6700 961 | Text GLabel 2800 6600 2 50 Input ~ 0 962 | 3.3V_LAN 963 | Wire Wire Line 964 | 2700 6900 2700 7000 965 | $Comp 966 | L power:GND #PWR011 967 | U 1 1 5F863375 968 | P 2700 7000 969 | F 0 "#PWR011" H 2700 6750 50 0001 C CNN 970 | F 1 "GND" H 2705 6827 50 0000 C CNN 971 | F 2 "" H 2700 7000 50 0001 C CNN 972 | F 3 "" H 2700 7000 50 0001 C CNN 973 | 1 2700 7000 974 | 1 0 0 -1 975 | $EndComp 976 | Wire Notes Line 977 | 8750 10250 750 10250 978 | $Comp 979 | L Interface_Ethernet:LAN8710A U2 980 | U 1 1 5F911FC8 981 | P 5250 8300 982 | F 0 "U2" H 4600 9650 50 0000 C CNN 983 | F 1 "LAN8710A" H 5750 6950 50 0000 C CNN 984 | F 2 "Package_DFN_QFN:QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm_ThermalVias" H 5400 6950 50 0001 L CNN 985 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/8710a.pdf" H 5150 7350 50 0001 C CNN 986 | 1 5250 8300 987 | 1 0 0 -1 988 | $EndComp 989 | Wire Wire Line 990 | 6050 8000 6250 8000 991 | Text Label 6250 8000 2 50 ~ 0 992 | AY1 993 | Wire Wire Line 994 | 6050 8100 6250 8100 995 | Text Label 6250 8100 2 50 ~ 0 996 | KG1 997 | NoConn ~ 4450 9500 998 | Wire Wire Line 999 | 4450 9400 3750 9400 1000 | Text Label 3750 9400 0 50 ~ 0 1001 | EMAC_CLKO_180 1002 | NoConn ~ 4450 7600 1003 | NoConn ~ 6050 8900 1004 | Wire Wire Line 1005 | 4450 9000 4000 9000 1006 | Text Label 4000 9000 0 50 ~ 0 1007 | MDC(RMII) 1008 | Wire Wire Line 1009 | 4450 8900 4000 8900 1010 | Text Label 4000 8900 0 50 ~ 0 1011 | MDIO(RMII) 1012 | Wire Wire Line 1013 | 4450 9200 3600 9200 1014 | Wire Wire Line 1015 | 3600 9200 3600 9100 1016 | Wire Wire Line 1017 | 3600 9200 3600 9300 1018 | Connection ~ 3600 9200 1019 | $Comp 1020 | L Device:C_Small C9 1021 | U 1 1 5F986B6D 1022 | P 3600 9400 1023 | F 0 "C9" H 3509 9354 50 0000 R CNN 1024 | F 1 "10uF" H 3509 9445 50 0000 R CNN 1025 | F 2 "Capacitor_SMD:C_0805_2012Metric" H 3600 9400 50 0001 C CNN 1026 | F 3 "~" H 3600 9400 50 0001 C CNN 1027 | 1 3600 9400 1028 | 1 0 0 1 1029 | $EndComp 1030 | Wire Wire Line 1031 | 3600 9500 3600 9600 1032 | $Comp 1033 | L power:GND #PWR021 1034 | U 1 1 5F9922AC 1035 | P 3600 9600 1036 | F 0 "#PWR021" H 3600 9350 50 0001 C CNN 1037 | F 1 "GND" H 3605 9427 50 0000 C CNN 1038 | F 2 "" H 3600 9600 50 0001 C CNN 1039 | F 3 "" H 3600 9600 50 0001 C CNN 1040 | 1 3600 9600 1041 | 1 0 0 -1 1042 | $EndComp 1043 | $Comp 1044 | L Device:R_Small R5 1045 | U 1 1 5F9926CC 1046 | P 3600 9000 1047 | F 0 "R5" H 3659 9046 50 0000 L CNN 1048 | F 1 "10k" H 3659 8955 50 0000 L CNN 1049 | F 2 "Resistor_SMD:R_0402_1005Metric" H 3600 9000 50 0001 C CNN 1050 | F 3 "~" H 3600 9000 50 0001 C CNN 1051 | 1 3600 9000 1052 | 1 0 0 -1 1053 | $EndComp 1054 | Wire Wire Line 1055 | 3600 8900 3600 8800 1056 | Text GLabel 3600 8800 1 50 Input ~ 0 1057 | 3.3V_LAN 1058 | $Comp 1059 | L Device:R_Small R7 1060 | U 1 1 5F9A7DB1 1061 | P 6150 9400 1062 | F 0 "R7" H 6209 9446 50 0000 L CNN 1063 | F 1 "12.1k" H 6209 9355 50 0000 L CNN 1064 | F 2 "Resistor_SMD:R_0402_1005Metric" H 6150 9400 50 0001 C CNN 1065 | F 3 "~" H 6150 9400 50 0001 C CNN 1066 | 1 6150 9400 1067 | 1 0 0 -1 1068 | $EndComp 1069 | Wire Wire Line 1070 | 6050 9200 6150 9200 1071 | Wire Wire Line 1072 | 6150 9200 6150 9300 1073 | Wire Wire Line 1074 | 6150 9500 6150 9600 1075 | $Comp 1076 | L power:GND #PWR030 1077 | U 1 1 5F9BDFAA 1078 | P 6150 9600 1079 | F 0 "#PWR030" H 6150 9350 50 0001 C CNN 1080 | F 1 "GND" H 6155 9427 50 0000 C CNN 1081 | F 2 "" H 6150 9600 50 0001 C CNN 1082 | F 3 "" H 6150 9600 50 0001 C CNN 1083 | 1 6150 9600 1084 | 1 0 0 -1 1085 | $EndComp 1086 | Wire Wire Line 1087 | 5250 9700 5250 9800 1088 | $Comp 1089 | L power:GND #PWR027 1090 | U 1 1 5F9C918D 1091 | P 5250 9800 1092 | F 0 "#PWR027" H 5250 9550 50 0001 C CNN 1093 | F 1 "GND" H 5255 9627 50 0000 C CNN 1094 | F 2 "" H 5250 9800 50 0001 C CNN 1095 | F 3 "" H 5250 9800 50 0001 C CNN 1096 | 1 5250 9800 1097 | 1 0 0 -1 1098 | $EndComp 1099 | Wire Wire Line 1100 | 3600 7300 3600 7400 1101 | $Comp 1102 | L power:GND #PWR020 1103 | U 1 1 5F9D4500 1104 | P 3600 7400 1105 | F 0 "#PWR020" H 3600 7150 50 0001 C CNN 1106 | F 1 "GND" H 3605 7227 50 0000 C CNN 1107 | F 2 "" H 3600 7400 50 0001 C CNN 1108 | F 3 "" H 3600 7400 50 0001 C CNN 1109 | 1 3600 7400 1110 | 1 0 0 -1 1111 | $EndComp 1112 | Text Label 6250 7200 2 50 ~ 0 1113 | TX_P 1114 | Text Label 6250 7300 2 50 ~ 0 1115 | TX_N 1116 | Text Label 6250 7400 2 50 ~ 0 1117 | RX_P 1118 | Text Label 6250 7500 2 50 ~ 0 1119 | RX_N 1120 | Wire Wire Line 1121 | 6050 7200 6300 7200 1122 | Wire Wire Line 1123 | 6050 7300 6400 7300 1124 | Wire Wire Line 1125 | 6050 7400 6500 7400 1126 | Wire Wire Line 1127 | 6050 7500 6600 7500 1128 | $Comp 1129 | L Device:R_Small R8 1130 | U 1 1 5FA79DB6 1131 | P 6300 7050 1132 | F 0 "R8" V 6350 7150 50 0000 L CNN 1133 | F 1 "49.9k" H 6050 7050 50 0000 L CNN 1134 | F 2 "Resistor_SMD:R_0402_1005Metric" H 6300 7050 50 0001 C CNN 1135 | F 3 "~" H 6300 7050 50 0001 C CNN 1136 | 1 6300 7050 1137 | 1 0 0 -1 1138 | $EndComp 1139 | $Comp 1140 | L Device:R_Small R9 1141 | U 1 1 5FA7A37F 1142 | P 6400 7050 1143 | F 0 "R9" V 6450 7150 50 0000 L CNN 1144 | F 1 "49.9k" H 6050 7050 50 0000 L CNN 1145 | F 2 "Resistor_SMD:R_0402_1005Metric" H 6400 7050 50 0001 C CNN 1146 | F 3 "~" H 6400 7050 50 0001 C CNN 1147 | 1 6400 7050 1148 | 1 0 0 -1 1149 | $EndComp 1150 | $Comp 1151 | L Device:R_Small R10 1152 | U 1 1 5FA7A652 1153 | P 6500 7050 1154 | F 0 "R10" V 6550 7150 50 0000 L CNN 1155 | F 1 "49.9k" H 6050 7050 50 0000 L CNN 1156 | F 2 "Resistor_SMD:R_0402_1005Metric" H 6500 7050 50 0001 C CNN 1157 | F 3 "~" H 6500 7050 50 0001 C CNN 1158 | 1 6500 7050 1159 | 1 0 0 -1 1160 | $EndComp 1161 | $Comp 1162 | L Device:R_Small R11 1163 | U 1 1 5FA7A98F 1164 | P 6600 7050 1165 | F 0 "R11" V 6650 7150 50 0000 L CNN 1166 | F 1 "49.9k" H 6050 7050 50 0000 L CNN 1167 | F 2 "Resistor_SMD:R_0402_1005Metric" H 6600 7050 50 0001 C CNN 1168 | F 3 "~" H 6600 7050 50 0001 C CNN 1169 | 1 6600 7050 1170 | 1 0 0 -1 1171 | $EndComp 1172 | Wire Wire Line 1173 | 6600 6800 6500 6800 1174 | Connection ~ 6400 6800 1175 | Wire Wire Line 1176 | 6400 6800 6300 6800 1177 | Connection ~ 6500 6800 1178 | Wire Wire Line 1179 | 6400 6800 6500 6800 1180 | Text GLabel 5050 6800 1 50 Input ~ 0 1181 | 3.3V_LAN 1182 | $Comp 1183 | L Device:C_Small C10 1184 | U 1 1 5FB5A399 1185 | P 4850 6550 1186 | F 0 "C10" H 4759 6504 50 0000 R CNN 1187 | F 1 "100nF" H 4759 6595 50 0000 R CNN 1188 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 4850 6550 50 0001 C CNN 1189 | F 3 "~" H 4850 6550 50 0001 C CNN 1190 | 1 4850 6550 1191 | 1 0 0 1 1192 | $EndComp 1193 | Wire Wire Line 1194 | 5850 6700 5850 6800 1195 | Wire Wire Line 1196 | 5850 6400 5850 6500 1197 | $Comp 1198 | L Device:L_Small L2 1199 | U 1 1 5F8FCFCB 1200 | P 5850 6600 1201 | F 0 "L2" H 5950 6600 50 0000 C CNN 1202 | F 1 "MPZ2012S601ATD25" H 6300 6500 50 0001 C CNN 1203 | F 2 "Inductor_SMD:L_0805_2012Metric" H 5850 6600 50 0001 C CNN 1204 | F 3 "~" H 5850 6600 50 0001 C CNN 1205 | 1 5850 6600 1206 | 1 0 0 -1 1207 | $EndComp 1208 | Text GLabel 5850 6400 1 50 Input ~ 0 1209 | 3.3V_LAN 1210 | Text GLabel 2950 6150 2 50 Input ~ 0 1211 | 3.3V_LAN 1212 | $Comp 1213 | L power:+3.3V #PWR010 1214 | U 1 1 5F776C0E 1215 | P 2550 6050 1216 | F 0 "#PWR010" H 2550 5900 50 0001 C CNN 1217 | F 1 "+3.3V" H 2565 6223 50 0000 C CNN 1218 | F 2 "" H 2550 6050 50 0001 C CNN 1219 | F 3 "" H 2550 6050 50 0001 C CNN 1220 | 1 2550 6050 1221 | 1 0 0 -1 1222 | $EndComp 1223 | Wire Wire Line 1224 | 2850 6150 2950 6150 1225 | Wire Wire Line 1226 | 2550 6150 2550 6050 1227 | Wire Wire Line 1228 | 2650 6150 2550 6150 1229 | $Comp 1230 | L Device:L_Small L1 1231 | U 1 1 5F764962 1232 | P 2750 6150 1233 | F 0 "L1" V 2850 6150 50 0000 C CNN 1234 | F 1 "DNP" V 2650 6150 50 0000 C CNN 1235 | F 2 "Inductor_SMD:L_0805_2012Metric" H 2750 6150 50 0001 C CNN 1236 | F 3 "~" H 2750 6150 50 0001 C CNN 1237 | 1 2750 6150 1238 | 0 -1 -1 0 1239 | $EndComp 1240 | Wire Wire Line 1241 | 3600 7300 4350 7300 1242 | Wire Wire Line 1243 | 5050 6900 5050 6800 1244 | Text GLabel 4850 6400 1 50 Input ~ 0 1245 | 3.3V_LAN 1246 | Wire Wire Line 1247 | 4850 6450 4850 6400 1248 | Wire Wire Line 1249 | 4850 6650 4850 6700 1250 | $Comp 1251 | L power:GND #PWR026 1252 | U 1 1 5FBEAC18 1253 | P 4850 6700 1254 | F 0 "#PWR026" H 4850 6450 50 0001 C CNN 1255 | F 1 "GND" H 4855 6527 50 0000 C CNN 1256 | F 2 "" H 4850 6700 50 0001 C CNN 1257 | F 3 "" H 4850 6700 50 0001 C CNN 1258 | 1 4850 6700 1259 | 1 0 0 -1 1260 | $EndComp 1261 | Wire Wire Line 1262 | 5150 6900 5150 6100 1263 | Wire Wire Line 1264 | 5150 6100 5350 6100 1265 | Wire Wire Line 1266 | 5350 6100 5350 6200 1267 | $Comp 1268 | L Device:C_Small C11 1269 | U 1 1 5FC04157 1270 | P 5350 6300 1271 | F 0 "C11" V 5250 6250 50 0000 R CNN 1272 | F 1 "2.2uF" V 5250 6550 50 0000 R CNN 1273 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 5350 6300 50 0001 C CNN 1274 | F 3 "~" H 5350 6300 50 0001 C CNN 1275 | 1 5350 6300 1276 | 1 0 0 1 1277 | $EndComp 1278 | $Comp 1279 | L Device:C_Small C12 1280 | U 1 1 5FC04466 1281 | P 5500 6300 1282 | F 0 "C12" V 5400 6250 50 0000 R CNN 1283 | F 1 "100nF" V 5400 6550 50 0000 R CNN 1284 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 5500 6300 50 0001 C CNN 1285 | F 3 "~" H 5500 6300 50 0001 C CNN 1286 | 1 5500 6300 1287 | -1 0 0 1 1288 | $EndComp 1289 | Wire Wire Line 1290 | 5500 6200 5500 6100 1291 | Wire Wire Line 1292 | 5500 6100 5350 6100 1293 | Connection ~ 5350 6100 1294 | Wire Wire Line 1295 | 5350 6400 5350 6500 1296 | Wire Wire Line 1297 | 5500 6400 5500 6500 1298 | $Comp 1299 | L power:GND #PWR028 1300 | U 1 1 5FC3942F 1301 | P 5350 6500 1302 | F 0 "#PWR028" H 5350 6250 50 0001 C CNN 1303 | F 1 "GND" H 5355 6327 50 0000 C CNN 1304 | F 2 "" H 5350 6500 50 0001 C CNN 1305 | F 3 "" H 5350 6500 50 0001 C CNN 1306 | 1 5350 6500 1307 | 1 0 0 -1 1308 | $EndComp 1309 | $Comp 1310 | L power:GND #PWR029 1311 | U 1 1 5FC397CE 1312 | P 5500 6500 1313 | F 0 "#PWR029" H 5500 6250 50 0001 C CNN 1314 | F 1 "GND" H 5505 6327 50 0000 C CNN 1315 | F 2 "" H 5500 6500 50 0001 C CNN 1316 | F 3 "" H 5500 6500 50 0001 C CNN 1317 | 1 5500 6500 1318 | 1 0 0 -1 1319 | $EndComp 1320 | Wire Wire Line 1321 | 6300 6950 6300 6800 1322 | Wire Wire Line 1323 | 6400 6950 6400 6800 1324 | Wire Wire Line 1325 | 6500 6950 6500 6800 1326 | Wire Wire Line 1327 | 6600 6950 6600 6800 1328 | Wire Wire Line 1329 | 5250 6900 5250 6800 1330 | Wire Wire Line 1331 | 5250 6800 5350 6800 1332 | Wire Wire Line 1333 | 5350 6900 5350 6800 1334 | Connection ~ 5350 6800 1335 | Wire Wire Line 1336 | 6300 7200 6300 7150 1337 | Wire Wire Line 1338 | 6400 7150 6400 7300 1339 | Wire Wire Line 1340 | 6500 7150 6500 7400 1341 | Wire Wire Line 1342 | 6600 7150 6600 7500 1343 | Wire Wire Line 1344 | 5350 6800 5850 6800 1345 | Connection ~ 6300 6800 1346 | $Comp 1347 | L Device:C_Small C15 1348 | U 1 1 5FD2D708 1349 | P 6750 7050 1350 | F 0 "C15" V 6650 7000 50 0000 R CNN 1351 | F 1 "100nF" V 6650 7300 50 0000 R CNN 1352 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 6750 7050 50 0001 C CNN 1353 | F 3 "~" H 6750 7050 50 0001 C CNN 1354 | 1 6750 7050 1355 | -1 0 0 1 1356 | $EndComp 1357 | $Comp 1358 | L Device:C_Small C16 1359 | U 1 1 5FD2DBDB 1360 | P 6950 7050 1361 | F 0 "C16" V 6850 7000 50 0000 R CNN 1362 | F 1 "100nF" V 6850 7300 50 0000 R CNN 1363 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 6950 7050 50 0001 C CNN 1364 | F 3 "~" H 6950 7050 50 0001 C CNN 1365 | 1 6950 7050 1366 | -1 0 0 1 1367 | $EndComp 1368 | Wire Wire Line 1369 | 6750 6950 6750 6800 1370 | Wire Wire Line 1371 | 6750 6800 6600 6800 1372 | Connection ~ 6600 6800 1373 | Wire Wire Line 1374 | 6750 6800 6950 6800 1375 | Wire Wire Line 1376 | 6950 6800 6950 6950 1377 | Connection ~ 6750 6800 1378 | Connection ~ 5850 6800 1379 | Wire Wire Line 1380 | 5850 6800 6300 6800 1381 | Connection ~ 2700 6600 1382 | NoConn ~ 4450 8200 1383 | Wire Wire Line 1384 | 4450 7400 4350 7400 1385 | Wire Wire Line 1386 | 4350 7400 4350 7300 1387 | Connection ~ 4350 7300 1388 | Wire Wire Line 1389 | 4350 7300 4450 7300 1390 | Wire Wire Line 1391 | 4450 7200 3750 7200 1392 | Text Label 3750 7200 0 50 ~ 0 1393 | EMAC_TXD1(RMII) 1394 | Wire Wire Line 1395 | 4450 7100 3750 7100 1396 | Text Label 3750 7100 0 50 ~ 0 1397 | EMAC_TXD0(RMII) 1398 | Text Label 4100 8300 0 50 ~ 0 1399 | PHYAD1 1400 | Wire Wire Line 1401 | 4450 8300 4100 8300 1402 | Wire Wire Line 1403 | 4450 8100 4100 8100 1404 | Text Label 4100 8100 0 50 ~ 0 1405 | PHYAD2 1406 | Wire Wire Line 1407 | 4450 8000 4100 8000 1408 | Text Label 4100 8000 0 50 ~ 0 1409 | RMII_SEL 1410 | Wire Wire Line 1411 | 4450 7800 3750 7800 1412 | Text Label 3750 7800 0 50 ~ 0 1413 | EMAC_RXD0(RMII) 1414 | Wire Wire Line 1415 | 4450 7900 3750 7900 1416 | Text Label 3750 7900 0 50 ~ 0 1417 | EMAC_RXD1(RMII) 1418 | Text Label 4100 8400 0 50 ~ 0 1419 | PHYAD0 1420 | Wire Wire Line 1421 | 4100 8400 4450 8400 1422 | NoConn ~ 4450 8700 1423 | Wire Wire Line 1424 | 4450 8600 3750 8600 1425 | Text Label 3750 8600 0 50 ~ 0 1426 | EMAC_RX_CRS_DV 1427 | Wire Wire Line 1428 | 6750 7150 6750 7250 1429 | Wire Wire Line 1430 | 6950 7150 6950 7250 1431 | $Comp 1432 | L power:GND #PWR036 1433 | U 1 1 5FF0FA59 1434 | P 6750 7250 1435 | F 0 "#PWR036" H 6750 7000 50 0001 C CNN 1436 | F 1 "GND" H 6755 7077 50 0000 C CNN 1437 | F 2 "" H 6750 7250 50 0001 C CNN 1438 | F 3 "" H 6750 7250 50 0001 C CNN 1439 | 1 6750 7250 1440 | 1 0 0 -1 1441 | $EndComp 1442 | $Comp 1443 | L power:GND #PWR038 1444 | U 1 1 5FF1EB1E 1445 | P 6950 7250 1446 | F 0 "#PWR038" H 6950 7000 50 0001 C CNN 1447 | F 1 "GND" H 6955 7077 50 0000 C CNN 1448 | F 2 "" H 6950 7250 50 0001 C CNN 1449 | F 3 "" H 6950 7250 50 0001 C CNN 1450 | 1 6950 7250 1451 | 1 0 0 -1 1452 | $EndComp 1453 | $Comp 1454 | L Device:C_Small C17 1455 | U 1 1 5FF20D56 1456 | P 7150 7050 1457 | F 0 "C17" V 7050 7000 50 0000 R CNN 1458 | F 1 "22uF" V 7050 7300 50 0000 R CNN 1459 | F 2 "Capacitor_SMD:C_0805_2012Metric" H 7150 7050 50 0001 C CNN 1460 | F 3 "~" H 7150 7050 50 0001 C CNN 1461 | 1 7150 7050 1462 | -1 0 0 1 1463 | $EndComp 1464 | Wire Wire Line 1465 | 7150 6800 7150 6950 1466 | Wire Wire Line 1467 | 7150 7150 7150 7250 1468 | $Comp 1469 | L power:GND #PWR039 1470 | U 1 1 5FF20D5E 1471 | P 7150 7250 1472 | F 0 "#PWR039" H 7150 7000 50 0001 C CNN 1473 | F 1 "GND" H 7155 7077 50 0000 C CNN 1474 | F 2 "" H 7150 7250 50 0001 C CNN 1475 | F 3 "" H 7150 7250 50 0001 C CNN 1476 | 1 7150 7250 1477 | 1 0 0 -1 1478 | $EndComp 1479 | Wire Wire Line 1480 | 7150 6800 6950 6800 1481 | Connection ~ 6950 6800 1482 | Wire Wire Line 1483 | 4450 7500 3750 7500 1484 | Text Label 3750 7500 0 50 ~ 0 1485 | EMAC_TX_EN(RMII) 1486 | Wire Wire Line 1487 | 7600 8050 7700 8050 1488 | Wire Wire Line 1489 | 7700 8050 7700 7950 1490 | Wire Wire Line 1491 | 7700 7950 7600 7950 1492 | Connection ~ 7700 7950 1493 | $Comp 1494 | L power:GND #PWR044 1495 | U 1 1 5FFF6986 1496 | P 7800 9000 1497 | F 0 "#PWR044" H 7800 8750 50 0001 C CNN 1498 | F 1 "GND" H 7805 8827 50 0000 C CNN 1499 | F 2 "" H 7800 9000 50 0001 C CNN 1500 | F 3 "" H 7800 9000 50 0001 C CNN 1501 | 1 7800 9000 1502 | -1 0 0 -1 1503 | $EndComp 1504 | Text GLabel 7900 8150 2 50 Input ~ 0 1505 | 3.3V_LAN 1506 | Wire Wire Line 1507 | 7900 8150 7700 8150 1508 | Wire Wire Line 1509 | 7600 8250 7700 8250 1510 | Wire Wire Line 1511 | 7700 8250 7700 8150 1512 | Connection ~ 7700 8150 1513 | Wire Wire Line 1514 | 7700 8150 7600 8150 1515 | Text Label 6850 7950 0 50 ~ 0 1516 | PHYAD1 1517 | Wire Wire Line 1518 | 7200 7950 6850 7950 1519 | Wire Wire Line 1520 | 7200 8050 6850 8050 1521 | Text Label 6850 8050 0 50 ~ 0 1522 | PHYAD2 1523 | Wire Wire Line 1524 | 7200 8150 6850 8150 1525 | Text Label 6850 8150 0 50 ~ 0 1526 | RMII_SEL 1527 | Wire Wire Line 1528 | 7200 8250 6500 8250 1529 | Text Label 6500 8250 0 50 ~ 0 1530 | EMAC_RXD1(RMII) 1531 | Wire Wire Line 1532 | 7600 8900 7700 8900 1533 | Wire Wire Line 1534 | 7700 8900 7700 8800 1535 | Wire Wire Line 1536 | 7600 8800 7700 8800 1537 | Connection ~ 7700 8800 1538 | Wire Wire Line 1539 | 7700 8800 7700 8700 1540 | Wire Wire Line 1541 | 7600 8700 7700 8700 1542 | Connection ~ 7700 8700 1543 | Wire Wire Line 1544 | 7700 8700 7700 8250 1545 | Wire Wire Line 1546 | 7800 8600 7600 8600 1547 | Wire Wire Line 1548 | 7700 7950 7800 7950 1549 | Wire Wire Line 1550 | 11500 2000 11600 2000 1551 | $Comp 1552 | L Switch:SW_Push SW2 1553 | U 1 1 5F48D590 1554 | P 11800 2000 1555 | F 0 "SW2" H 11800 2200 50 0000 C CNN 1556 | F 1 "DNP" H 11700 2100 50 0000 C CNN 1557 | F 2 "Button_Switch_SMD:SW_SPST_PTS810" H 11800 2200 50 0001 C CNN 1558 | F 3 "~" H 11800 2200 50 0001 C CNN 1559 | F 4 "PTS810" H 11800 2000 50 0001 C CNN "MPN" 1560 | 1 11800 2000 1561 | 1 0 0 -1 1562 | $EndComp 1563 | Wire Wire Line 1564 | 12200 2000 12000 2000 1565 | $Comp 1566 | L Switch:SW_Push SW1 1567 | U 1 1 5F4CAAC1 1568 | P 9350 2400 1569 | F 0 "SW1" H 9350 2600 50 0000 C CNN 1570 | F 1 "DNP" H 9250 2500 50 0000 C CNN 1571 | F 2 "Button_Switch_SMD:SW_SPST_PTS810" H 9350 2600 50 0001 C CNN 1572 | F 3 "~" H 9350 2600 50 0001 C CNN 1573 | F 4 "PTS810" H 9350 2400 50 0001 C CNN "MPN" 1574 | 1 9350 2400 1575 | 1 0 0 -1 1576 | $EndComp 1577 | Wire Wire Line 1578 | 9150 2400 9050 2400 1579 | Text Label 14200 3300 1 50 ~ 0 1580 | V1P8DIG 1581 | Text Label 14300 3300 1 50 ~ 0 1582 | V1P8ANA 1583 | Text Label 10750 7000 2 30 ~ 0 1584 | LED_DAT1 1585 | Text Label 11750 7000 2 30 ~ 0 1586 | LED_DAT2 1587 | Text Label 5150 6100 0 50 ~ 0 1588 | LAN_VDDCR 1589 | Text Label 4100 9200 0 50 ~ 0 1590 | LAN_~RST 1591 | Text Label 2250 6900 1 30 ~ 0 1592 | Q2_G 1593 | Text Label 1850 7350 3 30 ~ 0 1594 | Q1_C 1595 | $Comp 1596 | L Device:R_Small R12 1597 | U 1 1 5F4A193D 1598 | P 15000 3600 1599 | F 0 "R12" H 15059 3646 50 0000 L CNN 1600 | F 1 "10k" H 15059 3555 50 0000 L CNN 1601 | F 2 "Resistor_SMD:R_0402_1005Metric" H 15000 3600 50 0001 C CNN 1602 | F 3 "~" H 15000 3600 50 0001 C CNN 1603 | 1 15000 3600 1604 | -1 0 0 -1 1605 | $EndComp 1606 | $Comp 1607 | L 74xGxx:74LVC1G17 U5 1608 | U 1 1 5F4DD0AF 1609 | P 9500 7000 1610 | F 0 "U5" H 9250 7250 50 0000 C CNN 1611 | F 1 "74LVC1G17" H 9250 7150 50 0000 C CNN 1612 | F 2 "Package_TO_SOT_SMD:SOT-353_SC-70-5" H 9500 7000 50 0001 C CNN 1613 | F 3 "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" H 9500 7000 50 0001 C CNN 1614 | 1 9500 7000 1615 | 1 0 0 -1 1616 | $EndComp 1617 | Wire Wire Line 1618 | 9750 7000 9800 7000 1619 | Wire Wire Line 1620 | 8850 7000 9200 7000 1621 | $Comp 1622 | L power:+5V #PWR066 1623 | U 1 1 5F60EED5 1624 | P 9500 6850 1625 | F 0 "#PWR066" H 9500 6700 50 0001 C CNN 1626 | F 1 "+5V" H 9515 7023 50 0000 C CNN 1627 | F 2 "" H 9500 6850 50 0001 C CNN 1628 | F 3 "" H 9500 6850 50 0001 C CNN 1629 | 1 9500 6850 1630 | 1 0 0 -1 1631 | $EndComp 1632 | Wire Wire Line 1633 | 9500 6850 9500 6900 1634 | $Comp 1635 | L power:GND #PWR067 1636 | U 1 1 5F623E7B 1637 | P 9500 7150 1638 | F 0 "#PWR067" H 9500 6900 50 0001 C CNN 1639 | F 1 "GND" H 9505 6977 50 0000 C CNN 1640 | F 2 "" H 9500 7150 50 0001 C CNN 1641 | F 3 "" H 9500 7150 50 0001 C CNN 1642 | 1 9500 7150 1643 | 1 0 0 -1 1644 | $EndComp 1645 | Wire Wire Line 1646 | 9500 7150 9500 7100 1647 | Wire Wire Line 1648 | 13750 6700 13750 6750 1649 | Wire Wire Line 1650 | 13750 6750 13850 6750 1651 | Connection ~ 13850 6750 1652 | Wire Wire Line 1653 | 13750 6500 13750 6400 1654 | Wire Wire Line 1655 | 13750 6400 13850 6400 1656 | Wire Wire Line 1657 | 13850 6300 13850 6400 1658 | Connection ~ 13850 6400 1659 | $Comp 1660 | L Device:C_Small C30 1661 | U 1 1 5F694E03 1662 | P 13300 6250 1663 | F 0 "C30" H 13392 6296 50 0000 L CNN 1664 | F 1 "1uF" H 13392 6205 50 0000 L CNN 1665 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 13300 6250 50 0001 C CNN 1666 | F 3 "~" H 13300 6250 50 0001 C CNN 1667 | 1 13300 6250 1668 | 1 0 0 -1 1669 | $EndComp 1670 | $Comp 1671 | L power:GND #PWR082 1672 | U 1 1 5F694E09 1673 | P 13300 6400 1674 | F 0 "#PWR082" H 13300 6150 50 0001 C CNN 1675 | F 1 "GND" H 13305 6227 50 0000 C CNN 1676 | F 2 "" H 13300 6400 50 0001 C CNN 1677 | F 3 "" H 13300 6400 50 0001 C CNN 1678 | 1 13300 6400 1679 | 1 0 0 -1 1680 | $EndComp 1681 | Wire Wire Line 1682 | 13300 6400 13300 6350 1683 | Wire Wire Line 1684 | 13300 6150 13300 6100 1685 | $Comp 1686 | L power:+5V #PWR081 1687 | U 1 1 5F694E11 1688 | P 13300 6100 1689 | F 0 "#PWR081" H 13300 5950 50 0001 C CNN 1690 | F 1 "+5V" H 13315 6273 50 0000 C CNN 1691 | F 2 "" H 13300 6100 50 0001 C CNN 1692 | F 3 "" H 13300 6100 50 0001 C CNN 1693 | 1 13300 6100 1694 | 1 0 0 -1 1695 | $EndComp 1696 | $Comp 1697 | L Connector:USB_C_Receptacle_USB2.0 J3 1698 | U 1 1 5F6F87BF 1699 | P 1650 2000 1700 | F 0 "J3" H 1757 2867 50 0000 C CNN 1701 | F 1 "USB_C_Receptacle_USB2.0" H 1757 2776 50 0000 C CNN 1702 | F 2 "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" H 1800 2000 50 0001 C CNN 1703 | F 3 "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" H 1800 2000 50 0001 C CNN 1704 | 1 1650 2000 1705 | 1 0 0 -1 1706 | $EndComp 1707 | $Comp 1708 | L Device:C_Small C29 1709 | U 1 1 5F6FAEB3 1710 | P 1250 3100 1711 | F 0 "C29" H 1159 3054 50 0000 R CNN 1712 | F 1 "4.7nF" H 1159 3145 50 0000 R CNN 1713 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 1250 3100 50 0001 C CNN 1714 | F 3 "~" H 1250 3100 50 0001 C CNN 1715 | 1 1250 3100 1716 | 1 0 0 1 1717 | $EndComp 1718 | $Comp 1719 | L Device:R_Small R22 1720 | U 1 1 5F6FC102 1721 | P 1450 3100 1722 | F 0 "R22" H 1509 3146 50 0000 L CNN 1723 | F 1 "1M" H 1509 3055 50 0000 L CNN 1724 | F 2 "Resistor_SMD:R_0402_1005Metric" H 1450 3100 50 0001 C CNN 1725 | F 3 "~" H 1450 3100 50 0001 C CNN 1726 | 1 1450 3100 1727 | 1 0 0 -1 1728 | $EndComp 1729 | Wire Wire Line 1730 | 1650 2900 1650 3300 1731 | Wire Wire Line 1732 | 1450 3200 1450 3250 1733 | Wire Wire Line 1734 | 1450 3250 1350 3250 1735 | Wire Wire Line 1736 | 1250 3250 1250 3200 1737 | Wire Wire Line 1738 | 1350 3250 1350 3300 1739 | Connection ~ 1350 3250 1740 | Wire Wire Line 1741 | 1350 3250 1250 3250 1742 | Wire Wire Line 1743 | 1350 2900 1350 2950 1744 | Wire Wire Line 1745 | 1350 2950 1450 2950 1746 | Wire Wire Line 1747 | 1450 2950 1450 3000 1748 | Wire Wire Line 1749 | 1250 3000 1250 2950 1750 | Wire Wire Line 1751 | 1250 2950 1350 2950 1752 | Connection ~ 1350 2950 1753 | $Comp 1754 | L power:GND #PWR078 1755 | U 1 1 5F76C982 1756 | P 1350 3300 1757 | F 0 "#PWR078" H 1350 3050 50 0001 C CNN 1758 | F 1 "GND" H 1355 3127 50 0000 C CNN 1759 | F 2 "" H 1350 3300 50 0001 C CNN 1760 | F 3 "" H 1350 3300 50 0001 C CNN 1761 | 1 1350 3300 1762 | 1 0 0 -1 1763 | $EndComp 1764 | $Comp 1765 | L power:GND #PWR079 1766 | U 1 1 5F76CD93 1767 | P 1650 3300 1768 | F 0 "#PWR079" H 1650 3050 50 0001 C CNN 1769 | F 1 "GND" H 1655 3127 50 0000 C CNN 1770 | F 2 "" H 1650 3300 50 0001 C CNN 1771 | F 3 "" H 1650 3300 50 0001 C CNN 1772 | 1 1650 3300 1773 | 1 0 0 -1 1774 | $EndComp 1775 | NoConn ~ 2250 2500 1776 | NoConn ~ 2250 2600 1777 | Wire Wire Line 1778 | 2250 1400 2450 1400 1779 | Text Label 2250 1400 0 30 ~ 0 1780 | VBUS_C_F 1781 | Text Label 9800 7000 3 30 ~ 0 1782 | LED_DAT0 1783 | Text Label 13550 7000 0 30 ~ 0 1784 | Q3_B 1785 | $Comp 1786 | L Device:Polyfuse F1 1787 | U 1 1 5F7BB103 1788 | P 2600 1400 1789 | F 0 "F1" V 2375 1400 50 0000 C CNN 1790 | F 1 "Polyfuse" V 2466 1400 50 0000 C CNN 1791 | F 2 "Fuse:Fuse_0805_2012Metric" H 2650 1200 50 0001 L CNN 1792 | F 3 "~" H 2600 1400 50 0001 C CNN 1793 | 1 2600 1400 1794 | 0 1 1 0 1795 | $EndComp 1796 | Wire Wire Line 1797 | 2750 1400 2950 1400 1798 | Text Label 2750 1400 0 30 ~ 0 1799 | VBUS_F_FB 1800 | $Comp 1801 | L power:GND #PWR058 1802 | U 1 1 5F35DE55 1803 | P 2850 4950 1804 | F 0 "#PWR058" H 2850 4700 50 0001 C CNN 1805 | F 1 "GND" H 2855 4777 50 0000 C CNN 1806 | F 2 "" H 2850 4950 50 0001 C CNN 1807 | F 3 "" H 2850 4950 50 0001 C CNN 1808 | 1 2850 4950 1809 | 1 0 0 -1 1810 | $EndComp 1811 | Wire Wire Line 1812 | 2850 4850 2850 4950 1813 | $Comp 1814 | L Device:C_Small C24 1815 | U 1 1 5F35B8F2 1816 | P 2850 4750 1817 | F 0 "C24" H 2759 4704 50 0000 R CNN 1818 | F 1 "100nF" H 2759 4795 50 0000 R CNN 1819 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 2850 4750 50 0001 C CNN 1820 | F 3 "~" H 2850 4750 50 0001 C CNN 1821 | 1 2850 4750 1822 | 1 0 0 1 1823 | $EndComp 1824 | $Comp 1825 | L Device:R_Small R17 1826 | U 1 1 5F8B2DA8 1827 | P 3000 2300 1828 | F 0 "R17" H 3059 2346 50 0000 L CNN 1829 | F 1 "5.11k" H 3059 2255 50 0000 L CNN 1830 | F 2 "Resistor_SMD:R_0402_1005Metric" H 3000 2300 50 0001 C CNN 1831 | F 3 "~" H 3000 2300 50 0001 C CNN 1832 | 1 3000 2300 1833 | 1 0 0 -1 1834 | $EndComp 1835 | $Comp 1836 | L Device:R_Small R16 1837 | U 1 1 5F8B3645 1838 | P 2900 2300 1839 | F 0 "R16" H 2959 2346 50 0000 L CNN 1840 | F 1 "5.11k" H 2959 2255 50 0000 L CNN 1841 | F 2 "Resistor_SMD:R_0402_1005Metric" H 2900 2300 50 0001 C CNN 1842 | F 3 "~" H 2900 2300 50 0001 C CNN 1843 | 1 2900 2300 1844 | -1 0 0 -1 1845 | $EndComp 1846 | Wire Wire Line 1847 | 2900 2200 2900 1700 1848 | Wire Wire Line 1849 | 2900 1700 2250 1700 1850 | Wire Wire Line 1851 | 2250 1600 3000 1600 1852 | Wire Wire Line 1853 | 3000 1600 3000 2200 1854 | Wire Wire Line 1855 | 2900 2400 2900 2450 1856 | Wire Wire Line 1857 | 2250 1900 2350 1900 1858 | Wire Wire Line 1859 | 2350 1900 2350 2000 1860 | Wire Wire Line 1861 | 2350 2000 2250 2000 1862 | Wire Wire Line 1863 | 2250 2100 2350 2100 1864 | Wire Wire Line 1865 | 2350 2100 2350 2200 1866 | Wire Wire Line 1867 | 2350 2200 2250 2200 1868 | Wire Wire Line 1869 | 2350 2100 2700 2100 1870 | Connection ~ 2350 2100 1871 | Wire Wire Line 1872 | 2350 2000 2700 2000 1873 | Connection ~ 2350 2000 1874 | Text Label 2700 2000 2 50 ~ 0 1875 | USB_D_N 1876 | Text Label 2700 2100 2 50 ~ 0 1877 | USB_D_P 1878 | $Comp 1879 | L power:GND #PWR075 1880 | U 1 1 5F90F464 1881 | P 2950 2500 1882 | F 0 "#PWR075" H 2950 2250 50 0001 C CNN 1883 | F 1 "GND" H 2955 2327 50 0000 C CNN 1884 | F 2 "" H 2950 2500 50 0001 C CNN 1885 | F 3 "" H 2950 2500 50 0001 C CNN 1886 | 1 2950 2500 1887 | 1 0 0 -1 1888 | $EndComp 1889 | Wire Wire Line 1890 | 2950 2450 3000 2450 1891 | Connection ~ 2950 2450 1892 | Wire Wire Line 1893 | 2950 2450 2950 2500 1894 | Wire Wire Line 1895 | 3000 2450 3000 2400 1896 | Wire Wire Line 1897 | 2900 2450 2950 2450 1898 | $Comp 1899 | L Power_Protection:PRTR5V0U2X D4 1900 | U 1 1 5FA62646 1901 | P 4150 2600 1902 | F 0 "D4" H 3850 3000 50 0000 L CNN 1903 | F 1 "PRTR5V0U2X" H 4250 2200 50 0000 L CNN 1904 | F 2 "Package_TO_SOT_SMD_local:SOT-143" H 4210 2600 50 0001 C CNN 1905 | F 3 "https://assets.nexperia.com/documents/data-sheet/PRTR5V0U2X.pdf" H 4210 2600 50 0001 C CNN 1906 | 1 4150 2600 1907 | 1 0 0 -1 1908 | $EndComp 1909 | $Comp 1910 | L power:GND #PWR077 1911 | U 1 1 5FA7BF46 1912 | P 4150 3150 1913 | F 0 "#PWR077" H 4150 2900 50 0001 C CNN 1914 | F 1 "GND" H 4155 2977 50 0000 C CNN 1915 | F 2 "" H 4150 3150 50 0001 C CNN 1916 | F 3 "" H 4150 3150 50 0001 C CNN 1917 | 1 4150 3150 1918 | 1 0 0 -1 1919 | $EndComp 1920 | Wire Wire Line 1921 | 4150 3150 4150 3100 1922 | Wire Wire Line 1923 | 4650 2600 5000 2600 1924 | Text Label 5000 2600 2 50 ~ 0 1925 | USB_D_N 1926 | Wire Wire Line 1927 | 3650 2600 3300 2600 1928 | Text Label 3300 2600 0 50 ~ 0 1929 | USB_D_P 1930 | $Comp 1931 | L Device:R_Small R15 1932 | U 1 1 5F6E711A 1933 | P 6100 1900 1934 | F 0 "R15" H 6159 1946 50 0000 L CNN 1935 | F 1 "10k" H 6159 1855 50 0000 L CNN 1936 | F 2 "Resistor_SMD:R_0402_1005Metric" H 6100 1900 50 0001 C CNN 1937 | F 3 "~" H 6100 1900 50 0001 C CNN 1938 | 1 6100 1900 1939 | -1 0 0 -1 1940 | $EndComp 1941 | Wire Wire Line 1942 | 6350 2100 6100 2100 1943 | Wire Wire Line 1944 | 6100 2100 6100 2000 1945 | Wire Wire Line 1946 | 6100 1800 6100 1700 1947 | $Comp 1948 | L power:+3V3 #PWR069 1949 | U 1 1 5F71BA5C 1950 | P 6100 1700 1951 | F 0 "#PWR069" H 6100 1550 50 0001 C CNN 1952 | F 1 "+3V3" H 6115 1873 50 0000 C CNN 1953 | F 2 "" H 6100 1700 50 0001 C CNN 1954 | F 3 "" H 6100 1700 50 0001 C CNN 1955 | 1 6100 1700 1956 | 1 0 0 -1 1957 | $EndComp 1958 | $Comp 1959 | L Device:R_Small R19 1960 | U 1 1 5F71C089 1961 | P 5800 3200 1962 | F 0 "R19" H 5859 3246 50 0000 L CNN 1963 | F 1 "47.5k" H 5859 3155 50 0000 L CNN 1964 | F 2 "Resistor_SMD:R_0402_1005Metric" H 5800 3200 50 0001 C CNN 1965 | F 3 "~" H 5800 3200 50 0001 C CNN 1966 | 1 5800 3200 1967 | -1 0 0 -1 1968 | $EndComp 1969 | $Comp 1970 | L Device:R_Small R18 1971 | U 1 1 5F71C8E8 1972 | P 5600 3000 1973 | F 0 "R18" V 5800 2950 50 0000 L CNN 1974 | F 1 "22.1k" V 5700 2900 50 0000 L CNN 1975 | F 2 "Resistor_SMD:R_0402_1005Metric" H 5600 3000 50 0001 C CNN 1976 | F 3 "~" H 5600 3000 50 0001 C CNN 1977 | 1 5600 3000 1978 | 0 1 -1 0 1979 | $EndComp 1980 | Wire Wire Line 1981 | 5800 3100 5800 3000 1982 | Wire Wire Line 1983 | 5800 3000 5700 3000 1984 | Wire Wire Line 1985 | 5800 3300 5800 3350 1986 | Wire Wire Line 1987 | 5500 3000 5400 3000 1988 | Wire Wire Line 1989 | 5400 3000 5400 2950 1990 | $Comp 1991 | L power:GND #PWR076 1992 | U 1 1 5F7B74B1 1993 | P 5800 3350 1994 | F 0 "#PWR076" H 5800 3100 50 0001 C CNN 1995 | F 1 "GND" H 5805 3177 50 0000 C CNN 1996 | F 2 "" H 5800 3350 50 0001 C CNN 1997 | F 3 "" H 5800 3350 50 0001 C CNN 1998 | 1 5800 3350 1999 | 1 0 0 -1 2000 | $EndComp 2001 | Wire Wire Line 2002 | 6350 3100 6000 3100 2003 | Wire Wire Line 2004 | 6350 3200 6000 3200 2005 | Text Label 6000 3200 0 50 ~ 0 2006 | USB_D_N 2007 | Text Label 6000 3100 0 50 ~ 0 2008 | USB_D_P 2009 | Wire Wire Line 2010 | 5800 3000 6350 3000 2011 | Connection ~ 5800 3000 2012 | $Comp 2013 | L power:GND #PWR080 2014 | U 1 1 5F83B960 2015 | P 7000 3700 2016 | F 0 "#PWR080" H 7000 3450 50 0001 C CNN 2017 | F 1 "GND" H 7005 3527 50 0000 C CNN 2018 | F 2 "" H 7000 3700 50 0001 C CNN 2019 | F 3 "" H 7000 3700 50 0001 C CNN 2020 | 1 7000 3700 2021 | 1 0 0 -1 2022 | $EndComp 2023 | Wire Wire Line 2024 | 7000 3700 7000 3650 2025 | $Comp 2026 | L Device:C_Small C26 2027 | U 1 1 5F8E11C1 2028 | P 7300 1450 2029 | F 0 "C26" V 7200 1400 50 0000 R CNN 2030 | F 1 "100nF" V 7200 1700 50 0000 R CNN 2031 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 7300 1450 50 0001 C CNN 2032 | F 3 "~" H 7300 1450 50 0001 C CNN 2033 | 1 7300 1450 2034 | -1 0 0 1 2035 | $EndComp 2036 | $Comp 2037 | L Device:C_Small C27 2038 | U 1 1 5F8E11C7 2039 | P 7500 1450 2040 | F 0 "C27" V 7400 1400 50 0000 R CNN 2041 | F 1 "4.7uF" V 7400 1700 50 0000 R CNN 2042 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 7500 1450 50 0001 C CNN 2043 | F 3 "~" H 7500 1450 50 0001 C CNN 2044 | 1 7500 1450 2045 | -1 0 0 1 2046 | $EndComp 2047 | Wire Wire Line 2048 | 7300 1350 7300 1300 2049 | Wire Wire Line 2050 | 7500 1350 7500 1300 2051 | Wire Wire Line 2052 | 7300 1600 7300 1550 2053 | Wire Wire Line 2054 | 7500 1600 7500 1550 2055 | $Comp 2056 | L power:GND #PWR060 2057 | U 1 1 5F9882ED 2058 | P 7300 1600 2059 | F 0 "#PWR060" H 7300 1350 50 0001 C CNN 2060 | F 1 "GND" H 7305 1427 50 0000 C CNN 2061 | F 2 "" H 7300 1600 50 0001 C CNN 2062 | F 3 "" H 7300 1600 50 0001 C CNN 2063 | 1 7300 1600 2064 | 1 0 0 -1 2065 | $EndComp 2066 | $Comp 2067 | L power:GND #PWR068 2068 | U 1 1 5F98868A 2069 | P 7500 1600 2070 | F 0 "#PWR068" H 7500 1350 50 0001 C CNN 2071 | F 1 "GND" H 7505 1427 50 0000 C CNN 2072 | F 2 "" H 7500 1600 50 0001 C CNN 2073 | F 3 "" H 7500 1600 50 0001 C CNN 2074 | 1 7500 1600 2075 | 1 0 0 -1 2076 | $EndComp 2077 | Wire Wire Line 2078 | 11750 2400 11150 2400 2079 | Text Label 11700 2600 2 50 ~ 0 2080 | RXD0 2081 | Text Label 11750 2400 2 50 ~ 0 2082 | TXD0 2083 | $Comp 2084 | L Device:LED_Small D6 2085 | U 1 1 5FBB13D7 2086 | P 8450 3000 2087 | F 0 "D6" V 8500 2925 50 0000 R CNN 2088 | F 1 "DNP" V 8400 2925 50 0000 R CNN 2089 | F 2 "LED_SMD:LED_0603_1608Metric_Castellated" V 8450 3000 50 0001 C CNN 2090 | F 3 "~" V 8450 3000 50 0001 C CNN 2091 | 1 8450 3000 2092 | 0 -1 -1 0 2093 | $EndComp 2094 | $Comp 2095 | L Device:LED_Small D5 2096 | U 1 1 5FBB2FF2 2097 | P 8250 3000 2098 | F 0 "D5" V 8300 3200 50 0000 R CNN 2099 | F 1 "DNP" V 8200 3200 50 0000 R CNN 2100 | F 2 "LED_SMD:LED_0603_1608Metric_Castellated" V 8250 3000 50 0001 C CNN 2101 | F 3 "~" V 8250 3000 50 0001 C CNN 2102 | 1 8250 3000 2103 | 0 -1 -1 0 2104 | $EndComp 2105 | Wire Wire Line 2106 | 8250 3100 8250 3200 2107 | Wire Wire Line 2108 | 8250 3200 7550 3200 2109 | Wire Wire Line 2110 | 7550 3300 8450 3300 2111 | Wire Wire Line 2112 | 8450 3300 8450 3100 2113 | $Comp 2114 | L Device:R_Small R20 2115 | U 1 1 5FBECCAC 2116 | P 8250 2750 2117 | F 0 "R20" H 8309 2796 50 0000 L CNN 2118 | F 1 "DNP" H 8309 2705 50 0000 L CNN 2119 | F 2 "Resistor_SMD:R_0402_1005Metric" H 8250 2750 50 0001 C CNN 2120 | F 3 "~" H 8250 2750 50 0001 C CNN 2121 | 1 8250 2750 2122 | -1 0 0 -1 2123 | $EndComp 2124 | $Comp 2125 | L Device:R_Small R21 2126 | U 1 1 5FBED5DE 2127 | P 8450 2750 2128 | F 0 "R21" H 8509 2796 50 0000 L CNN 2129 | F 1 "DNP" H 8509 2705 50 0000 L CNN 2130 | F 2 "Resistor_SMD:R_0402_1005Metric" H 8450 2750 50 0001 C CNN 2131 | F 3 "~" H 8450 2750 50 0001 C CNN 2132 | 1 8450 2750 2133 | 1 0 0 -1 2134 | $EndComp 2135 | Wire Wire Line 2136 | 8250 2900 8250 2850 2137 | Wire Wire Line 2138 | 8450 2900 8450 2850 2139 | Wire Wire Line 2140 | 8250 2650 8250 2600 2141 | Wire Wire Line 2142 | 8450 2600 8450 2650 2143 | Text Label 7650 3300 0 30 ~ 0 2144 | ~TXT~_LED 2145 | Text Label 7650 3200 0 30 ~ 0 2146 | ~RXT~_LED 2147 | Wire Notes Line 2148 | 750 750 750 10250 2149 | Wire Notes Line 2150 | 750 3750 5250 3750 2151 | Wire Notes Line 2152 | 5250 750 5250 5750 2153 | Wire Notes Line 2154 | 8750 750 8750 10250 2155 | Wire Notes Line 2156 | 750 750 15750 750 2157 | Wire Notes Line 2158 | 8750 7750 14750 7750 2159 | $Comp 2160 | L Device:Q_NPN_BEC Q4 2161 | U 1 1 603EE277 2162 | P 6900 4750 2163 | F 0 "Q4" H 7091 4796 50 0000 L CNN 2164 | F 1 "BC817" H 7091 4705 50 0000 L CNN 2165 | F 2 "Package_TO_SOT_SMD:SOT-23" H 7100 4850 50 0001 C CNN 2166 | F 3 "~" H 6900 4750 50 0001 C CNN 2167 | 1 6900 4750 2168 | 1 0 0 -1 2169 | $EndComp 2170 | $Comp 2171 | L Device:Q_NPN_BEC Q5 2172 | U 1 1 603EF134 2173 | P 6900 5300 2174 | F 0 "Q5" H 7091 5254 50 0000 L CNN 2175 | F 1 "BC817" H 7091 5345 50 0000 L CNN 2176 | F 2 "Package_TO_SOT_SMD:SOT-23" H 7100 5400 50 0001 C CNN 2177 | F 3 "~" H 6900 5300 50 0001 C CNN 2178 | 1 6900 5300 2179 | 1 0 0 1 2180 | $EndComp 2181 | $Comp 2182 | L Device:R_Small R23 2183 | U 1 1 603EFD6B 2184 | P 6550 4750 2185 | F 0 "R23" V 6750 4700 50 0000 L CNN 2186 | F 1 "10k" V 6650 4650 50 0000 L CNN 2187 | F 2 "Resistor_SMD:R_0402_1005Metric" H 6550 4750 50 0001 C CNN 2188 | F 3 "~" H 6550 4750 50 0001 C CNN 2189 | 1 6550 4750 2190 | 0 -1 -1 0 2191 | $EndComp 2192 | $Comp 2193 | L Device:R_Small R24 2194 | U 1 1 603F0483 2195 | P 6550 5300 2196 | F 0 "R24" V 6750 5250 50 0000 L CNN 2197 | F 1 "10k" V 6650 5200 50 0000 L CNN 2198 | F 2 "Resistor_SMD:R_0402_1005Metric" H 6550 5300 50 0001 C CNN 2199 | F 3 "~" H 6550 5300 50 0001 C CNN 2200 | 1 6550 5300 2201 | 0 -1 -1 0 2202 | $EndComp 2203 | Wire Wire Line 2204 | 6650 5300 6700 5300 2205 | Wire Wire Line 2206 | 6650 4750 6700 4750 2207 | Wire Wire Line 2208 | 7000 4950 7000 5000 2209 | Wire Wire Line 2210 | 7000 5100 7000 5050 2211 | Wire Wire Line 2212 | 7000 5050 6400 5050 2213 | Wire Wire Line 2214 | 6400 4750 6450 4750 2215 | Wire Wire Line 2216 | 6400 4750 6000 4750 2217 | Connection ~ 6400 4750 2218 | Wire Wire Line 2219 | 7000 5500 7000 5600 2220 | Wire Wire Line 2221 | 7000 5600 7450 5600 2222 | Wire Wire Line 2223 | 7000 4550 7000 4450 2224 | Wire Wire Line 2225 | 7000 4450 7450 4450 2226 | Text Label 7450 4450 2 50 ~ 0 2227 | EN 2228 | Wire Wire Line 2229 | 6400 5050 6400 4750 2230 | Wire Wire Line 2231 | 6350 5300 6000 5300 2232 | Wire Wire Line 2233 | 6350 5300 6450 5300 2234 | Connection ~ 6350 5300 2235 | Wire Wire Line 2236 | 7000 5000 6350 5000 2237 | Wire Wire Line 2238 | 6350 5000 6350 5300 2239 | Text Label 7450 5600 2 50 ~ 0 2240 | BOOT 2241 | Text Label 6000 5300 0 50 ~ 0 2242 | ~RTS 2243 | Text Label 6000 4750 0 50 ~ 0 2244 | ~DTR 2245 | Wire Notes Line 2246 | 5250 4250 8750 4250 2247 | Wire Wire Line 2248 | 9700 2300 9500 2300 2249 | Connection ~ 9700 2300 2250 | Wire Wire Line 2251 | 9700 2100 9700 2300 2252 | Wire Wire Line 2253 | 9700 2400 9700 2300 2254 | Wire Wire Line 2255 | 9550 2400 9700 2400 2256 | Text Label 6700 4750 0 30 ~ 0 2257 | Q4_B 2258 | Text Label 6700 5300 0 30 ~ 0 2259 | Q5_B 2260 | Text Notes 4700 1000 0 100 ~ 0 2261 | USB 2262 | Text Notes 11750 1000 0 100 ~ 0 2263 | Controller 2264 | Text Notes 14450 1000 0 100 ~ 0 2265 | Accelerometer 2266 | Text Notes 14000 6000 0 100 ~ 0 2267 | Buzzer 2268 | Text Notes 12100 6000 0 100 ~ 0 2269 | LED's 2270 | Text Notes 7850 6000 0 100 ~ 0 2271 | Ethernet 2272 | Text Notes 8650 4450 2 100 ~ 0 2273 | Auto-Reset 2274 | Text Notes 4550 4000 0 100 ~ 0 2275 | Power 2276 | $Comp 2277 | L Device:C_Small C28 2278 | U 1 1 6098E0AB 2279 | P 9700 2550 2280 | F 0 "C28" H 9608 2504 50 0000 R CNN 2281 | F 1 "10uF" H 9608 2595 50 0000 R CNN 2282 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 9700 2550 50 0001 C CNN 2283 | F 3 "~" H 9700 2550 50 0001 C CNN 2284 | 1 9700 2550 2285 | 1 0 0 1 2286 | $EndComp 2287 | Wire Wire Line 2288 | 9700 2650 9700 2700 2289 | $Comp 2290 | L power:GND #PWR02 2291 | U 1 1 5F367DD7 2292 | P 9050 2450 2293 | F 0 "#PWR02" H 9050 2200 50 0001 C CNN 2294 | F 1 "GND" H 9055 2277 50 0000 C CNN 2295 | F 2 "" H 9050 2450 50 0001 C CNN 2296 | F 3 "" H 9050 2450 50 0001 C CNN 2297 | 1 9050 2450 2298 | 1 0 0 -1 2299 | $EndComp 2300 | $Comp 2301 | L power:GND #PWR071 2302 | U 1 1 609D9B5F 2303 | P 9700 2700 2304 | F 0 "#PWR071" H 9700 2450 50 0001 C CNN 2305 | F 1 "GND" H 9705 2527 50 0000 C CNN 2306 | F 2 "" H 9700 2700 50 0001 C CNN 2307 | F 3 "" H 9700 2700 50 0001 C CNN 2308 | 1 9700 2700 2309 | 1 0 0 -1 2310 | $EndComp 2311 | Wire Wire Line 2312 | 9700 2450 9700 2400 2313 | Connection ~ 9700 2400 2314 | $Comp 2315 | L Device:LED_Small D7 2316 | U 1 1 60A95ED7 2317 | P 2300 4850 2318 | F 0 "D7" V 2350 5050 50 0000 R CNN 2319 | F 1 "DNP" V 2250 5050 50 0000 R CNN 2320 | F 2 "LED_SMD:LED_0603_1608Metric_Castellated" V 2300 4850 50 0001 C CNN 2321 | F 3 "~" V 2300 4850 50 0001 C CNN 2322 | 1 2300 4850 2323 | 0 -1 -1 0 2324 | $EndComp 2325 | $Comp 2326 | L Device:R_Small R26 2327 | U 1 1 60A95EDD 2328 | P 2300 4600 2329 | F 0 "R26" H 2359 4646 50 0000 L CNN 2330 | F 1 "DNP" H 2359 4555 50 0000 L CNN 2331 | F 2 "Resistor_SMD:R_0402_1005Metric" H 2300 4600 50 0001 C CNN 2332 | F 3 "~" H 2300 4600 50 0001 C CNN 2333 | 1 2300 4600 2334 | -1 0 0 -1 2335 | $EndComp 2336 | Wire Wire Line 2337 | 2300 4750 2300 4700 2338 | $Comp 2339 | L power:GND #PWR074 2340 | U 1 1 60ABB9FC 2341 | P 2300 5000 2342 | F 0 "#PWR074" H 2300 4750 50 0001 C CNN 2343 | F 1 "GND" H 2305 4827 50 0000 C CNN 2344 | F 2 "" H 2300 5000 50 0001 C CNN 2345 | F 3 "" H 2300 5000 50 0001 C CNN 2346 | 1 2300 5000 2347 | 1 0 0 -1 2348 | $EndComp 2349 | Wire Wire Line 2350 | 2300 4950 2300 5000 2351 | Text Notes 8200 1000 0 100 ~ 0 2352 | Serial\n 2353 | Text Label 12950 3750 0 50 ~ 0 2354 | H_CS 2355 | Wire Wire Line 2356 | 15000 4000 15000 3800 2357 | $Comp 2358 | L power:GND #PWR043 2359 | U 1 1 5F471CEB 2360 | P 15000 4300 2361 | F 0 "#PWR043" H 15000 4050 50 0001 C CNN 2362 | F 1 "GND" H 15005 4127 50 0000 C CNN 2363 | F 2 "" H 15000 4300 50 0001 C CNN 2364 | F 3 "" H 15000 4300 50 0001 C CNN 2365 | 1 15000 4300 2366 | 1 0 0 -1 2367 | $EndComp 2368 | Wire Wire Line 2369 | 15000 4200 15000 4300 2370 | $Comp 2371 | L Device:C_Small C20 2372 | U 1 1 5F470053 2373 | P 15000 4100 2374 | F 0 "C20" H 15092 4146 50 0000 L CNN 2375 | F 1 "100nF" H 15092 4055 50 0000 L CNN 2376 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 15000 4100 50 0001 C CNN 2377 | F 3 "~" H 15000 4100 50 0001 C CNN 2378 | 1 15000 4100 2379 | 1 0 0 -1 2380 | $EndComp 2381 | $Comp 2382 | L power:+3V3 #PWR072 2383 | U 1 1 5F7F0AEB 2384 | P 13200 3400 2385 | F 0 "#PWR072" H 13200 3250 50 0001 C CNN 2386 | F 1 "+3V3" H 13215 3573 50 0000 C CNN 2387 | F 2 "" H 13200 3400 50 0001 C CNN 2388 | F 3 "" H 13200 3400 50 0001 C CNN 2389 | 1 13200 3400 2390 | -1 0 0 -1 2391 | $EndComp 2392 | $Comp 2393 | L Device:R_Small R25 2394 | U 1 1 5F7F0AF1 2395 | P 13200 3550 2396 | F 0 "R25" H 13259 3596 50 0000 L CNN 2397 | F 1 "10k" H 13259 3505 50 0000 L CNN 2398 | F 2 "Resistor_SMD:R_0402_1005Metric" H 13200 3550 50 0001 C CNN 2399 | F 3 "~" H 13200 3550 50 0001 C CNN 2400 | 1 13200 3550 2401 | -1 0 0 -1 2402 | $EndComp 2403 | Wire Wire Line 2404 | 13200 3450 13200 3400 2405 | Wire Wire Line 2406 | 13200 3650 13200 3750 2407 | $Comp 2408 | L Device:C_Small C3 2409 | U 1 1 5F9505FF 2410 | P 13450 2050 2411 | F 0 "C3" H 13150 2100 50 0000 L CNN 2412 | F 1 "1uF" H 13150 2000 50 0000 L CNN 2413 | F 2 "Capacitor_SMD:C_0603_1608Metric" H 13450 2050 50 0001 C CNN 2414 | F 3 "~" H 13450 2050 50 0001 C CNN 2415 | 1 13450 2050 2416 | 1 0 0 -1 2417 | $EndComp 2418 | Wire Wire Line 2419 | 13450 2500 13450 2150 2420 | $Comp 2421 | L Device:C_Small C5 2422 | U 1 1 5F950613 2423 | P 13650 2050 2424 | F 0 "C5" H 13750 2100 50 0000 L CNN 2425 | F 1 "100nF" H 13750 2000 50 0000 L CNN 2426 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 13650 2050 50 0001 C CNN 2427 | F 3 "~" H 13650 2050 50 0001 C CNN 2428 | 1 13650 2050 2429 | 1 0 0 -1 2430 | $EndComp 2431 | Wire Wire Line 2432 | 13650 2500 13650 2150 2433 | Wire Notes Line 2434 | 750 5750 15750 5750 2435 | Wire Wire Line 2436 | 12950 2500 12950 2700 2437 | Wire Wire Line 2438 | 13450 2700 13450 2800 2439 | Wire Wire Line 2440 | 13650 2800 13650 2700 2441 | Connection ~ 13450 2700 2442 | Wire Wire Line 2443 | 13450 2700 13650 2700 2444 | Connection ~ 13650 2700 2445 | Wire Wire Line 2446 | 13650 2700 14000 2700 2447 | Wire Wire Line 2448 | 12950 2700 13450 2700 2449 | Wire Wire Line 2450 | 14100 3350 14100 1850 2451 | Wire Wire Line 2452 | 14100 1850 13650 1850 2453 | Wire Wire Line 2454 | 13650 1850 13650 1950 2455 | Wire Wire Line 2456 | 13650 1850 13450 1850 2457 | Wire Wire Line 2458 | 13450 1850 13450 1950 2459 | Connection ~ 13650 1850 2460 | Wire Wire Line 2461 | 12950 1850 12950 1800 2462 | $Comp 2463 | L power:+3V3 #PWR023 2464 | U 1 1 5FBEC962 2465 | P 12950 1800 2466 | F 0 "#PWR023" H 12950 1650 50 0001 C CNN 2467 | F 1 "+3V3" H 12965 1973 50 0000 C CNN 2468 | F 2 "" H 12950 1800 50 0001 C CNN 2469 | F 3 "" H 12950 1800 50 0001 C CNN 2470 | 1 12950 1800 2471 | 1 0 0 -1 2472 | $EndComp 2473 | $Comp 2474 | L Device:Ferrite_Bead_Small FB1 2475 | U 1 1 5F79B5B3 2476 | P 3050 1400 2477 | F 0 "FB1" V 2900 1400 50 0000 C CNN 2478 | F 1 "MPZ2012S601ATD25" V 2904 1400 50 0001 C CNN 2479 | F 2 "Inductor_SMD:L_0805_2012Metric" V 2980 1400 50 0001 C CNN 2480 | F 3 "~" H 3050 1400 50 0001 C CNN 2481 | 1 3050 1400 2482 | 0 1 1 0 2483 | $EndComp 2484 | $Comp 2485 | L Device:Ferrite_Bead_Small FB2 2486 | U 1 1 5FC14664 2487 | P 13200 1850 2488 | F 0 "FB2" V 13050 1850 50 0000 C CNN 2489 | F 1 "MPZ2012S601ATD25" V 13054 1850 50 0001 C CNN 2490 | F 2 "Inductor_SMD:L_0805_2012Metric" V 13130 1850 50 0001 C CNN 2491 | F 3 "~" H 13200 1850 50 0001 C CNN 2492 | 1 13200 1850 2493 | 0 1 1 0 2494 | $EndComp 2495 | Wire Wire Line 2496 | 13300 1850 13450 1850 2497 | Connection ~ 13450 1850 2498 | Wire Wire Line 2499 | 12950 1850 13100 1850 2500 | Wire Wire Line 2501 | 2700 6600 2800 6600 2502 | Wire Wire Line 2503 | 6850 1750 6850 1800 2504 | Wire Wire Line 2505 | 6950 1800 6950 1750 2506 | $Comp 2507 | L power:GND #PWR014 2508 | U 1 1 5FBC28C5 2509 | P 3350 1750 2510 | F 0 "#PWR014" H 3350 1500 50 0001 C CNN 2511 | F 1 "GND" H 3355 1577 50 0000 C CNN 2512 | F 2 "" H 3350 1750 50 0001 C CNN 2513 | F 3 "" H 3350 1750 50 0001 C CNN 2514 | 1 3350 1750 2515 | 1 0 0 -1 2516 | $EndComp 2517 | Wire Wire Line 2518 | 3350 1700 3350 1750 2519 | $Comp 2520 | L Device:C_Small C2 2521 | U 1 1 5FBC28CC 2522 | P 3350 1600 2523 | F 0 "C2" H 3259 1554 50 0000 R CNN 2524 | F 1 "10uF" H 3259 1645 50 0000 R CNN 2525 | F 2 "Capacitor_SMD:C_0805_2012Metric" H 3350 1600 50 0001 C CNN 2526 | F 3 "~" H 3350 1600 50 0001 C CNN 2527 | 1 3350 1600 2528 | -1 0 0 1 2529 | $EndComp 2530 | Wire Notes Line 2531 | 12750 750 12750 7750 2532 | Text Label 6050 9200 0 30 ~ 0 2533 | RBIAS 2534 | $Comp 2535 | L Device:Q_NPN_BEC Q1 2536 | U 1 1 604FB173 2537 | P 1750 7600 2538 | F 0 "Q1" H 1941 7646 50 0000 L CNN 2539 | F 1 "BC817" H 1941 7555 50 0000 L CNN 2540 | F 2 "Package_TO_SOT_SMD:SOT-23" H 1950 7700 50 0001 C CNN 2541 | F 3 "~" H 1750 7600 50 0001 C CNN 2542 | 1 1750 7600 2543 | 1 0 0 -1 2544 | $EndComp 2545 | $Comp 2546 | L Device:R_Small R27 2547 | U 1 1 60528688 2548 | P 1400 7600 2549 | F 0 "R27" V 1200 7550 50 0000 L CNN 2550 | F 1 "10k" V 1300 7550 50 0000 L CNN 2551 | F 2 "Resistor_SMD:R_0402_1005Metric" H 1400 7600 50 0001 C CNN 2552 | F 3 "~" H 1400 7600 50 0001 C CNN 2553 | 1 1400 7600 2554 | 0 1 1 0 2555 | $EndComp 2556 | Wire Wire Line 2557 | 1500 7600 1550 7600 2558 | $Comp 2559 | L Device:Q_NPN_BEC Q3 2560 | U 1 1 60583804 2561 | P 13750 7000 2562 | F 0 "Q3" H 13941 7046 50 0000 L CNN 2563 | F 1 "BC817" H 13941 6955 50 0000 L CNN 2564 | F 2 "Package_TO_SOT_SMD:SOT-23" H 13950 7100 50 0001 C CNN 2565 | F 3 "~" H 13750 7000 50 0001 C CNN 2566 | 1 13750 7000 2567 | 1 0 0 -1 2568 | $EndComp 2569 | Text Label 2300 4750 2 30 ~ 0 2570 | PWR_LED 2571 | Text Label 5400 6800 0 50 ~ 0 2572 | VDD1_2A 2573 | Wire Wire Line 2574 | 3350 1500 3350 1400 2575 | Wire Wire Line 2576 | 2300 4450 2300 4500 2577 | $Comp 2578 | L power:+5V #PWR073 2579 | U 1 1 5FB9709D 2580 | P 2300 4450 2581 | F 0 "#PWR073" H 2300 4300 50 0001 C CNN 2582 | F 1 "+5V" H 2315 4623 50 0000 C CNN 2583 | F 2 "" H 2300 4450 50 0001 C CNN 2584 | F 3 "" H 2300 4450 50 0001 C CNN 2585 | 1 2300 4450 2586 | 1 0 0 -1 2587 | $EndComp 2588 | Wire Notes Line 2589 | 14750 9750 8750 9750 2590 | Wire Notes Line 2591 | 14750 5750 14750 9750 2592 | Text Notes 13650 8000 0 100 ~ 0 2593 | External IO 2594 | $Comp 2595 | L Connector_Generic:Conn_01x04 J1 2596 | U 1 1 60B4A2A1 2597 | P 11150 8850 2598 | F 0 "J1" H 11300 8750 50 0000 C CNN 2599 | F 1 "I2C" H 11300 8850 50 0000 C CNN 2600 | F 2 "Connector_JST:JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical" H 11150 8850 50 0001 C CNN 2601 | F 3 "~" H 11150 8850 50 0001 C CNN 2602 | 1 11150 8850 2603 | 1 0 0 -1 2604 | $EndComp 2605 | $Comp 2606 | L Connector_Generic:Conn_01x05 J4 2607 | U 1 1 60B4C464 2608 | P 12900 8700 2609 | F 0 "J4" H 12980 8742 50 0000 L CNN 2610 | F 1 "GPS" H 12980 8651 50 0000 L CNN 2611 | F 2 "Connector_JST:JST_PH_B5B-PH-K_1x05_P2.00mm_Vertical" H 12900 8700 50 0001 C CNN 2612 | F 3 "~" H 12900 8700 50 0001 C CNN 2613 | 1 12900 8700 2614 | 1 0 0 -1 2615 | $EndComp 2616 | Wire Wire Line 2617 | 10950 8750 10850 8750 2618 | $Comp 2619 | L power:GND #PWR085 2620 | U 1 1 60C1E889 2621 | P 10650 8550 2622 | F 0 "#PWR085" H 10650 8300 50 0001 C CNN 2623 | F 1 "GND" H 10655 8377 50 0000 C CNN 2624 | F 2 "" H 10650 8550 50 0001 C CNN 2625 | F 3 "" H 10650 8550 50 0001 C CNN 2626 | 1 10650 8550 2627 | -1 0 0 -1 2628 | $EndComp 2629 | Wire Wire Line 2630 | 10500 8850 10500 8600 2631 | $Comp 2632 | L power:+3V3 #PWR083 2633 | U 1 1 60C735FC 2634 | P 10500 8600 2635 | F 0 "#PWR083" H 10500 8450 50 0001 C CNN 2636 | F 1 "+3V3" H 10515 8773 50 0000 C CNN 2637 | F 2 "" H 10500 8600 50 0001 C CNN 2638 | F 3 "" H 10500 8600 50 0001 C CNN 2639 | 1 10500 8600 2640 | -1 0 0 -1 2641 | $EndComp 2642 | Wire Wire Line 2643 | 12700 8800 12200 8800 2644 | Wire Wire Line 2645 | 12200 8800 12200 8900 2646 | $Comp 2647 | L power:GND #PWR086 2648 | U 1 1 60D2045B 2649 | P 12200 8900 2650 | F 0 "#PWR086" H 12200 8650 50 0001 C CNN 2651 | F 1 "GND" H 12205 8727 50 0000 C CNN 2652 | F 2 "" H 12200 8900 50 0001 C CNN 2653 | F 3 "" H 12200 8900 50 0001 C CNN 2654 | 1 12200 8900 2655 | 1 0 0 -1 2656 | $EndComp 2657 | Wire Wire Line 2658 | 12600 9100 12400 9100 2659 | Wire Wire Line 2660 | 12400 9100 12400 9050 2661 | $Comp 2662 | L power:+3V3 #PWR084 2663 | U 1 1 60D20463 2664 | P 12400 9050 2665 | F 0 "#PWR084" H 12400 8900 50 0001 C CNN 2666 | F 1 "+3V3" H 12415 9223 50 0000 C CNN 2667 | F 2 "" H 12400 9050 50 0001 C CNN 2668 | F 3 "" H 12400 9050 50 0001 C CNN 2669 | 1 12400 9050 2670 | 1 0 0 -1 2671 | $EndComp 2672 | Wire Wire Line 2673 | 11150 4300 11750 4300 2674 | Wire Wire Line 2675 | 11150 4500 11750 4500 2676 | Wire Wire Line 2677 | 11150 4400 11750 4400 2678 | Text Label 11750 4300 2 50 ~ 0 2679 | GPS_RXD 2680 | Text Label 11750 4400 2 50 ~ 0 2681 | GPS_TXD 2682 | Text Label 11750 4500 2 50 ~ 0 2683 | GPS_PPS 2684 | $Comp 2685 | L power:+5V #PWR06 2686 | U 1 1 60F32F05 2687 | P 3350 1350 2688 | F 0 "#PWR06" H 3350 1200 50 0001 C CNN 2689 | F 1 "+5V" H 3365 1523 50 0000 C CNN 2690 | F 2 "" H 3350 1350 50 0001 C CNN 2691 | F 3 "" H 3350 1350 50 0001 C CNN 2692 | 1 3350 1350 2693 | 1 0 0 -1 2694 | $EndComp 2695 | Wire Wire Line 2696 | 3150 1400 3350 1400 2697 | Wire Wire Line 2698 | 3350 1400 3350 1350 2699 | Connection ~ 3350 1400 2700 | $Comp 2701 | L power:+5V #PWR024 2702 | U 1 1 60FB36A5 2703 | P 4150 2050 2704 | F 0 "#PWR024" H 4150 1900 50 0001 C CNN 2705 | F 1 "+5V" H 4165 2223 50 0000 C CNN 2706 | F 2 "" H 4150 2050 50 0001 C CNN 2707 | F 3 "" H 4150 2050 50 0001 C CNN 2708 | 1 4150 2050 2709 | 1 0 0 -1 2710 | $EndComp 2711 | Wire Wire Line 2712 | 4150 2100 4150 2050 2713 | Wire Wire Line 2714 | 6850 1750 6950 1750 2715 | Connection ~ 6950 1750 2716 | Wire Wire Line 2717 | 6950 1750 6950 1700 2718 | $Comp 2719 | L power:+5V #PWR059 2720 | U 1 1 61125F5E 2721 | P 5400 2950 2722 | F 0 "#PWR059" H 5400 2800 50 0001 C CNN 2723 | F 1 "+5V" H 5415 3123 50 0000 C CNN 2724 | F 2 "" H 5400 2950 50 0001 C CNN 2725 | F 3 "" H 5400 2950 50 0001 C CNN 2726 | 1 5400 2950 2727 | 1 0 0 -1 2728 | $EndComp 2729 | Wire Wire Line 2730 | 8250 2600 8350 2600 2731 | $Comp 2732 | L power:+3V3 #PWR070 2733 | U 1 1 611783B3 2734 | P 8350 2550 2735 | F 0 "#PWR070" H 8350 2400 50 0001 C CNN 2736 | F 1 "+3V3" H 8365 2723 50 0000 C CNN 2737 | F 2 "" H 8350 2550 50 0001 C CNN 2738 | F 3 "" H 8350 2550 50 0001 C CNN 2739 | 1 8350 2550 2740 | 1 0 0 -1 2741 | $EndComp 2742 | Wire Wire Line 2743 | 8350 2600 8350 2550 2744 | Connection ~ 8350 2600 2745 | Wire Wire Line 2746 | 8350 2600 8450 2600 2747 | $Comp 2748 | L power:+3V3 #PWR08 2749 | U 1 1 611A22C9 2750 | P 6950 1700 2751 | F 0 "#PWR08" H 6950 1550 50 0001 C CNN 2752 | F 1 "+3V3" H 6965 1873 50 0000 C CNN 2753 | F 2 "" H 6950 1700 50 0001 C CNN 2754 | F 3 "" H 6950 1700 50 0001 C CNN 2755 | 1 6950 1700 2756 | 1 0 0 -1 2757 | $EndComp 2758 | $Comp 2759 | L power:+3V3 #PWR03 2760 | U 1 1 611CBD04 2761 | P 7300 1300 2762 | F 0 "#PWR03" H 7300 1150 50 0001 C CNN 2763 | F 1 "+3V3" H 7315 1473 50 0000 C CNN 2764 | F 2 "" H 7300 1300 50 0001 C CNN 2765 | F 3 "" H 7300 1300 50 0001 C CNN 2766 | 1 7300 1300 2767 | 1 0 0 -1 2768 | $EndComp 2769 | $Comp 2770 | L power:+3V3 #PWR05 2771 | U 1 1 611F4F54 2772 | P 7500 1300 2773 | F 0 "#PWR05" H 7500 1150 50 0001 C CNN 2774 | F 1 "+3V3" H 7515 1473 50 0000 C CNN 2775 | F 2 "" H 7500 1300 50 0001 C CNN 2776 | F 3 "" H 7500 1300 50 0001 C CNN 2777 | 1 7500 1300 2778 | 1 0 0 -1 2779 | $EndComp 2780 | $Comp 2781 | L Device:C_Small C31 2782 | U 1 1 6127291F 2783 | P 1750 9550 2784 | F 0 "C31" H 1659 9504 50 0000 R CNN 2785 | F 1 "4.7nF" H 1659 9595 50 0000 R CNN 2786 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 1750 9550 50 0001 C CNN 2787 | F 3 "~" H 1750 9550 50 0001 C CNN 2788 | 1 1750 9550 2789 | 1 0 0 1 2790 | $EndComp 2791 | $Comp 2792 | L Device:R_Small R28 2793 | U 1 1 61272925 2794 | P 1950 9550 2795 | F 0 "R28" H 2009 9596 50 0000 L CNN 2796 | F 1 "1M" H 2009 9505 50 0000 L CNN 2797 | F 2 "Resistor_SMD:R_0402_1005Metric" H 1950 9550 50 0001 C CNN 2798 | F 3 "~" H 1950 9550 50 0001 C CNN 2799 | 1 1950 9550 2800 | 1 0 0 -1 2801 | $EndComp 2802 | Wire Wire Line 2803 | 1950 9650 1950 9700 2804 | Wire Wire Line 2805 | 1950 9700 1850 9700 2806 | Wire Wire Line 2807 | 1750 9700 1750 9650 2808 | Wire Wire Line 2809 | 1850 9700 1850 9750 2810 | Connection ~ 1850 9700 2811 | Wire Wire Line 2812 | 1850 9700 1750 9700 2813 | Wire Wire Line 2814 | 1850 9350 1850 9400 2815 | Wire Wire Line 2816 | 1850 9400 1950 9400 2817 | Wire Wire Line 2818 | 1950 9400 1950 9450 2819 | Wire Wire Line 2820 | 1750 9450 1750 9400 2821 | Wire Wire Line 2822 | 1750 9400 1850 9400 2823 | Connection ~ 1850 9400 2824 | $Comp 2825 | L power:GND #PWR087 2826 | U 1 1 61272937 2827 | P 1850 9750 2828 | F 0 "#PWR087" H 1850 9500 50 0001 C CNN 2829 | F 1 "GND" H 1855 9577 50 0000 C CNN 2830 | F 2 "" H 1850 9750 50 0001 C CNN 2831 | F 3 "" H 1850 9750 50 0001 C CNN 2832 | 1 1850 9750 2833 | 1 0 0 -1 2834 | $EndComp 2835 | Text Label 1350 2950 0 30 ~ 0 2836 | USB_SH 2837 | Text Label 6200 2100 0 30 ~ 0 2838 | ~RST 2839 | Wire Notes Line 2840 | 10850 4450 10800 4450 2841 | Wire Notes Line 2842 | 10800 4450 10800 4650 2843 | Wire Notes Line 2844 | 10800 4650 10850 4650 2845 | Text Notes 10750 4550 2 39 ~ 0 2846 | Input only IO's 2847 | Wire Wire Line 2848 | 14100 4450 14100 4900 2849 | $Comp 2850 | L Device:Ferrite_Bead_Small FB3 2851 | U 1 1 5FA388C2 2852 | P 14200 4650 2853 | F 0 "FB3" V 14050 4650 50 0000 C CNN 2854 | F 1 "MPZ2012S601ATD25" V 14054 4650 50 0001 C CNN 2855 | F 2 "Inductor_SMD:L_0805_2012Metric" V 14130 4650 50 0001 C CNN 2856 | F 3 "~" H 14200 4650 50 0001 C CNN 2857 | 1 14200 4650 2858 | -1 0 0 1 2859 | $EndComp 2860 | Wire Wire Line 2861 | 14200 4750 14200 4900 2862 | Wire Wire Line 2863 | 14200 4900 14100 4900 2864 | Connection ~ 14100 4900 2865 | Wire Wire Line 2866 | 14100 4900 14100 5000 2867 | Text Label 14200 4500 0 30 ~ 0 2868 | ACCEL_VSS 2869 | Text Label 14450 3350 1 50 ~ 0 2870 | ACCEL_VSS 2871 | Text Label 13450 2500 1 50 ~ 0 2872 | ACCEL_VSS 2873 | Text Label 13650 2500 1 50 ~ 0 2874 | ACCEL_VSS 2875 | Connection ~ 13200 3750 2876 | Wire Wire Line 2877 | 13200 3750 12950 3750 2878 | Wire Wire Line 2879 | 13200 3750 13600 3750 2880 | Wire Wire Line 2881 | 14000 2700 14000 3350 2882 | Wire Wire Line 2883 | 10500 8850 10950 8850 2884 | Wire Wire Line 2885 | 10850 8500 10650 8500 2886 | Wire Wire Line 2887 | 10650 8500 10650 8550 2888 | Wire Wire Line 2889 | 10850 8500 10850 8750 2890 | Wire Wire Line 2891 | 12600 9100 12600 8900 2892 | Wire Wire Line 2893 | 12600 8900 12700 8900 2894 | Text Notes 10400 9300 0 50 ~ 0 2895 | Grove equivalent pinout 2896 | Text Notes 11000 8250 0 50 ~ 0 2897 | I2C Breakout 2898 | Text Notes 12100 8250 0 50 ~ 0 2899 | UART + PPS Breakout (for GPS) 2900 | Text Notes 12200 9300 0 50 ~ 0 2901 | neo-6m equivalent pinout 2902 | Wire Notes Line 2903 | 11950 8100 13400 8100 2904 | Wire Notes Line 2905 | 13400 8100 13400 9450 2906 | Wire Notes Line 2907 | 13400 9450 11950 9450 2908 | Wire Notes Line 2909 | 11950 9450 11950 8100 2910 | Wire Notes Line 2911 | 11600 9450 10150 9450 2912 | Wire Notes Line 2913 | 10150 9450 10150 8100 2914 | Wire Notes Line 2915 | 10150 8100 11600 8100 2916 | Wire Notes Line 2917 | 11600 8100 11600 9450 2918 | Wire Wire Line 2919 | 14700 3900 15400 3900 2920 | Text Label 15600 3900 2 50 ~ 0 2921 | INT2 2922 | Connection ~ 15400 3900 2923 | Wire Wire Line 2924 | 15400 3900 15600 3900 2925 | $Comp 2926 | L power:+3V3 #PWR033 2927 | U 1 1 5FD67A97 2928 | P 15400 3500 2929 | F 0 "#PWR033" H 15400 3350 50 0001 C CNN 2930 | F 1 "+3V3" H 15415 3673 50 0000 C CNN 2931 | F 2 "" H 15400 3500 50 0001 C CNN 2932 | F 3 "" H 15400 3500 50 0001 C CNN 2933 | 1 15400 3500 2934 | 1 0 0 -1 2935 | $EndComp 2936 | Wire Wire Line 2937 | 15400 3500 15400 3600 2938 | Wire Wire Line 2939 | 15400 3800 15400 3900 2940 | $Comp 2941 | L Device:R_Small R29 2942 | U 1 1 5FD67A9F 2943 | P 15400 3700 2944 | F 0 "R29" H 15459 3746 50 0000 L CNN 2945 | F 1 "10k" H 15459 3655 50 0000 L CNN 2946 | F 2 "Resistor_SMD:R_0402_1005Metric" H 15400 3700 50 0001 C CNN 2947 | F 3 "~" H 15400 3700 50 0001 C CNN 2948 | 1 15400 3700 2949 | -1 0 0 -1 2950 | $EndComp 2951 | Wire Wire Line 2952 | 15400 4000 15400 3900 2953 | $Comp 2954 | L power:GND #PWR035 2955 | U 1 1 5FD67AA6 2956 | P 15400 4300 2957 | F 0 "#PWR035" H 15400 4050 50 0001 C CNN 2958 | F 1 "GND" H 15405 4127 50 0000 C CNN 2959 | F 2 "" H 15400 4300 50 0001 C CNN 2960 | F 3 "" H 15400 4300 50 0001 C CNN 2961 | 1 15400 4300 2962 | 1 0 0 -1 2963 | $EndComp 2964 | Wire Wire Line 2965 | 15400 4200 15400 4300 2966 | $Comp 2967 | L Device:C_Small C32 2968 | U 1 1 5FD67AAD 2969 | P 15400 4100 2970 | F 0 "C32" H 15492 4146 50 0000 L CNN 2971 | F 1 "100nF" H 15492 4055 50 0000 L CNN 2972 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 15400 4100 50 0001 C CNN 2973 | F 3 "~" H 15400 4100 50 0001 C CNN 2974 | 1 15400 4100 2975 | 1 0 0 -1 2976 | $EndComp 2977 | Wire Wire Line 2978 | 11150 4600 11550 4600 2979 | Text Label 11550 4600 2 50 ~ 0 2980 | INT1 2981 | Text Label 11750 3300 2 50 ~ 0 2982 | NEOPIX_DI 2983 | Wire Wire Line 2984 | 11150 3300 11750 3300 2985 | Text Label 11950 2700 2 50 ~ 0 2986 | INT2 2987 | Wire Wire Line 2988 | 11150 2700 11950 2700 2989 | Entry Wire Line 2990 | 11750 4300 11850 4400 2991 | Entry Wire Line 2992 | 11750 4400 11850 4500 2993 | Entry Wire Line 2994 | 11750 4500 11850 4600 2995 | Wire Wire Line 2996 | 12700 8600 12300 8600 2997 | Wire Wire Line 2998 | 12700 8500 12300 8500 2999 | Wire Wire Line 3000 | 12700 8700 12300 8700 3001 | Text Label 12300 8600 0 50 ~ 0 3002 | GPS_RXD 3003 | Text Label 12300 8700 0 50 ~ 0 3004 | GPS_TXD 3005 | Text Label 12300 8500 0 50 ~ 0 3006 | GPS_PPS 3007 | Entry Wire Line 3008 | 12300 8700 12200 8600 3009 | Entry Wire Line 3010 | 12300 8600 12200 8500 3011 | Entry Wire Line 3012 | 12300 8500 12200 8400 3013 | Entry Wire Line 3014 | 9500 3600 9400 3700 3015 | Entry Wire Line 3016 | 9500 3500 9400 3600 3017 | Text Label 9500 3500 0 50 ~ 0 3018 | I2C_SDA 3019 | Text Label 9500 3600 0 50 ~ 0 3020 | I2C_SCL 3021 | Wire Wire Line 3022 | 9950 3600 9500 3600 3023 | Wire Wire Line 3024 | 9950 3500 9500 3500 3025 | Wire Wire Line 3026 | 10950 8950 10500 8950 3027 | Wire Wire Line 3028 | 10950 9050 10500 9050 3029 | Text Label 10500 9050 0 50 ~ 0 3030 | I2C_SCL 3031 | Text Label 10500 8950 0 50 ~ 0 3032 | I2C_SDA 3033 | Entry Wire Line 3034 | 10500 9050 10400 8950 3035 | Entry Wire Line 3036 | 10500 8950 10400 8850 3037 | Text Label 11950 2900 2 50 ~ 0 3038 | H_MISO 3039 | Text Label 11950 3000 2 50 ~ 0 3040 | H_MOSI 3041 | Text Label 11950 3100 2 50 ~ 0 3042 | H_CLK 3043 | Text Label 11950 3200 2 50 ~ 0 3044 | H_CS 3045 | Wire Wire Line 3046 | 11150 3200 11950 3200 3047 | Wire Wire Line 3048 | 11150 3100 11950 3100 3049 | Wire Wire Line 3050 | 11150 3000 11950 3000 3051 | Wire Wire Line 3052 | 11150 2900 11950 2900 3053 | Entry Wire Line 3054 | 12350 4200 12450 4300 3055 | Entry Wire Line 3056 | 12350 4100 12450 4200 3057 | Entry Wire Line 3058 | 12350 4000 12450 4100 3059 | Entry Wire Line 3060 | 12350 3900 12450 4000 3061 | Entry Wire Line 3062 | 12350 3800 12450 3900 3063 | Entry Wire Line 3064 | 12350 3700 12450 3800 3065 | Entry Wire Line 3066 | 12350 3600 12450 3700 3067 | Entry Wire Line 3068 | 12350 3500 12450 3600 3069 | Entry Wire Line 3070 | 12350 3400 12450 3500 3071 | Entry Wire Line 3072 | 12350 2500 12450 2600 3073 | Text Label 12350 4000 2 50 ~ 0 3074 | EMAC_RXD0(RMII) 3075 | Wire Wire Line 3076 | 11150 4000 12350 4000 3077 | Text Label 12350 4200 2 50 ~ 0 3078 | EMAC_RX_CRS_DV 3079 | Wire Wire Line 3080 | 11150 4200 12350 4200 3081 | Text Label 12350 4100 2 50 ~ 0 3082 | EMAC_RXD1(RMII) 3083 | Text Label 12350 3900 2 50 ~ 0 3084 | MDC(RMII) 3085 | Text Label 12350 3800 2 50 ~ 0 3086 | EMAC_TXD1(RMII) 3087 | Text Label 12350 3700 2 50 ~ 0 3088 | EMAC_TX_EN(RMII) 3089 | Text Label 12350 3600 2 50 ~ 0 3090 | EMAC_TXD0(RMII) 3091 | Text Label 12350 3500 2 50 ~ 0 3092 | MDIO(RMII) 3093 | Text Label 12350 3400 2 50 ~ 0 3094 | EMAC_CLKO_180 3095 | Wire Wire Line 3096 | 11150 4100 12350 4100 3097 | Wire Wire Line 3098 | 11150 3900 12350 3900 3099 | Wire Wire Line 3100 | 11150 3800 12350 3800 3101 | Wire Wire Line 3102 | 11150 3700 12350 3700 3103 | Wire Wire Line 3104 | 11150 3600 12350 3600 3105 | Wire Wire Line 3106 | 11150 3500 12350 3500 3107 | Wire Wire Line 3108 | 11150 3400 12350 3400 3109 | Text Label 12350 2500 2 50 ~ 0 3110 | PHY_PWR 3111 | Wire Wire Line 3112 | 11150 2500 12350 2500 3113 | Text Notes 12550 4500 1 50 ~ 0 3114 | Ethernet Bus 3115 | Text Notes 9350 3550 3 50 ~ 0 3116 | I2C Expansion 3117 | Text Notes 11950 4450 3 50 ~ 0 3118 | GPS Expansion 3119 | Entry Wire Line 3120 | 11950 2700 12050 2600 3121 | Entry Wire Line 3122 | 11950 3000 12050 2900 3123 | Entry Wire Line 3124 | 12050 3100 11950 3200 3125 | Entry Wire Line 3126 | 11950 3100 12050 3000 3127 | Text Notes 12150 3100 1 50 ~ 0 3128 | Accelerometer 3129 | Text Notes 11750 4700 3 50 ~ 0 3130 | Accelerometer 3131 | Entry Wire Line 3132 | 11650 4700 11550 4600 3133 | Wire Bus Line 3134 | 11650 5250 11650 4700 3135 | Wire Wire Line 3136 | 11700 2600 11750 2550 3137 | Wire Wire Line 3138 | 11150 2600 11700 2600 3139 | Text Notes 11950 2400 1 50 ~ 0 3140 | UART 3141 | Entry Wire Line 3142 | 11750 2400 11850 2300 3143 | Entry Wire Line 3144 | 11750 2550 11850 2450 3145 | Entry Wire Line 3146 | 11950 2900 12050 2800 3147 | $Comp 3148 | L Device:C_Small C33 3149 | U 1 1 5F8C5079 3150 | P 14650 2900 3151 | F 0 "C33" V 14600 2950 50 0000 L CNN 3152 | F 1 "100nF" H 14900 2800 50 0000 L CNN 3153 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 14650 2900 50 0001 C CNN 3154 | F 3 "~" H 14650 2900 50 0001 C CNN 3155 | 1 14650 2900 3156 | 1 0 0 -1 3157 | $EndComp 3158 | Wire Wire Line 3159 | 14650 2800 14650 2600 3160 | Wire Wire Line 3161 | 14650 2600 14450 2600 3162 | Connection ~ 14450 2600 3163 | Wire Wire Line 3164 | 14200 2500 14850 2500 3165 | Wire Wire Line 3166 | 14650 3000 14650 3350 3167 | $Comp 3168 | L Device:R_Small R30 3169 | U 1 1 5FA0C501 3170 | P 1200 7800 3171 | F 0 "R30" V 1000 7750 50 0000 L CNN 3172 | F 1 "10k" V 1100 7750 50 0000 L CNN 3173 | F 2 "Resistor_SMD:R_0402_1005Metric" H 1200 7800 50 0001 C CNN 3174 | F 3 "~" H 1200 7800 50 0001 C CNN 3175 | 1 1200 7800 3176 | -1 0 0 1 3177 | $EndComp 3178 | Wire Wire Line 3179 | 1200 7700 1200 7600 3180 | Connection ~ 1200 7600 3181 | Wire Wire Line 3182 | 1200 7600 850 7600 3183 | Wire Wire Line 3184 | 1200 7900 1200 7950 3185 | $Comp 3186 | L power:GND #PWR040 3187 | U 1 1 5FA66B41 3188 | P 1200 7950 3189 | F 0 "#PWR040" H 1200 7700 50 0001 C CNN 3190 | F 1 "GND" H 1205 7777 50 0000 C CNN 3191 | F 2 "" H 1200 7950 50 0001 C CNN 3192 | F 3 "" H 1200 7950 50 0001 C CNN 3193 | 1 1200 7950 3194 | 1 0 0 -1 3195 | $EndComp 3196 | Wire Wire Line 3197 | 14450 3000 14450 3350 3198 | Text Label 14650 3350 1 50 ~ 0 3199 | ACCEL_VSS 3200 | $Comp 3201 | L Interface_USB:CP2102N-A01-GQFN24 U6 3202 | U 1 1 5F815647 3203 | P 6950 2700 3204 | F 0 "U6" H 6550 3550 50 0000 C CNN 3205 | F 1 "CP2102N-A01-GQFN24" H 7600 1850 50 0000 C CNN 3206 | F 2 "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm" H 7400 1900 50 0001 L CNN 3207 | F 3 "https://www.silabs.com/documents/public/data-sheets/cp2102n-datasheet.pdf" H 7000 1650 50 0001 C CNN 3208 | 1 6950 2700 3209 | 1 0 0 -1 3210 | $EndComp 3211 | Wire Wire Line 3212 | 6950 3600 6950 3650 3213 | Wire Wire Line 3214 | 6950 3650 7000 3650 3215 | Wire Wire Line 3216 | 7000 3650 7050 3650 3217 | Wire Wire Line 3218 | 7050 3650 7050 3600 3219 | Connection ~ 7000 3650 3220 | Wire Wire Line 3221 | 6350 2700 6100 2700 3222 | Wire Wire Line 3223 | 6100 2700 6100 2650 3224 | $Comp 3225 | L power:+3V3 #PWR0101 3226 | U 1 1 5FB0170C 3227 | P 6100 2650 3228 | F 0 "#PWR0101" H 6100 2500 50 0001 C CNN 3229 | F 1 "+3V3" H 6115 2823 50 0000 C CNN 3230 | F 2 "" H 6100 2650 50 0001 C CNN 3231 | F 3 "" H 6100 2650 50 0001 C CNN 3232 | 1 6100 2650 3233 | 1 0 0 -1 3234 | $EndComp 3235 | NoConn ~ 6350 2400 3236 | NoConn ~ 6350 2500 3237 | Wire Wire Line 3238 | 7550 2700 7850 2700 3239 | Text Label 7850 2700 2 50 ~ 0 3240 | ~DTR 3241 | Wire Wire Line 3242 | 7550 2300 7850 2300 3243 | Text Label 7850 2300 2 50 ~ 0 3244 | ~RTS 3245 | Wire Wire Line 3246 | 7550 2400 7850 2400 3247 | Text Label 7850 2400 2 50 ~ 0 3248 | TXD0 3249 | Text Label 7850 2500 2 50 ~ 0 3250 | RXD0 3251 | Wire Wire Line 3252 | 7850 2500 7550 2500 3253 | Entry Wire Line 3254 | 7850 2500 7950 2400 3255 | Entry Wire Line 3256 | 7850 2400 7950 2300 3257 | Text Notes 8050 2400 1 50 ~ 0 3258 | UART 3259 | NoConn ~ 7550 2100 3260 | NoConn ~ 7550 2200 3261 | NoConn ~ 7550 2600 3262 | NoConn ~ 7550 2800 3263 | NoConn ~ 7550 3000 3264 | NoConn ~ 7550 3100 3265 | $Comp 3266 | L Regulator_Linear:MIC5219-3.3YM5 U4 3267 | U 1 1 6009FAAB 3268 | P 3250 4550 3269 | F 0 "U4" H 3250 4892 50 0000 C CNN 3270 | F 1 "MIC5219-3.3YM5" H 3250 4801 50 0000 C CNN 3271 | F 2 "Package_TO_SOT_SMD:SOT-23-5" H 3250 4875 50 0001 C CNN 3272 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/MIC5219-500mA-Peak-Output-LDO-Regulator-DS20006021A.pdf" H 3250 4550 50 0001 C CNN 3273 | 1 3250 4550 3274 | 1 0 0 -1 3275 | $EndComp 3276 | Wire Wire Line 3277 | 4000 4450 4000 4650 3278 | $Comp 3279 | L Device:C_Small C34 3280 | U 1 1 60141CCE 3281 | P 3800 4750 3282 | F 0 "C34" H 3892 4796 50 0000 L CNN 3283 | F 1 "470pF" H 3892 4705 50 0000 L CNN 3284 | F 2 "Capacitor_SMD:C_0402_1005Metric" H 3800 4750 50 0001 C CNN 3285 | F 3 "~" H 3800 4750 50 0001 C CNN 3286 | 1 3800 4750 3287 | -1 0 0 -1 3288 | $EndComp 3289 | Wire Wire Line 3290 | 3800 4850 3800 4950 3291 | $Comp 3292 | L power:GND #PWR088 3293 | U 1 1 60141CD5 3294 | P 3800 4950 3295 | F 0 "#PWR088" H 3800 4700 50 0001 C CNN 3296 | F 1 "GND" H 3805 4777 50 0000 C CNN 3297 | F 2 "" H 3800 4950 50 0001 C CNN 3298 | F 3 "" H 3800 4950 50 0001 C CNN 3299 | 1 3800 4950 3300 | -1 0 0 -1 3301 | $EndComp 3302 | Wire Wire Line 3303 | 3800 4650 3800 4550 3304 | Wire Wire Line 3305 | 3550 4550 3800 4550 3306 | Wire Wire Line 3307 | 3550 4450 4000 4450 3308 | Wire Wire Line 3309 | 4000 4350 4000 4450 3310 | Connection ~ 4000 4450 3311 | Wire Wire Line 3312 | 2950 4450 2850 4450 3313 | Wire Wire Line 3314 | 2850 4450 2850 4350 3315 | Connection ~ 2850 4450 3316 | Wire Wire Line 3317 | 8200 1650 8500 1650 3318 | Text Label 8500 1650 2 50 ~ 0 3319 | TXD0 3320 | Text Label 8500 1550 2 50 ~ 0 3321 | RXD0 3322 | Wire Wire Line 3323 | 8500 1550 8200 1550 3324 | $Comp 3325 | L power:GND #PWR089 3326 | U 1 1 60375E7D 3327 | P 8500 1800 3328 | F 0 "#PWR089" H 8500 1550 50 0001 C CNN 3329 | F 1 "GND" H 8505 1627 50 0000 C CNN 3330 | F 2 "" H 8500 1800 50 0001 C CNN 3331 | F 3 "" H 8500 1800 50 0001 C CNN 3332 | 1 8500 1800 3333 | 1 0 0 -1 3334 | $EndComp 3335 | Wire Wire Line 3336 | 8500 1800 8500 1750 3337 | Wire Wire Line 3338 | 8500 1750 8200 1750 3339 | $Comp 3340 | L Connector_Generic:Conn_01x03 J5 3341 | U 1 1 60408528 3342 | P 8000 1650 3343 | F 0 "J5" H 7918 1967 50 0000 C CNN 3344 | F 1 "DNP" H 7918 1876 50 0000 C CNN 3345 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 8000 1650 50 0001 C CNN 3346 | F 3 "~" H 8000 1650 50 0001 C CNN 3347 | 1 8000 1650 3348 | -1 0 0 -1 3349 | $EndComp 3350 | Text Label 2900 2100 1 30 ~ 0 3351 | CC2 3352 | Text Label 3000 2100 1 30 ~ 0 3353 | CC1 3354 | Text Label 8250 2900 2 30 ~ 0 3355 | D5_K 3356 | Text Label 8450 2900 2 30 ~ 0 3357 | D6_K 3358 | Text Label 14100 1950 3 50 ~ 0 3359 | ACCEL_VSUPPLY 3360 | Text Label 3800 4550 2 30 ~ 0 3361 | LDO_BYP 3362 | $Comp 3363 | L power:+3V3 #PWR090 3364 | U 1 1 6065316F 3365 | P 9150 4450 3366 | F 0 "#PWR090" H 9150 4300 50 0001 C CNN 3367 | F 1 "+3V3" H 9165 4623 50 0000 C CNN 3368 | F 2 "" H 9150 4450 50 0001 C CNN 3369 | F 3 "" H 9150 4450 50 0001 C CNN 3370 | 1 9150 4450 3371 | -1 0 0 -1 3372 | $EndComp 3373 | $Comp 3374 | L Device:R_Small R31 3375 | U 1 1 60653175 3376 | P 9150 4600 3377 | F 0 "R31" H 9209 4646 50 0000 L CNN 3378 | F 1 "1k" H 9209 4555 50 0000 L CNN 3379 | F 2 "Resistor_SMD:R_0402_1005Metric" H 9150 4600 50 0001 C CNN 3380 | F 3 "~" H 9150 4600 50 0001 C CNN 3381 | 1 9150 4600 3382 | -1 0 0 -1 3383 | $EndComp 3384 | Wire Wire Line 3385 | 9150 4500 9150 4450 3386 | $Comp 3387 | L power:+3V3 #PWR091 3388 | U 1 1 60687BB3 3389 | P 9350 4450 3390 | F 0 "#PWR091" H 9350 4300 50 0001 C CNN 3391 | F 1 "+3V3" H 9365 4623 50 0000 C CNN 3392 | F 2 "" H 9350 4450 50 0001 C CNN 3393 | F 3 "" H 9350 4450 50 0001 C CNN 3394 | 1 9350 4450 3395 | 1 0 0 -1 3396 | $EndComp 3397 | $Comp 3398 | L Device:R_Small R32 3399 | U 1 1 60687BB9 3400 | P 9350 4600 3401 | F 0 "R32" H 9409 4646 50 0000 L CNN 3402 | F 1 "1k" H 9409 4555 50 0000 L CNN 3403 | F 2 "Resistor_SMD:R_0402_1005Metric" H 9350 4600 50 0001 C CNN 3404 | F 3 "~" H 9350 4600 50 0001 C CNN 3405 | 1 9350 4600 3406 | 1 0 0 -1 3407 | $EndComp 3408 | Wire Wire Line 3409 | 9350 4500 9350 4450 3410 | Text Label 9150 5000 1 50 ~ 0 3411 | I2C_SDA 3412 | Text Label 9350 5000 1 50 ~ 0 3413 | I2C_SCL 3414 | Wire Wire Line 3415 | 9350 4700 9350 5000 3416 | Wire Wire Line 3417 | 9150 4700 9150 5000 3418 | Wire Wire Line 3419 | 7200 8900 6750 8900 3420 | Text Label 6750 8900 0 50 ~ 0 3421 | MDIO(RMII) 3422 | Wire Wire Line 3423 | 7200 8800 6500 8800 3424 | Text Label 6500 8800 0 50 ~ 0 3425 | EMAC_RX_CRS_DV 3426 | Wire Wire Line 3427 | 7200 8700 6500 8700 3428 | Text Label 6500 8700 0 50 ~ 0 3429 | EMAC_RXD0(RMII) 3430 | Text Label 6850 8600 0 50 ~ 0 3431 | PHYAD0 3432 | Wire Wire Line 3433 | 6850 8600 7200 8600 3434 | Wire Wire Line 3435 | 7800 7950 7800 8600 3436 | Connection ~ 7700 8250 3437 | Connection ~ 7800 8600 3438 | Wire Wire Line 3439 | 7800 8600 7800 9000 3440 | Text Label 5800 3000 0 30 ~ 0 3441 | VBUS_DETECT 3442 | Wire Wire Line 3443 | 1100 9550 1100 9350 3444 | Text Label 1100 9350 3 50 ~ 0 3445 | KY1 3446 | Wire Wire Line 3447 | 7400 6800 7150 6800 3448 | Connection ~ 7150 6800 3449 | $Comp 3450 | L power:GND #PWR0102 3451 | U 1 1 5FA8A074 3452 | P 1100 9800 3453 | F 0 "#PWR0102" H 1100 9550 50 0001 C CNN 3454 | F 1 "GND" H 1105 9627 50 0000 C CNN 3455 | F 2 "" H 1100 9800 50 0001 C CNN 3456 | F 3 "" H 1100 9800 50 0001 C CNN 3457 | 1 1100 9800 3458 | 1 0 0 -1 3459 | $EndComp 3460 | Wire Wire Line 3461 | 1100 9750 1100 9800 3462 | $Comp 3463 | L Device:R_Small R101 3464 | U 1 1 5FA88174 3465 | P 1100 9650 3466 | F 0 "R101" H 1159 9696 50 0000 L CNN 3467 | F 1 "1k" H 1159 9605 50 0000 L CNN 3468 | F 2 "Resistor_SMD:R_0402_1005Metric" H 1100 9650 50 0001 C CNN 3469 | F 3 "~" H 1100 9650 50 0001 C CNN 3470 | 1 1100 9650 3471 | 1 0 0 -1 3472 | $EndComp 3473 | Text Label 1250 8550 0 50 ~ 0 3474 | KG1 3475 | Wire Wire Line 3476 | 1450 8550 1250 8550 3477 | Wire Wire Line 3478 | 7400 6950 7400 6800 3479 | Text Label 7400 7350 1 50 ~ 0 3480 | AG1 3481 | Wire Wire Line 3482 | 7400 7150 7400 7350 3483 | $Comp 3484 | L Device:R_Small R102 3485 | U 1 1 5FADE3A5 3486 | P 7400 7050 3487 | F 0 "R102" H 7459 7096 50 0000 L CNN 3488 | F 1 "1k" H 7459 7005 50 0000 L CNN 3489 | F 2 "Resistor_SMD:R_0402_1005Metric" H 7400 7050 50 0001 C CNN 3490 | F 3 "~" H 7400 7050 50 0001 C CNN 3491 | 1 7400 7050 3492 | 1 0 0 -1 3493 | $EndComp 3494 | $Comp 3495 | L Device:Speaker_Crystal BZ1 3496 | U 1 1 5FC434D5 3497 | P 14150 6550 3498 | F 0 "BZ1" H 14325 6500 50 0000 L CNN 3499 | F 1 "Piezo Buzzer" H 14325 6455 50 0001 L CNN 3500 | F 2 "Buzzer_Beeper_local:Buzzer_12.2x6.5mm" H 14115 6500 50 0001 C CNN 3501 | F 3 "~" H 14115 6500 50 0001 C CNN 3502 | F 4 "PS1440P02BT" H 14150 6550 50 0001 C CNN "MPN" 3503 | 1 14150 6550 3504 | 1 0 0 -1 3505 | $EndComp 3506 | Wire Wire Line 3507 | 13850 6650 13950 6650 3508 | Text Label 13850 6650 0 30 ~ 0 3509 | BZ- 3510 | Wire Wire Line 3511 | 13950 6550 13850 6550 3512 | Wire Wire Line 3513 | 13850 6550 13850 6400 3514 | Wire Wire Line 3515 | 13850 6750 13850 6650 3516 | Wire Wire Line 3517 | 2350 8850 2850 8850 3518 | Text Label 2450 8850 0 50 ~ 0 3519 | VDD1_2A 3520 | Wire Bus Line 3521 | 7950 2200 7950 2400 3522 | Wire Bus Line 3523 | 11850 2200 11850 2450 3524 | Wire Bus Line 3525 | 10400 8750 10400 8950 3526 | Wire Bus Line 3527 | 9400 3600 9400 4100 3528 | Wire Bus Line 3529 | 11850 4400 11850 5000 3530 | Wire Bus Line 3531 | 12200 8300 12200 8600 3532 | Wire Bus Line 3533 | 12050 2550 12050 3100 3534 | Wire Bus Line 3535 | 12450 2600 12450 4500 3536 | $EndSCHEMATC 3537 | -------------------------------------------------------------------------------- /pcb/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name Sensor_Motion_local)(type Legacy)(uri ${KIPRJMOD}/local/library/Sensor_Motion_local.lib)(options "")(descr "")) 3 | ) 4 | --------------------------------------------------------------------------------