├── .gitignore ├── kicad ├── esp-dmx-shield.pro ├── esp-dmx-shield-cache.lib ├── esp-dmx-shield.bak ├── esp-dmx-shield.sch ├── esp-dmx-shield.net ├── esp-dmx-shield.kicad_pcb └── esp-dmx-shield.kicad_pcb-bak ├── .travis.yml ├── README.md ├── esp-mqtt-dmx.ino └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | .DS_Store 3 | .vscode/ -------------------------------------------------------------------------------- /kicad/esp-dmx-shield.pro: -------------------------------------------------------------------------------- 1 | update=22/05/2015 07:44:53 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [pcbnew] 9 | version=1 10 | LastNetListRead= 11 | UseCmpFile=1 12 | PadDrill=0.600000000000 13 | PadDrillOvalY=0.600000000000 14 | PadSizeH=1.500000000000 15 | PadSizeV=1.500000000000 16 | PcbTextSizeV=1.500000000000 17 | PcbTextSizeH=1.500000000000 18 | PcbTextThickness=0.300000000000 19 | ModuleTextSizeV=1.000000000000 20 | ModuleTextSizeH=1.000000000000 21 | ModuleTextSizeThickness=0.150000000000 22 | SolderMaskClearance=0.000000000000 23 | SolderMaskMinWidth=0.000000000000 24 | DrawSegmentWidth=0.200000000000 25 | BoardOutlineThickness=0.100000000000 26 | ModuleOutlineThickness=0.150000000000 27 | [cvpcb] 28 | version=1 29 | NetIExt=net 30 | [eeschema] 31 | version=1 32 | LibDir= 33 | [eeschema/libraries] 34 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | 2 | language: minimal 3 | 4 | env: 5 | - VER_ARDUINO="1.8.8" VER_ESPBOARD="2.4.2" VER_LIB_PUBSUB="2.7.0" VER_LIB_WEBSOCKETS="2.1.1" 6 | 7 | script: 8 | - wget http://downloads.arduino.cc/arduino-$VER_ARDUINO-linux64.tar.xz -P /tmp 9 | - tar xf /tmp/arduino-$VER_ARDUINO-linux64.tar.xz -C /tmp 10 | - mv /tmp/arduino-$VER_ARDUINO $HOME/ide 11 | - $HOME/ide/arduino --pref "boardsmanager.additional.urls=http://arduino.esp8266.com/stable/package_esp8266com_index.json" --save-prefs 12 | - $HOME/ide/arduino --install-boards esp8266:esp8266:$VER_ESPBOARD 13 | - $HOME/ide/arduino --install-library PubSubClient:$VER_LIB_PUBSUB,WebSockets:$VER_LIB_WEBSOCKETS 14 | - git clone https://github.com/mtongnz/espDMX.git $HOME/Arduino/libraries/espDMX 15 | - $HOME/ide/arduino --board esp8266:esp8266:generic:CpuFrequency=80,ResetMethod=ck,CrystalFreq=40,FlashFreq=40,FlashMode=qio,FlashSize=4M3M,LwIPVariant=v2mss536,Debug=Disabled,DebugLevel=None____,UploadSpeed=115200 --save-prefs 16 | - $HOME/ide/arduino --verify $TRAVIS_BUILD_DIR/esp-mqtt-dmx.ino 17 | 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # esp-mqtt-dmx [![Build Status](https://travis-ci.com/raumzeitlabor/esp-mqtt-dmx.svg?branch=master)](https://travis-ci.com/raumzeitlabor/esp-mqtt-dmx) 2 | 3 | This project is providing a MQTT-to-DMX gateway via an ESP8266 in our Hackerspace. 4 | We used Artnet before but that just spams our network too much so this shall create some MQTT messages which control generic light setups like "fade all to white" or "fade Lamp 1 to red" 5 | 6 | The ESP subscribes to topic "/dmx/push" on our MQTT broker and expects commands which we will describe here. 7 | 8 | status: DRAFT 9 | 10 | License: GPLv3 11 | 12 | ## MQTT-Commands 13 | 14 | supported format of commands to be published to the "/dmx/push" topic: 15 | 16 | |command|parameters|description| 17 | |-------|----------|-----------| 18 | |blackout|none|instantly set all values to 0 thus switching all lamps off| 19 | |fadespeed|speed in miliseconds|this value is used as a "step width" to move from current DMX state to desired DMX state. Default value = 20, values below 20 seem to produce weird effects!| 20 | |fadealltoblack|none|set all desired rgbl values for all light to 0 and fade towards that (darkness)| 21 | |fadealltowhite|none|set all desired rgbl values for all light to 255 and fade towards that ("white")| 22 | |fadealltored|none|set all desired rgbl values for all light to fade towards red| 23 | |fadealltogreen|none|set all desired rgbl values for all light to fade towards green| 24 | |fadealltoblue|none|set all desired rgbl values for all light to fade towards blue| 25 | |cycleallrandom|brightness|set a random value (and optionally a brightness) for all rgbl values for all lights and fade towards that value| 26 | |cyclerandom|light brightness|set a specific light to random rgbl values (and optionally a brightness) and fade towards them (index starts at 0)| 27 | |rgbl|light R G B L|set a specific light to specific values for R G B L (values 0-255)| 28 | |setchannel|channel value|set a specific DMX channel to one specific value (without fading, hard set)| 29 | |discopanic|none|set all lights to a random color strobe (using a special DMX channel/value pair)| 30 | |fadeRGB|none|set all lights to go through a slow cycle of colors (using a special DMX channel/value pair)| 31 | |strobo|speed intensity|activate the strobo (speed and intesity optional 0-255, both 255 if no options provided)| 32 | 33 | ## Compiler config 34 | 35 | We use an ESP-12E Module with 4M Flash-Size and 3M SPIFFS. This is important for in order to be able to do Web-OTA Updates we need the 3M SPIFFS to fit two versions of the Firmware into memory. Using 4M-1M Split will crash the controller during OTA. If using Arduino-IDE set Board to "NodeMCU 1.0 (ESP-12E Module)" and Flash to "4M (3M SPIFFS)" 36 | 37 | At the time of writing (02/2019) the Arduino-Board-Version v4.2 seems to work well. 38 | 39 | ## OTA 40 | 41 | compile with Arduino ide and upload via curl because we don't use mdns announce: 42 | 43 | curl -F "image=@esp-mqtt-dmx.ino.nodemcu.bin" http://172.22.37.112/update 44 | 45 | ## Websocket-Server 46 | 47 | we run a websocket server on port 81 which prints some messages for debugging (because we're lazy and don't want to use the UART all the time). 48 | 49 | ## Credits 50 | 51 | The main libraries/sources of code are: 52 | - espDMX written by Matt (@mtongnz), https://github.com/mtongnz/espDMX 53 | - esp ArtnetNode by Matt (@mtongnz), https://github.com/mtongnz/ESP8266_ArtNetNode_DMX 54 | - ESP8266 core for Arduino, https://github.com/esp8266/Arduino 55 | -------------------------------------------------------------------------------- /kicad/esp-dmx-shield-cache.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # Connector_Conn_01x01_Male 5 | # 6 | DEF Connector_Conn_01x01_Male J 0 40 Y N 1 F N 7 | F0 "J" 0 100 50 H V C CNN 8 | F1 "Connector_Conn_01x01_Male" 0 -100 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 | Connector*:* 13 | $ENDFPLIST 14 | DRAW 15 | S 34 5 0 -5 1 1 6 F 16 | P 2 1 1 6 50 0 34 0 N 17 | X Pin_1 1 200 0 150 L 50 50 1 1 P 18 | ENDDRAW 19 | ENDDEF 20 | # 21 | # Connector_Conn_01x03_Male 22 | # 23 | DEF Connector_Conn_01x03_Male J 0 40 Y N 1 F N 24 | F0 "J" 0 200 50 H V C CNN 25 | F1 "Connector_Conn_01x03_Male" 0 -200 50 H V C CNN 26 | F2 "" 0 0 50 H I C CNN 27 | F3 "" 0 0 50 H I C CNN 28 | $FPLIST 29 | Connector*:*_1x??_* 30 | $ENDFPLIST 31 | DRAW 32 | S 34 -95 0 -105 1 1 6 F 33 | S 34 5 0 -5 1 1 6 F 34 | S 34 105 0 95 1 1 6 F 35 | P 2 1 1 6 50 -100 34 -100 N 36 | P 2 1 1 6 50 0 34 0 N 37 | P 2 1 1 6 50 100 34 100 N 38 | X Pin_1 1 200 100 150 L 50 50 1 1 P 39 | X Pin_2 2 200 0 150 L 50 50 1 1 P 40 | X Pin_3 3 200 -100 150 L 50 50 1 1 P 41 | ENDDRAW 42 | ENDDEF 43 | # 44 | # Device_C 45 | # 46 | DEF Device_C C 0 10 N Y 1 F N 47 | F0 "C" 25 100 50 H V L CNN 48 | F1 "Device_C" 25 -100 50 H V L CNN 49 | F2 "" 38 -150 50 H I C CNN 50 | F3 "" 0 0 50 H I C CNN 51 | $FPLIST 52 | C_* 53 | $ENDFPLIST 54 | DRAW 55 | P 2 0 1 20 -80 -30 80 -30 N 56 | P 2 0 1 20 -80 30 80 30 N 57 | X ~ 1 0 150 110 D 50 50 1 1 P 58 | X ~ 2 0 -150 110 U 50 50 1 1 P 59 | ENDDRAW 60 | ENDDEF 61 | # 62 | # Device_LED 63 | # 64 | DEF Device_LED D 0 40 N N 1 F N 65 | F0 "D" 0 100 50 H V C CNN 66 | F1 "Device_LED" 0 -100 50 H V C CNN 67 | F2 "" 0 0 50 H I C CNN 68 | F3 "" 0 0 50 H I C CNN 69 | $FPLIST 70 | LED* 71 | LED_SMD:* 72 | LED_THT:* 73 | $ENDFPLIST 74 | DRAW 75 | P 2 0 1 8 -50 -50 -50 50 N 76 | P 2 0 1 0 -50 0 50 0 N 77 | P 4 0 1 8 50 -50 50 50 -50 0 50 -50 N 78 | P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N 79 | P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N 80 | X K 1 -150 0 100 R 50 50 1 1 P 81 | X A 2 150 0 100 L 50 50 1 1 P 82 | ENDDRAW 83 | ENDDEF 84 | # 85 | # Device_R 86 | # 87 | DEF Device_R R 0 0 N Y 1 F N 88 | F0 "R" 80 0 50 V V C CNN 89 | F1 "Device_R" 0 0 50 V V C CNN 90 | F2 "" -70 0 50 V I C CNN 91 | F3 "" 0 0 50 H I C CNN 92 | $FPLIST 93 | R_* 94 | $ENDFPLIST 95 | DRAW 96 | S -40 -100 40 100 0 1 10 N 97 | X ~ 1 0 150 50 D 50 50 1 1 P 98 | X ~ 2 0 -150 50 U 50 50 1 1 P 99 | ENDDRAW 100 | ENDDEF 101 | # 102 | # RF_Module_ESP-12E 103 | # 104 | DEF RF_Module_ESP-12E U 0 20 Y Y 1 F N 105 | F0 "U" -500 750 50 H V L CNN 106 | F1 "RF_Module_ESP-12E" 500 750 50 H V R CNN 107 | F2 "RF_Module:ESP-12E" 0 0 50 H I C CNN 108 | F3 "" -350 100 50 H I C CNN 109 | ALIAS ESP-12F 110 | $FPLIST 111 | ESP?12* 112 | $ENDFPLIST 113 | DRAW 114 | S -500 700 500 -600 0 1 10 f 115 | X ~RST 1 -600 600 100 R 50 50 1 1 I 116 | X MISO 10 -600 -100 100 R 50 50 1 1 B 117 | X GPIO9 11 -600 -200 100 R 50 50 1 1 B 118 | X GPIO10 12 -600 -300 100 R 50 50 1 1 B 119 | X MOSI 13 -600 -400 100 R 50 50 1 1 B 120 | X SCLK 14 -600 -500 100 R 50 50 1 1 B 121 | X GND 15 0 -700 100 U 50 50 1 1 W 122 | X GPIO15 16 600 -300 100 L 50 50 1 1 B 123 | X GPIO2 17 600 400 100 L 50 50 1 1 B 124 | X GPIO0 18 600 600 100 L 50 50 1 1 B 125 | X GPIO4 19 600 200 100 L 50 50 1 1 B 126 | X ADC 2 -600 200 100 R 50 50 1 1 I 127 | X GPIO5 20 600 100 100 L 50 50 1 1 B 128 | X GPIO3/RXD 21 600 300 100 L 50 50 1 1 B 129 | X GPIO1/TXD 22 600 500 100 L 50 50 1 1 B 130 | X EN 3 -600 400 100 R 50 50 1 1 I 131 | X GPIO16 4 600 -400 100 L 50 50 1 1 B 132 | X GPIO14 5 600 -200 100 L 50 50 1 1 B 133 | X GPIO12 6 600 0 100 L 50 50 1 1 B 134 | X GPIO13 7 600 -100 100 L 50 50 1 1 B 135 | X VCC 8 0 800 100 D 50 50 1 1 W 136 | X CS0 9 -600 0 100 R 50 50 1 1 I 137 | ENDDRAW 138 | ENDDEF 139 | # 140 | # Regulator_Linear_LD1117S33TR_SOT223 141 | # 142 | DEF Regulator_Linear_LD1117S33TR_SOT223 U 0 10 Y Y 1 F N 143 | F0 "U" -150 125 50 H V C CNN 144 | F1 "Regulator_Linear_LD1117S33TR_SOT223" 0 125 50 H V L CNN 145 | F2 "Package_TO_SOT_SMD:SOT-223-3_TabPin2" 0 200 50 H I C CNN 146 | F3 "" 100 -250 50 H I C CNN 147 | ALIAS AP1117-18 AP1117-25 AP1117-33 AP1117-50 LD1117S33TR_SOT223 LD1117S12TR_SOT223 LD1117S18TR_SOT223 LD1117S25TR_SOT223 LD1117S50TR_SOT223 NCP1117-12_SOT223 NCP1117-1.5_SOT223 NCP1117-1.8_SOT223 NCP1117-2.0_SOT223 NCP1117-2.5_SOT223 NCP1117-2.85_SOT223 NCP1117-3.3_SOT223 NCP1117-5.0_SOT223 AMS1117-1.5 AMS1117-1.8 AMS1117-2.5 AMS1117-2.85 AMS1117-3.3 AMS1117-5.0 148 | $FPLIST 149 | SOT?223*TabPin2* 150 | $ENDFPLIST 151 | DRAW 152 | S -200 -200 200 75 0 1 10 f 153 | X GND 1 0 -300 100 U 50 50 1 1 W 154 | X VO 2 300 0 100 L 50 50 1 1 w 155 | X VI 3 -300 0 100 R 50 50 1 1 W 156 | ENDDRAW 157 | ENDDEF 158 | # 159 | # Switch_SW_SPDT 160 | # 161 | DEF Switch_SW_SPDT SW 0 0 Y N 1 F N 162 | F0 "SW" 0 170 50 H V C CNN 163 | F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN 164 | F2 "" 0 0 50 H I C CNN 165 | F3 "" 0 0 50 H I C CNN 166 | DRAW 167 | C -80 0 20 0 0 0 N 168 | C 80 -100 20 0 0 0 N 169 | C 80 100 20 0 1 0 N 170 | P 2 0 1 0 -60 10 65 90 N 171 | X A 1 200 100 100 L 50 50 1 1 P 172 | X B 2 -200 0 100 R 50 50 1 1 P 173 | X C 3 200 -100 100 L 50 50 1 1 P 174 | ENDDRAW 175 | ENDDEF 176 | # 177 | # power_+3.3V 178 | # 179 | DEF power_+3.3V #PWR 0 0 Y Y 1 F P 180 | F0 "#PWR" 0 -150 50 H I C CNN 181 | F1 "power_+3.3V" 0 140 50 H V C CNN 182 | F2 "" 0 0 50 H I C CNN 183 | F3 "" 0 0 50 H I C CNN 184 | ALIAS +3.3V 185 | DRAW 186 | P 2 0 1 0 -30 50 0 100 N 187 | P 2 0 1 0 0 0 0 100 N 188 | P 2 0 1 0 0 100 30 50 N 189 | X +3V3 1 0 0 0 U 50 50 1 1 W N 190 | ENDDRAW 191 | ENDDEF 192 | # 193 | # power_+5V 194 | # 195 | DEF power_+5V #PWR 0 0 Y Y 1 F P 196 | F0 "#PWR" 0 -150 50 H I C CNN 197 | F1 "power_+5V" 0 140 50 H V C CNN 198 | F2 "" 0 0 50 H I C CNN 199 | F3 "" 0 0 50 H I C CNN 200 | DRAW 201 | P 2 0 1 0 -30 50 0 100 N 202 | P 2 0 1 0 0 0 0 100 N 203 | P 2 0 1 0 0 100 30 50 N 204 | X +5V 1 0 0 0 U 50 50 1 1 W N 205 | ENDDRAW 206 | ENDDEF 207 | # 208 | # power_GND 209 | # 210 | DEF power_GND #PWR 0 0 Y Y 1 F P 211 | F0 "#PWR" 0 -250 50 H I C CNN 212 | F1 "power_GND" 0 -150 50 H V C CNN 213 | F2 "" 0 0 50 H I C CNN 214 | F3 "" 0 0 50 H I C CNN 215 | DRAW 216 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N 217 | X GND 1 0 0 0 D 50 50 1 1 W N 218 | ENDDRAW 219 | ENDDEF 220 | # 221 | #End Library 222 | -------------------------------------------------------------------------------- /kicad/esp-dmx-shield.bak: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | LIBS:esp-dmx-shield-cache 3 | EELAYER 26 0 4 | EELAYER END 5 | $Descr A4 11693 8268 6 | encoding utf-8 7 | Sheet 1 1 8 | Title "" 9 | Date "" 10 | Rev "" 11 | Comp "" 12 | Comment1 "" 13 | Comment2 "" 14 | Comment3 "" 15 | Comment4 "" 16 | $EndDescr 17 | $Comp 18 | L RF_Module:ESP-12E U1 19 | U 1 1 5C4DAD3D 20 | P 4950 2950 21 | F 0 "U1" H 4950 3928 50 0000 C CNN 22 | F 1 "ESP-12E" H 4950 3837 50 0000 C CNN 23 | F 2 "RF_Module:ESP-12E" H 4950 2950 50 0001 C CNN 24 | F 3 "http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf" H 4600 3050 50 0001 C CNN 25 | 1 4950 2950 26 | 1 0 0 -1 27 | $EndComp 28 | $Comp 29 | L power:GND #PWR0101 30 | U 1 1 5C4DAF4E 31 | P 2300 4900 32 | F 0 "#PWR0101" H 2300 4650 50 0001 C CNN 33 | F 1 "GND" H 2305 4727 50 0000 C CNN 34 | F 2 "" H 2300 4900 50 0001 C CNN 35 | F 3 "" H 2300 4900 50 0001 C CNN 36 | 1 2300 4900 37 | 1 0 0 -1 38 | $EndComp 39 | $Comp 40 | L power:+3.3V #PWR0102 41 | U 1 1 5C4DB0AA 42 | P 2300 1650 43 | F 0 "#PWR0102" H 2300 1500 50 0001 C CNN 44 | F 1 "+3.3V" H 2315 1823 50 0000 C CNN 45 | F 2 "" H 2300 1650 50 0001 C CNN 46 | F 3 "" H 2300 1650 50 0001 C CNN 47 | 1 2300 1650 48 | 1 0 0 -1 49 | $EndComp 50 | Wire Wire Line 51 | 2300 4900 2300 4800 52 | Wire Wire Line 53 | 2300 4500 2900 4500 54 | Wire Wire Line 55 | 4950 4500 4950 3650 56 | Connection ~ 4950 4500 57 | $Comp 58 | L Connector:Conn_01x03_Male J1 59 | U 1 1 5C4DB517 60 | P 8000 2150 61 | F 0 "J1" H 7973 2080 50 0000 R CNN 62 | F 1 "Conn_01x03_Male" H 7973 2171 50 0000 R CNN 63 | F 2 "Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels" H 8000 2150 50 0001 C CNN 64 | F 3 "~" H 8000 2150 50 0001 C CNN 65 | 1 8000 2150 66 | -1 0 0 1 67 | $EndComp 68 | Wire Wire Line 69 | 7800 4500 7800 2250 70 | Wire Wire Line 71 | 5550 2450 7000 2450 72 | Wire Wire Line 73 | 7000 2450 7000 2050 74 | Wire Wire Line 75 | 7000 2050 7800 2050 76 | Wire Wire Line 77 | 5550 2650 7100 2650 78 | Wire Wire Line 79 | 7100 2650 7100 2150 80 | Wire Wire Line 81 | 7100 2150 7800 2150 82 | Wire Wire Line 83 | 4950 4500 5700 4500 84 | $Comp 85 | L Device:R R3 86 | U 1 1 5C4DC610 87 | P 5700 3650 88 | F 0 "R3" H 5630 3604 50 0000 R CNN 89 | F 1 "4k7" H 5630 3695 50 0000 R CNN 90 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" V 5630 3650 50 0001 C CNN 91 | F 3 "~" H 5700 3650 50 0001 C CNN 92 | 1 5700 3650 93 | -1 0 0 1 94 | $EndComp 95 | Wire Wire Line 96 | 5700 3800 5700 4500 97 | Connection ~ 5700 4500 98 | Wire Wire Line 99 | 5700 4500 6250 4500 100 | Wire Wire Line 101 | 5550 3250 5700 3250 102 | Wire Wire Line 103 | 5700 3250 5700 3500 104 | $Comp 105 | L Device:C C2 106 | U 1 1 5C4DCDEE 107 | P 2900 2850 108 | F 0 "C2" H 3015 2896 50 0000 L CNN 109 | F 1 "100nF" H 3015 2805 50 0000 L CNN 110 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 2938 2700 50 0001 C CNN 111 | F 3 "~" H 2900 2850 50 0001 C CNN 112 | 1 2900 2850 113 | 1 0 0 -1 114 | $EndComp 115 | Wire Wire Line 116 | 4950 2150 4950 1700 117 | Wire Wire Line 118 | 4950 1700 2900 1700 119 | Wire Wire Line 120 | 2900 2700 2900 2550 121 | Connection ~ 2900 1700 122 | Wire Wire Line 123 | 2900 1700 2300 1700 124 | $Comp 125 | L Device:R R1 126 | U 1 1 5C4DD5FD 127 | P 3600 2550 128 | F 0 "R1" V 3807 2550 50 0000 C CNN 129 | F 1 "4k7" V 3716 2550 50 0000 C CNN 130 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" V 3530 2550 50 0001 C CNN 131 | F 3 "~" H 3600 2550 50 0001 C CNN 132 | 1 3600 2550 133 | 0 -1 -1 0 134 | $EndComp 135 | Wire Wire Line 136 | 3450 2550 2900 2550 137 | Connection ~ 2900 2550 138 | Wire Wire Line 139 | 2900 2550 2900 2350 140 | Wire Wire Line 141 | 3750 2550 4350 2550 142 | Wire Wire Line 143 | 2900 3000 2900 4500 144 | Connection ~ 2900 4500 145 | Wire Wire Line 146 | 2900 4500 4950 4500 147 | Connection ~ 4950 1700 148 | Wire Wire Line 149 | 5700 2550 5550 2550 150 | $Comp 151 | L Switch:SW_SPDT SW1 152 | U 1 1 5C4DFB1D 153 | P 6350 2100 154 | F 0 "SW1" H 6350 2385 50 0000 C CNN 155 | F 1 "SW_SPDT" H 6350 2294 50 0000 C CNN 156 | F 2 "Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm" H 6350 2100 50 0001 C CNN 157 | F 3 "" H 6350 2100 50 0001 C CNN 158 | 1 6350 2100 159 | 1 0 0 -1 160 | $EndComp 161 | Wire Wire Line 162 | 5550 2350 6150 2350 163 | Wire Wire Line 164 | 6150 2350 6150 2100 165 | Wire Wire Line 166 | 6550 2000 6550 1700 167 | Wire Wire Line 168 | 6550 2200 6550 4500 169 | Connection ~ 6550 4500 170 | Wire Wire Line 171 | 6550 4500 7800 4500 172 | $Comp 173 | L power:+5V #PWR0103 174 | U 1 1 5C4E3101 175 | P 900 900 176 | F 0 "#PWR0103" H 900 750 50 0001 C CNN 177 | F 1 "+5V" H 915 1073 50 0000 C CNN 178 | F 2 "" H 900 900 50 0001 C CNN 179 | F 3 "" H 900 900 50 0001 C CNN 180 | 1 900 900 181 | 1 0 0 -1 182 | $EndComp 183 | Wire Wire Line 184 | 900 900 1000 900 185 | Wire Wire Line 186 | 1500 900 1500 1050 187 | Wire Wire Line 188 | 2300 1700 2300 1650 189 | Wire Wire Line 190 | 2100 1700 2300 1700 191 | Connection ~ 2300 1700 192 | Wire Wire Line 193 | 1800 4500 2300 4500 194 | Connection ~ 2300 4500 195 | $Comp 196 | L Device:C C1 197 | U 1 1 5C4EE3AC 198 | P 1100 1600 199 | F 0 "C1" H 1215 1646 50 0000 L CNN 200 | F 1 "100nF" H 1215 1555 50 0000 L CNN 201 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 1138 1450 50 0001 C CNN 202 | F 3 "~" H 1100 1600 50 0001 C CNN 203 | 1 1100 1600 204 | 1 0 0 -1 205 | $EndComp 206 | Wire Wire Line 207 | 1100 900 1100 1450 208 | Connection ~ 1100 900 209 | Wire Wire Line 210 | 1100 1750 1800 1750 211 | Connection ~ 1800 1750 212 | Wire Wire Line 213 | 1800 1750 1800 4500 214 | $Comp 215 | L Device:R R4 216 | U 1 1 5C4DCDF9 217 | P 3600 2350 218 | F 0 "R4" V 3807 2350 50 0000 C CNN 219 | F 1 "4k7" V 3716 2350 50 0000 C CNN 220 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" V 3530 2350 50 0001 C CNN 221 | F 3 "~" H 3600 2350 50 0001 C CNN 222 | 1 3600 2350 223 | 0 -1 -1 0 224 | $EndComp 225 | Wire Wire Line 226 | 4350 2350 3750 2350 227 | Wire Wire Line 228 | 3450 2350 2900 2350 229 | Connection ~ 2900 2350 230 | Wire Wire Line 231 | 2900 2350 2900 1700 232 | $Comp 233 | L Device:R R6 234 | U 1 1 5C4DEC88 235 | P 6200 1700 236 | F 0 "R6" H 6270 1746 50 0000 L CNN 237 | F 1 "4k7" H 6270 1655 50 0000 L CNN 238 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" V 6130 1700 50 0001 C CNN 239 | F 3 "~" H 6200 1700 50 0001 C CNN 240 | 1 6200 1700 241 | 0 1 1 0 242 | $EndComp 243 | Wire Wire Line 244 | 6350 1700 6550 1700 245 | $Comp 246 | L Connector:Conn_01x01_Male J2 247 | U 1 1 5C4EBE35 248 | P 1000 700 249 | F 0 "J2" V 1060 740 50 0000 L CNN 250 | F 1 "Conn_01x01_Male" V 1151 740 50 0000 L CNN 251 | F 2 "Connector_Wire:SolderWirePad_1x01_Drill0.8mm" H 1000 700 50 0001 C CNN 252 | F 3 "~" H 1000 700 50 0001 C CNN 253 | 1 1000 700 254 | 0 1 1 0 255 | $EndComp 256 | Connection ~ 1000 900 257 | Wire Wire Line 258 | 1000 900 1100 900 259 | $Comp 260 | L Connector:Conn_01x01_Male J3 261 | U 1 1 5C4EC3CB 262 | P 2100 4800 263 | F 0 "J3" H 2206 4978 50 0000 C CNN 264 | F 1 "Conn_01x01_Male" H 2206 4887 50 0000 C CNN 265 | F 2 "Connector_Wire:SolderWirePad_1x01_Drill0.8mm" H 2100 4800 50 0001 C CNN 266 | F 3 "~" H 2100 4800 50 0001 C CNN 267 | 1 2100 4800 268 | 1 0 0 -1 269 | $EndComp 270 | Connection ~ 2300 4800 271 | Wire Wire Line 272 | 2300 4800 2300 4500 273 | Wire Wire Line 274 | 4950 1700 6050 1700 275 | $Comp 276 | L Connector:Conn_01x01_Male J4 277 | U 1 1 5C4F6D43 278 | P 5900 2550 279 | F 0 "J4" H 6006 2728 50 0000 C CNN 280 | F 1 "Conn_01x01_Male" H 6006 2637 50 0000 C CNN 281 | F 2 "Connector_Wire:SolderWirePad_1x01_Drill0.8mm" H 5900 2550 50 0001 C CNN 282 | F 3 "~" H 5900 2550 50 0001 C CNN 283 | 1 5900 2550 284 | -1 0 0 1 285 | $EndComp 286 | Wire Wire Line 287 | 1100 900 1500 900 288 | Wire Wire Line 289 | 2100 1050 2100 1700 290 | Wire Wire Line 291 | 1800 1350 1800 1750 292 | $Comp 293 | L Device:LED D1 294 | U 1 1 5C502D68 295 | P 6250 3250 296 | F 0 "D1" V 6288 3133 50 0000 R CNN 297 | F 1 "LED" V 6197 3133 50 0000 R CNN 298 | F 2 "Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm" H 6250 3250 50 0001 C CNN 299 | F 3 "~" H 6250 3250 50 0001 C CNN 300 | 1 6250 3250 301 | 0 -1 -1 0 302 | $EndComp 303 | Wire Wire Line 304 | 5550 2750 6250 2750 305 | Wire Wire Line 306 | 6250 2750 6250 3100 307 | Wire Wire Line 308 | 6250 3400 6250 4500 309 | Connection ~ 6250 4500 310 | Wire Wire Line 311 | 6250 4500 6550 4500 312 | $Comp 313 | L Regulator_Linear:LD1117S33TR_SOT223 U? 314 | U 1 1 5C51CDE9 315 | P 1800 1050 316 | F 0 "U?" H 1800 1292 50 0000 C CNN 317 | F 1 "LD1117S33TR_SOT223" H 1800 1201 50 0000 C CNN 318 | F 2 "Package_TO_SOT_SMD:SOT-223-3_TabPin2" H 1800 1250 50 0001 C CNN 319 | F 3 "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf" H 1900 800 50 0001 C CNN 320 | 1 1800 1050 321 | 1 0 0 -1 322 | $EndComp 323 | $EndSCHEMATC 324 | -------------------------------------------------------------------------------- /kicad/esp-dmx-shield.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | LIBS:esp-dmx-shield-cache 3 | EELAYER 26 0 4 | EELAYER END 5 | $Descr A4 11693 8268 6 | encoding utf-8 7 | Sheet 1 1 8 | Title "" 9 | Date "" 10 | Rev "" 11 | Comp "" 12 | Comment1 "" 13 | Comment2 "" 14 | Comment3 "" 15 | Comment4 "" 16 | $EndDescr 17 | $Comp 18 | L RF_Module:ESP-12E U1 19 | U 1 1 5C4DAD3D 20 | P 4950 2950 21 | F 0 "U1" H 4950 3928 50 0000 C CNN 22 | F 1 "ESP-12E" H 4950 3837 50 0000 C CNN 23 | F 2 "RF_Module:ESP-12E" H 4950 2950 50 0001 C CNN 24 | F 3 "http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf" H 4600 3050 50 0001 C CNN 25 | 1 4950 2950 26 | 1 0 0 -1 27 | $EndComp 28 | $Comp 29 | L power:GND #PWR0101 30 | U 1 1 5C4DAF4E 31 | P 2300 4900 32 | F 0 "#PWR0101" H 2300 4650 50 0001 C CNN 33 | F 1 "GND" H 2305 4727 50 0000 C CNN 34 | F 2 "" H 2300 4900 50 0001 C CNN 35 | F 3 "" H 2300 4900 50 0001 C CNN 36 | 1 2300 4900 37 | 1 0 0 -1 38 | $EndComp 39 | $Comp 40 | L power:+3.3V #PWR0102 41 | U 1 1 5C4DB0AA 42 | P 2300 1650 43 | F 0 "#PWR0102" H 2300 1500 50 0001 C CNN 44 | F 1 "+3.3V" H 2315 1823 50 0000 C CNN 45 | F 2 "" H 2300 1650 50 0001 C CNN 46 | F 3 "" H 2300 1650 50 0001 C CNN 47 | 1 2300 1650 48 | 1 0 0 -1 49 | $EndComp 50 | Wire Wire Line 51 | 2300 4900 2300 4800 52 | Wire Wire Line 53 | 2300 4500 2900 4500 54 | Wire Wire Line 55 | 4950 4500 4950 3650 56 | Connection ~ 4950 4500 57 | $Comp 58 | L Connector:Conn_01x03_Male J1 59 | U 1 1 5C4DB517 60 | P 8000 2150 61 | F 0 "J1" H 7973 2080 50 0000 R CNN 62 | F 1 "Conn_01x03_Male" H 7973 2171 50 0000 R CNN 63 | F 2 "Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels" H 8000 2150 50 0001 C CNN 64 | F 3 "~" H 8000 2150 50 0001 C CNN 65 | 1 8000 2150 66 | -1 0 0 1 67 | $EndComp 68 | Wire Wire Line 69 | 7800 4500 7800 2250 70 | Wire Wire Line 71 | 5550 2450 7000 2450 72 | Wire Wire Line 73 | 7000 2450 7000 2050 74 | Wire Wire Line 75 | 7000 2050 7800 2050 76 | Wire Wire Line 77 | 5550 2650 7100 2650 78 | Wire Wire Line 79 | 7100 2650 7100 2150 80 | Wire Wire Line 81 | 7100 2150 7800 2150 82 | Wire Wire Line 83 | 4950 4500 5700 4500 84 | $Comp 85 | L Device:R R3 86 | U 1 1 5C4DC610 87 | P 5700 3650 88 | F 0 "R3" H 5630 3604 50 0000 R CNN 89 | F 1 "4k7" H 5630 3695 50 0000 R CNN 90 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" V 5630 3650 50 0001 C CNN 91 | F 3 "~" H 5700 3650 50 0001 C CNN 92 | 1 5700 3650 93 | -1 0 0 1 94 | $EndComp 95 | Wire Wire Line 96 | 5700 3800 5700 4500 97 | Connection ~ 5700 4500 98 | Wire Wire Line 99 | 5700 4500 6250 4500 100 | Wire Wire Line 101 | 5550 3250 5700 3250 102 | Wire Wire Line 103 | 5700 3250 5700 3500 104 | $Comp 105 | L Device:C C2 106 | U 1 1 5C4DCDEE 107 | P 2900 2850 108 | F 0 "C2" H 3015 2896 50 0000 L CNN 109 | F 1 "100nF" H 3015 2805 50 0000 L CNN 110 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 2938 2700 50 0001 C CNN 111 | F 3 "~" H 2900 2850 50 0001 C CNN 112 | 1 2900 2850 113 | 1 0 0 -1 114 | $EndComp 115 | Wire Wire Line 116 | 4950 2150 4950 1700 117 | Wire Wire Line 118 | 4950 1700 2900 1700 119 | Wire Wire Line 120 | 2900 2700 2900 2550 121 | Connection ~ 2900 1700 122 | Wire Wire Line 123 | 2900 1700 2300 1700 124 | $Comp 125 | L Device:R R1 126 | U 1 1 5C4DD5FD 127 | P 3600 2550 128 | F 0 "R1" V 3807 2550 50 0000 C CNN 129 | F 1 "4k7" V 3716 2550 50 0000 C CNN 130 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" V 3530 2550 50 0001 C CNN 131 | F 3 "~" H 3600 2550 50 0001 C CNN 132 | 1 3600 2550 133 | 0 -1 -1 0 134 | $EndComp 135 | Wire Wire Line 136 | 3450 2550 2900 2550 137 | Connection ~ 2900 2550 138 | Wire Wire Line 139 | 2900 2550 2900 2350 140 | Wire Wire Line 141 | 3750 2550 4350 2550 142 | Wire Wire Line 143 | 2900 3000 2900 4500 144 | Connection ~ 2900 4500 145 | Wire Wire Line 146 | 2900 4500 4950 4500 147 | Connection ~ 4950 1700 148 | Wire Wire Line 149 | 5700 2550 5550 2550 150 | $Comp 151 | L Switch:SW_SPDT SW1 152 | U 1 1 5C4DFB1D 153 | P 6350 2100 154 | F 0 "SW1" H 6350 2385 50 0000 C CNN 155 | F 1 "SW_SPDT" H 6350 2294 50 0000 C CNN 156 | F 2 "Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm" H 6350 2100 50 0001 C CNN 157 | F 3 "" H 6350 2100 50 0001 C CNN 158 | 1 6350 2100 159 | 1 0 0 -1 160 | $EndComp 161 | Wire Wire Line 162 | 5550 2350 6150 2350 163 | Wire Wire Line 164 | 6150 2350 6150 2100 165 | Wire Wire Line 166 | 6550 2000 6550 1700 167 | Wire Wire Line 168 | 6550 2200 6550 4500 169 | Connection ~ 6550 4500 170 | Wire Wire Line 171 | 6550 4500 7800 4500 172 | $Comp 173 | L power:+5V #PWR0103 174 | U 1 1 5C4E3101 175 | P 900 900 176 | F 0 "#PWR0103" H 900 750 50 0001 C CNN 177 | F 1 "+5V" H 915 1073 50 0000 C CNN 178 | F 2 "" H 900 900 50 0001 C CNN 179 | F 3 "" H 900 900 50 0001 C CNN 180 | 1 900 900 181 | 1 0 0 -1 182 | $EndComp 183 | Wire Wire Line 184 | 900 900 1000 900 185 | Wire Wire Line 186 | 1500 900 1500 1050 187 | Wire Wire Line 188 | 2300 1700 2300 1650 189 | Wire Wire Line 190 | 2100 1700 2300 1700 191 | Connection ~ 2300 1700 192 | Wire Wire Line 193 | 1800 4500 2300 4500 194 | Connection ~ 2300 4500 195 | $Comp 196 | L Device:C C1 197 | U 1 1 5C4EE3AC 198 | P 1100 1600 199 | F 0 "C1" H 1215 1646 50 0000 L CNN 200 | F 1 "100nF" H 1215 1555 50 0000 L CNN 201 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 1138 1450 50 0001 C CNN 202 | F 3 "~" H 1100 1600 50 0001 C CNN 203 | 1 1100 1600 204 | 1 0 0 -1 205 | $EndComp 206 | Wire Wire Line 207 | 1100 900 1100 1450 208 | Connection ~ 1100 900 209 | Wire Wire Line 210 | 1100 1750 1800 1750 211 | Connection ~ 1800 1750 212 | Wire Wire Line 213 | 1800 1750 1800 4500 214 | $Comp 215 | L Device:R R4 216 | U 1 1 5C4DCDF9 217 | P 3600 2350 218 | F 0 "R4" V 3807 2350 50 0000 C CNN 219 | F 1 "4k7" V 3716 2350 50 0000 C CNN 220 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" V 3530 2350 50 0001 C CNN 221 | F 3 "~" H 3600 2350 50 0001 C CNN 222 | 1 3600 2350 223 | 0 -1 -1 0 224 | $EndComp 225 | Wire Wire Line 226 | 4350 2350 3750 2350 227 | Wire Wire Line 228 | 3450 2350 2900 2350 229 | Connection ~ 2900 2350 230 | Wire Wire Line 231 | 2900 2350 2900 1700 232 | $Comp 233 | L Device:R R6 234 | U 1 1 5C4DEC88 235 | P 6200 1700 236 | F 0 "R6" H 6270 1746 50 0000 L CNN 237 | F 1 "4k7" H 6270 1655 50 0000 L CNN 238 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" V 6130 1700 50 0001 C CNN 239 | F 3 "~" H 6200 1700 50 0001 C CNN 240 | 1 6200 1700 241 | 0 1 1 0 242 | $EndComp 243 | Wire Wire Line 244 | 6350 1700 6550 1700 245 | $Comp 246 | L Connector:Conn_01x01_Male J2 247 | U 1 1 5C4EBE35 248 | P 1000 700 249 | F 0 "J2" V 1060 740 50 0000 L CNN 250 | F 1 "Conn_01x01_Male" V 1151 740 50 0000 L CNN 251 | F 2 "Connector_Wire:SolderWirePad_1x01_Drill0.8mm" H 1000 700 50 0001 C CNN 252 | F 3 "~" H 1000 700 50 0001 C CNN 253 | 1 1000 700 254 | 0 1 1 0 255 | $EndComp 256 | Connection ~ 1000 900 257 | Wire Wire Line 258 | 1000 900 1100 900 259 | $Comp 260 | L Connector:Conn_01x01_Male J3 261 | U 1 1 5C4EC3CB 262 | P 2100 4800 263 | F 0 "J3" H 2206 4978 50 0000 C CNN 264 | F 1 "Conn_01x01_Male" H 2206 4887 50 0000 C CNN 265 | F 2 "Connector_Wire:SolderWirePad_1x01_Drill0.8mm" H 2100 4800 50 0001 C CNN 266 | F 3 "~" H 2100 4800 50 0001 C CNN 267 | 1 2100 4800 268 | 1 0 0 -1 269 | $EndComp 270 | Connection ~ 2300 4800 271 | Wire Wire Line 272 | 2300 4800 2300 4500 273 | Wire Wire Line 274 | 4950 1700 6050 1700 275 | $Comp 276 | L Connector:Conn_01x01_Male J4 277 | U 1 1 5C4F6D43 278 | P 5900 2550 279 | F 0 "J4" H 6006 2728 50 0000 C CNN 280 | F 1 "Conn_01x01_Male" H 6006 2637 50 0000 C CNN 281 | F 2 "Connector_Wire:SolderWirePad_1x01_Drill0.8mm" H 5900 2550 50 0001 C CNN 282 | F 3 "~" H 5900 2550 50 0001 C CNN 283 | 1 5900 2550 284 | -1 0 0 1 285 | $EndComp 286 | Wire Wire Line 287 | 1100 900 1500 900 288 | Wire Wire Line 289 | 2100 1050 2100 1700 290 | Wire Wire Line 291 | 1800 1350 1800 1750 292 | $Comp 293 | L Device:LED D1 294 | U 1 1 5C502D68 295 | P 6250 3250 296 | F 0 "D1" V 6288 3133 50 0000 R CNN 297 | F 1 "LED" V 6197 3133 50 0000 R CNN 298 | F 2 "Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm" H 6250 3250 50 0001 C CNN 299 | F 3 "~" H 6250 3250 50 0001 C CNN 300 | 1 6250 3250 301 | 0 -1 -1 0 302 | $EndComp 303 | Wire Wire Line 304 | 5550 2750 6250 2750 305 | Wire Wire Line 306 | 6250 2750 6250 3100 307 | Wire Wire Line 308 | 6250 3400 6250 4500 309 | Connection ~ 6250 4500 310 | Wire Wire Line 311 | 6250 4500 6550 4500 312 | $Comp 313 | L Regulator_Linear:LD1117S33TR_SOT223 U2 314 | U 1 1 5C51CDE9 315 | P 1800 1050 316 | F 0 "U2" H 1800 1292 50 0000 C CNN 317 | F 1 "LD1117S33TR_SOT223" H 1800 1201 50 0000 C CNN 318 | F 2 "Package_TO_SOT_THT:TO-220-3_Vertical" H 1800 1250 50 0001 C CNN 319 | F 3 "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf" H 1900 800 50 0001 C CNN 320 | 1 1800 1050 321 | 1 0 0 -1 322 | $EndComp 323 | $EndSCHEMATC 324 | -------------------------------------------------------------------------------- /kicad/esp-dmx-shield.net: -------------------------------------------------------------------------------- 1 | (export (version D) 2 | (design 3 | (source "/Users/markus/Library/Mobile Documents/com~apple~CloudDocs/projects/kicad/projects/esp-dmx-shield/esp-dmx-shield.sch") 4 | (date "2019 January 30, Wednesday 15:47:09") 5 | (tool "Eeschema (5.0.1-3-g963ef8bb5)") 6 | (sheet (number 1) (name /) (tstamps /) 7 | (title_block 8 | (title) 9 | (company) 10 | (rev) 11 | (date) 12 | (source esp-dmx-shield.sch) 13 | (comment (number 1) (value "")) 14 | (comment (number 2) (value "")) 15 | (comment (number 3) (value "")) 16 | (comment (number 4) (value ""))))) 17 | (components 18 | (comp (ref U1) 19 | (value ESP-12E) 20 | (footprint RF_Module:ESP-12E) 21 | (datasheet http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf) 22 | (libsource (lib RF_Module) (part ESP-12E) (description "802.11 b/g/n Wi-Fi Module")) 23 | (sheetpath (names /) (tstamps /)) 24 | (tstamp 5C4DAD3D)) 25 | (comp (ref J1) 26 | (value Conn_01x03_Male) 27 | (footprint Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels) 28 | (datasheet ~) 29 | (libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")) 30 | (sheetpath (names /) (tstamps /)) 31 | (tstamp 5C4DB517)) 32 | (comp (ref R3) 33 | (value 4k7) 34 | (footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder) 35 | (datasheet ~) 36 | (libsource (lib Device) (part R) (description Resistor)) 37 | (sheetpath (names /) (tstamps /)) 38 | (tstamp 5C4DC610)) 39 | (comp (ref C2) 40 | (value 100nF) 41 | (footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder) 42 | (datasheet ~) 43 | (libsource (lib Device) (part C) (description "Unpolarized capacitor")) 44 | (sheetpath (names /) (tstamps /)) 45 | (tstamp 5C4DCDEE)) 46 | (comp (ref R1) 47 | (value 4k7) 48 | (footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder) 49 | (datasheet ~) 50 | (libsource (lib Device) (part R) (description Resistor)) 51 | (sheetpath (names /) (tstamps /)) 52 | (tstamp 5C4DD5FD)) 53 | (comp (ref SW1) 54 | (value SW_SPDT) 55 | (footprint Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm) 56 | (libsource (lib Switch) (part SW_SPDT) (description "Switch, single pole double throw")) 57 | (sheetpath (names /) (tstamps /)) 58 | (tstamp 5C4DFB1D)) 59 | (comp (ref C1) 60 | (value 100nF) 61 | (footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder) 62 | (datasheet ~) 63 | (libsource (lib Device) (part C) (description "Unpolarized capacitor")) 64 | (sheetpath (names /) (tstamps /)) 65 | (tstamp 5C4EE3AC)) 66 | (comp (ref R4) 67 | (value 4k7) 68 | (footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder) 69 | (datasheet ~) 70 | (libsource (lib Device) (part R) (description Resistor)) 71 | (sheetpath (names /) (tstamps /)) 72 | (tstamp 5C4DCDF9)) 73 | (comp (ref R6) 74 | (value 4k7) 75 | (footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder) 76 | (datasheet ~) 77 | (libsource (lib Device) (part R) (description Resistor)) 78 | (sheetpath (names /) (tstamps /)) 79 | (tstamp 5C4DEC88)) 80 | (comp (ref J2) 81 | (value Conn_01x01_Male) 82 | (footprint Connector_Wire:SolderWirePad_1x01_Drill0.8mm) 83 | (datasheet ~) 84 | (libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) 85 | (sheetpath (names /) (tstamps /)) 86 | (tstamp 5C4EBE35)) 87 | (comp (ref J3) 88 | (value Conn_01x01_Male) 89 | (footprint Connector_Wire:SolderWirePad_1x01_Drill0.8mm) 90 | (datasheet ~) 91 | (libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) 92 | (sheetpath (names /) (tstamps /)) 93 | (tstamp 5C4EC3CB)) 94 | (comp (ref J4) 95 | (value Conn_01x01_Male) 96 | (footprint Connector_Wire:SolderWirePad_1x01_Drill0.8mm) 97 | (datasheet ~) 98 | (libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) 99 | (sheetpath (names /) (tstamps /)) 100 | (tstamp 5C4F6D43)) 101 | (comp (ref D1) 102 | (value LED) 103 | (footprint Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm) 104 | (datasheet ~) 105 | (libsource (lib Device) (part LED) (description "Light emitting diode")) 106 | (sheetpath (names /) (tstamps /)) 107 | (tstamp 5C502D68)) 108 | (comp (ref U2) 109 | (value LD1117S33TR_SOT223) 110 | (footprint Package_TO_SOT_SMD:SOT-223-3_TabPin2) 111 | (datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf) 112 | (libsource (lib Regulator_Linear) (part LD1117S33TR_SOT223) (description "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 3.3V, SOT-223")) 113 | (sheetpath (names /) (tstamps /)) 114 | (tstamp 5C51CDE9))) 115 | (libparts 116 | (libpart (lib Connector) (part Conn_01x01_Male) 117 | (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") 118 | (docs ~) 119 | (footprints 120 | (fp Connector*:*)) 121 | (fields 122 | (field (name Reference) J) 123 | (field (name Value) Conn_01x01_Male)) 124 | (pins 125 | (pin (num 1) (name Pin_1) (type passive)))) 126 | (libpart (lib Connector) (part Conn_01x03_Male) 127 | (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)") 128 | (docs ~) 129 | (footprints 130 | (fp Connector*:*_1x??_*)) 131 | (fields 132 | (field (name Reference) J) 133 | (field (name Value) Conn_01x03_Male)) 134 | (pins 135 | (pin (num 1) (name Pin_1) (type passive)) 136 | (pin (num 2) (name Pin_2) (type passive)) 137 | (pin (num 3) (name Pin_3) (type passive)))) 138 | (libpart (lib Device) (part C) 139 | (description "Unpolarized capacitor") 140 | (docs ~) 141 | (footprints 142 | (fp C_*)) 143 | (fields 144 | (field (name Reference) C) 145 | (field (name Value) C)) 146 | (pins 147 | (pin (num 1) (name ~) (type passive)) 148 | (pin (num 2) (name ~) (type passive)))) 149 | (libpart (lib Device) (part LED) 150 | (description "Light emitting diode") 151 | (docs ~) 152 | (footprints 153 | (fp LED*) 154 | (fp LED_SMD:*) 155 | (fp LED_THT:*)) 156 | (fields 157 | (field (name Reference) D) 158 | (field (name Value) LED)) 159 | (pins 160 | (pin (num 1) (name K) (type passive)) 161 | (pin (num 2) (name A) (type passive)))) 162 | (libpart (lib Device) (part R) 163 | (description Resistor) 164 | (docs ~) 165 | (footprints 166 | (fp R_*)) 167 | (fields 168 | (field (name Reference) R) 169 | (field (name Value) R)) 170 | (pins 171 | (pin (num 1) (name ~) (type passive)) 172 | (pin (num 2) (name ~) (type passive)))) 173 | (libpart (lib RF_Module) (part ESP-12E) 174 | (aliases 175 | (alias ESP-12F)) 176 | (description "802.11 b/g/n Wi-Fi Module") 177 | (docs http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf) 178 | (footprints 179 | (fp ESP?12*)) 180 | (fields 181 | (field (name Reference) U) 182 | (field (name Value) ESP-12E) 183 | (field (name Footprint) RF_Module:ESP-12E)) 184 | (pins 185 | (pin (num 1) (name ~RST) (type input)) 186 | (pin (num 2) (name ADC) (type input)) 187 | (pin (num 3) (name EN) (type input)) 188 | (pin (num 4) (name GPIO16) (type BiDi)) 189 | (pin (num 5) (name GPIO14) (type BiDi)) 190 | (pin (num 6) (name GPIO12) (type BiDi)) 191 | (pin (num 7) (name GPIO13) (type BiDi)) 192 | (pin (num 8) (name VCC) (type power_in)) 193 | (pin (num 9) (name CS0) (type input)) 194 | (pin (num 10) (name MISO) (type BiDi)) 195 | (pin (num 11) (name GPIO9) (type BiDi)) 196 | (pin (num 12) (name GPIO10) (type BiDi)) 197 | (pin (num 13) (name MOSI) (type BiDi)) 198 | (pin (num 14) (name SCLK) (type BiDi)) 199 | (pin (num 15) (name GND) (type power_in)) 200 | (pin (num 16) (name GPIO15) (type BiDi)) 201 | (pin (num 17) (name GPIO2) (type BiDi)) 202 | (pin (num 18) (name GPIO0) (type BiDi)) 203 | (pin (num 19) (name GPIO4) (type BiDi)) 204 | (pin (num 20) (name GPIO5) (type BiDi)) 205 | (pin (num 21) (name GPIO3/RXD) (type BiDi)) 206 | (pin (num 22) (name GPIO1/TXD) (type BiDi)))) 207 | (libpart (lib Regulator_Linear) (part AP1117-15) 208 | (aliases 209 | (alias AP1117-18) 210 | (alias AP1117-25) 211 | (alias AP1117-33) 212 | (alias AP1117-50) 213 | (alias LD1117S33TR_SOT223) 214 | (alias LD1117S12TR_SOT223) 215 | (alias LD1117S18TR_SOT223) 216 | (alias LD1117S25TR_SOT223) 217 | (alias LD1117S50TR_SOT223) 218 | (alias NCP1117-12_SOT223) 219 | (alias NCP1117-1.5_SOT223) 220 | (alias NCP1117-1.8_SOT223) 221 | (alias NCP1117-2.0_SOT223) 222 | (alias NCP1117-2.5_SOT223) 223 | (alias NCP1117-2.85_SOT223) 224 | (alias NCP1117-3.3_SOT223) 225 | (alias NCP1117-5.0_SOT223) 226 | (alias AMS1117-1.5) 227 | (alias AMS1117-1.8) 228 | (alias AMS1117-2.5) 229 | (alias AMS1117-2.85) 230 | (alias AMS1117-3.3) 231 | (alias AMS1117-5.0)) 232 | (description "1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223") 233 | (docs http://www.diodes.com/datasheets/AP1117.pdf) 234 | (footprints 235 | (fp SOT?223*TabPin2*)) 236 | (fields 237 | (field (name Reference) U) 238 | (field (name Value) AP1117-15) 239 | (field (name Footprint) Package_TO_SOT_SMD:SOT-223-3_TabPin2)) 240 | (pins 241 | (pin (num 1) (name GND) (type power_in)) 242 | (pin (num 2) (name VO) (type power_out)) 243 | (pin (num 3) (name VI) (type power_in)))) 244 | (libpart (lib Switch) (part SW_SPDT) 245 | (description "Switch, single pole double throw") 246 | (fields 247 | (field (name Reference) SW) 248 | (field (name Value) SW_SPDT)) 249 | (pins 250 | (pin (num 1) (name A) (type passive)) 251 | (pin (num 2) (name B) (type passive)) 252 | (pin (num 3) (name C) (type passive))))) 253 | (libraries 254 | (library (logical Connector) 255 | (uri "/Library/Application Support/kicad/library/Connector.lib")) 256 | (library (logical Device) 257 | (uri "/Library/Application Support/kicad/library/Device.lib")) 258 | (library (logical RF_Module) 259 | (uri "/Library/Application Support/kicad/library/RF_Module.lib")) 260 | (library (logical Regulator_Linear) 261 | (uri "/Library/Application Support/kicad/library/Regulator_Linear.lib")) 262 | (library (logical Switch) 263 | (uri "/Library/Application Support/kicad/library/Switch.lib"))) 264 | (nets 265 | (net (code 1) (name "Net-(U1-Pad10)") 266 | (node (ref U1) (pin 10))) 267 | (net (code 2) (name "Net-(U1-Pad11)") 268 | (node (ref U1) (pin 11))) 269 | (net (code 3) (name "Net-(U1-Pad12)") 270 | (node (ref U1) (pin 12))) 271 | (net (code 4) (name "Net-(U1-Pad13)") 272 | (node (ref U1) (pin 13))) 273 | (net (code 5) (name "Net-(U1-Pad14)") 274 | (node (ref U1) (pin 14))) 275 | (net (code 6) (name "Net-(R3-Pad2)") 276 | (node (ref U1) (pin 16)) 277 | (node (ref R3) (pin 2))) 278 | (net (code 7) (name "Net-(J4-Pad1)") 279 | (node (ref U1) (pin 17)) 280 | (node (ref J4) (pin 1))) 281 | (net (code 8) (name "Net-(SW1-Pad2)") 282 | (node (ref U1) (pin 18)) 283 | (node (ref SW1) (pin 2))) 284 | (net (code 9) (name "Net-(D1-Pad2)") 285 | (node (ref U1) (pin 19)) 286 | (node (ref D1) (pin 2))) 287 | (net (code 10) (name "Net-(U1-Pad2)") 288 | (node (ref U1) (pin 2))) 289 | (net (code 11) (name "Net-(U1-Pad20)") 290 | (node (ref U1) (pin 20))) 291 | (net (code 12) (name "Net-(J1-Pad2)") 292 | (node (ref J1) (pin 2)) 293 | (node (ref U1) (pin 21))) 294 | (net (code 13) (name "Net-(J1-Pad3)") 295 | (node (ref U1) (pin 22)) 296 | (node (ref J1) (pin 3))) 297 | (net (code 14) (name "Net-(U1-Pad4)") 298 | (node (ref U1) (pin 4))) 299 | (net (code 15) (name "Net-(U1-Pad5)") 300 | (node (ref U1) (pin 5))) 301 | (net (code 16) (name "Net-(U1-Pad6)") 302 | (node (ref U1) (pin 6))) 303 | (net (code 17) (name "Net-(U1-Pad7)") 304 | (node (ref U1) (pin 7))) 305 | (net (code 18) (name "Net-(U1-Pad9)") 306 | (node (ref U1) (pin 9))) 307 | (net (code 19) (name "Net-(R1-Pad2)") 308 | (node (ref R1) (pin 2)) 309 | (node (ref U1) (pin 3))) 310 | (net (code 20) (name +5V) 311 | (node (ref U2) (pin 3)) 312 | (node (ref J2) (pin 1)) 313 | (node (ref C1) (pin 1))) 314 | (net (code 21) (name "Net-(R4-Pad2)") 315 | (node (ref U1) (pin 1)) 316 | (node (ref R4) (pin 2))) 317 | (net (code 22) (name "Net-(R6-Pad1)") 318 | (node (ref R6) (pin 1)) 319 | (node (ref SW1) (pin 1))) 320 | (net (code 23) (name +3V3) 321 | (node (ref U2) (pin 2)) 322 | (node (ref U1) (pin 8)) 323 | (node (ref R6) (pin 2)) 324 | (node (ref C2) (pin 1)) 325 | (node (ref R4) (pin 1)) 326 | (node (ref R1) (pin 1))) 327 | (net (code 24) (name GND) 328 | (node (ref C1) (pin 2)) 329 | (node (ref C2) (pin 2)) 330 | (node (ref SW1) (pin 3)) 331 | (node (ref J1) (pin 1)) 332 | (node (ref J3) (pin 1)) 333 | (node (ref D1) (pin 1)) 334 | (node (ref U1) (pin 15)) 335 | (node (ref U2) (pin 1)) 336 | (node (ref R3) (pin 1))))) -------------------------------------------------------------------------------- /esp-mqtt-dmx.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | 9 | // WIFI Config Variables 10 | const char* host = "esp-mqtt-dmx"; 11 | const char* ssid = "RZL-hardcore"; 12 | const char* password = "affeaffeaffeaffeaffeaffe00"; 13 | const char* mqtt_server = "infra.rzl.so"; 14 | 15 | //DMX Config 16 | #define STATUS_LED_PIN 4 17 | #define NUM_LIGHTS 2 18 | unsigned int fadespeed = 20; 19 | 20 | // Starting Addresses of PAR-Lights and Strobes (-1 because indexes start at 0) 21 | const byte parAddr[NUM_LIGHTS] = {9, 19}; 22 | const byte strobeAddr[1] = {1}; 23 | 24 | // Channels of PAR Lights as offset to starting address 25 | #define numChannels 8 26 | #define parLum 0 //values 0-255 are luminance 27 | #define parR 1 //values 0-255 are RED luminance 28 | #define parG 2 //values 0-255 are GREEN luminance 29 | #define parB 3 //values 0-255 are BLUE luminance 30 | #define parPreset 4 //values 15-255 are colorpresets 31 | #define parSection 5 //values 15-239 section combinations 32 | //values 240-255 everything off 33 | #define parStrobo 6 //values 0-255 strobe speed, slower to faster (values over 249 are too fast to notice strobing) 34 | #define parFadeSpeed 7 //values 6-140 speed slow to fast 35 | //values 141-154 7-color-change 36 | //values 155-245 every 6 values, different presets 37 | //values 246-255 OFF 38 | 39 | // Channels for Strobe as offset to stating address 40 | const byte strobeFreq = 0; 41 | const byte strobeLum = 1; 42 | 43 | WiFiClient espClient; 44 | PubSubClient mqttClient(espClient); 45 | ESP8266WebServer httpServer(80); 46 | WebSocketsServer webSocketServer = WebSocketsServer(81); 47 | ESP8266HTTPUpdateServer httpUpdater; 48 | 49 | byte dmxState[255] = {0}; 50 | byte dmxStateTarget[255] = {0}; 51 | long now, last = 0; 52 | 53 | 54 | // Function declarations 55 | void mqtt_reconnect(); 56 | void mqtt_callback(char* topic, byte* payload, unsigned int length); 57 | void webSocket_event(uint8_t num, WStype_t type, uint8_t * payload, size_t length); 58 | void lamps_off(); 59 | 60 | void setup() { 61 | Serial.begin(115200); 62 | setup_wifi(); 63 | httpUpdater.setup(&httpServer); 64 | httpServer.begin(); 65 | webSocketServer.begin(); 66 | webSocketServer.onEvent(webSocket_event); 67 | 68 | mqttClient.setServer(mqtt_server, 1883); 69 | mqttClient.setCallback(mqtt_callback); 70 | 71 | dmxB.begin(STATUS_LED_PIN); 72 | dmxB.setChans(dmxState, 512); 73 | randomSeed(analogRead(0)); // nothing connected to 0 so read sees noise 74 | } 75 | 76 | void setup_wifi() { 77 | delay(10); 78 | Serial.println(); 79 | Serial.print("Connecting to "); 80 | Serial.println(ssid); 81 | WiFi.begin(ssid, password); 82 | while (WiFi.status() != WL_CONNECTED) { 83 | delay(500); 84 | Serial.print("."); 85 | } 86 | Serial.println(""); 87 | Serial.println("WiFi connected"); 88 | Serial.println("IP address: "); 89 | Serial.println(WiFi.localIP()); 90 | } 91 | 92 | void mqtt_reconnect() { 93 | while (!mqttClient.connected()) { 94 | Serial.print("Attempting MQTT connection..."); 95 | if (mqttClient.connect(WiFi.macAddress().c_str())) { 96 | Serial.println("connected"); 97 | mqttClient.subscribe("/dmx/push"); 98 | webSocketServer.broadcastTXT("MQTT-Connection up."); 99 | 100 | } else { 101 | Serial.print("failed, rc="); 102 | Serial.print(mqttClient.state()); 103 | Serial.println(" try again in 5 seconds"); 104 | webSocketServer.broadcastTXT("MQTT-Connection failed."); 105 | delay(5000); 106 | } 107 | } 108 | } 109 | 110 | void lamps_off() { 111 | for (int i=0; i < NUM_LIGHTS; i++) { 112 | memset(&dmxStateTarget[parAddr[i]], 0x00, numChannels); 113 | memset(&dmxState[parAddr[i]], 0x00, numChannels); 114 | } 115 | } 116 | 117 | void webSocket_event(uint8_t num, WStype_t type, uint8_t * payload, size_t length){ 118 | if (type == WStype_TEXT){ 119 | for(int i = 0; i < length; i++) Serial.print((char) payload[i]); 120 | Serial.println(); 121 | } 122 | } 123 | 124 | void mqtt_callback(char* topic, byte* payload, unsigned int length) { 125 | Serial.print("Message arrived ["); 126 | Serial.print(topic); 127 | Serial.print("] "); 128 | for (int i = 0; i < length; i++) { 129 | Serial.print((char)payload[i]); 130 | } 131 | webSocketServer.broadcastTXT(payload, length); 132 | Serial.println(); 133 | 134 | //********************************************************************************** 135 | if (strncmp("blackout",(char*)payload, 8) == 0) { 136 | lamps_off(); 137 | dmxB.setChans(dmxState, 512); 138 | } 139 | //********************************************************************************** 140 | if (strncmp("fadealltoblack",(char*)payload, 14) == 0) { 141 | for (int i=0; i < NUM_LIGHTS; i++) { 142 | dmxStateTarget[parAddr[i]+parLum] = 0; //luminance 143 | dmxStateTarget[parAddr[i]+parR] = 0; // red 144 | dmxStateTarget[parAddr[i]+parG] = 0; // green 145 | dmxStateTarget[parAddr[i]+parB] = 0; // blue 146 | dmxStateTarget[parAddr[i]+parFadeSpeed] = 0; // directly set special Channel to 0... 147 | dmxState[parAddr[i]+parFadeSpeed] = 0; // ...in both target and current states 148 | } 149 | } 150 | //********************************************************************************** 151 | if (strncmp("fadealltowhite",(char*)payload, 14) == 0) { 152 | for (int i=0; i < NUM_LIGHTS; i++) { 153 | dmxStateTarget[parAddr[i]+parLum] = 255; //luminance 154 | dmxStateTarget[parAddr[i]+parR] = 255; // red 155 | dmxStateTarget[parAddr[i]+parG] = 255; // green 156 | dmxStateTarget[parAddr[i]+parB] = 255; // blue 157 | dmxStateTarget[parAddr[i]+parFadeSpeed] = 0; // directly set special Channel to 0... 158 | dmxState[parAddr[i]+parFadeSpeed] = 0; // ...in both target and current states 159 | } 160 | } 161 | //********************************************************************************** 162 | if (strncmp("fadealltored",(char*)payload, 12) == 0) { 163 | for (int i=0; i < NUM_LIGHTS; i++) { 164 | dmxStateTarget[parAddr[i]+parLum] = 255; //luminance 165 | dmxStateTarget[parAddr[i]+parR] = 255; // red 166 | dmxStateTarget[parAddr[i]+parG] = 0; // green 167 | dmxStateTarget[parAddr[i]+parB] = 0; // blue 168 | dmxStateTarget[parAddr[i]+parFadeSpeed] = 0; // directly set special Channel to 0... 169 | dmxState[parAddr[i]+parFadeSpeed] = 0; // ...in both target and current states 170 | } 171 | } 172 | //********************************************************************************** 173 | if (strncmp("fadealltoblue",(char*)payload, 13) == 0) { 174 | for (int i=0; i < NUM_LIGHTS; i++) { 175 | dmxStateTarget[parAddr[i]+parLum] = 255; //luminance 176 | dmxStateTarget[parAddr[i]+parR] = 0; // red 177 | dmxStateTarget[parAddr[i]+parG] = 0; // green 178 | dmxStateTarget[parAddr[i]+parB] = 255; // blue 179 | dmxStateTarget[parAddr[i]+parFadeSpeed] = 0; // directly set special Channel to 0... 180 | dmxState[parAddr[i]+parFadeSpeed] = 0; // ...in both target and current states 181 | } 182 | } 183 | //********************************************************************************** 184 | if (strncmp("fadealltogreen",(char*)payload, 14) == 0) { 185 | for (int i=0; i < NUM_LIGHTS; i++) { 186 | dmxStateTarget[parAddr[i]+parLum] = 255; //luminance 187 | dmxStateTarget[parAddr[i]+parR] = 0; // red 188 | dmxStateTarget[parAddr[i]+parG] = 255; // green 189 | dmxStateTarget[parAddr[i]+parB] = 0; // blue 190 | dmxStateTarget[parAddr[i]+parFadeSpeed] = 0; // directly set special Channel to 0... 191 | dmxState[parAddr[i]+parFadeSpeed] = 0; // ...in both target and current states 192 | } 193 | } 194 | //********************************************************************************** 195 | if (strncmp("cycleallrandom",(char*)payload, 14) == 0) { 196 | //message format: "cycleallrandom " 197 | char *token; 198 | int brightness = 255; 199 | token = strtok((char*)payload, " "); //first token is now "cyclerandom" 200 | token = strtok(NULL, " "); //token is now the first value, if provided (brightness) 201 | if (token != NULL) { 202 | brightness = atoi(token); 203 | } 204 | for (int i=0; i < NUM_LIGHTS; i++) { 205 | dmxStateTarget[parAddr[i]+parLum] = brightness; //luminance 206 | dmxStateTarget[parAddr[i]+parR] = random(1,256); // red 207 | dmxStateTarget[parAddr[i]+parG] = random(1,256); // green 208 | dmxStateTarget[parAddr[i]+parB] = random(1,256); // blue 209 | dmxStateTarget[parAddr[i]+parFadeSpeed] = 0; // directly set special Channel to 0... 210 | dmxState[parAddr[i]+parFadeSpeed] = 0; // ...in both target and current states 211 | } 212 | } 213 | //********************************************************************************** 214 | if (strncmp("cyclerandom",(char*)payload, 11) == 0) { 215 | //message format: "cyclerandom " 216 | char *token; 217 | int light = 0; 218 | int brightness = 255; 219 | token = strtok((char*)payload, " "); //first token is now "cyclerandom" 220 | token = strtok(NULL, " "); //token is now the first value (Light) 221 | if (token != NULL) { 222 | light = atoi(token); 223 | token = strtok(NULL, " "); //token is now the second value, if provided (brightness) 224 | if (token != NULL) { 225 | brightness = atoi(token); 226 | } 227 | dmxStateTarget[parAddr[light]+parLum] = brightness; //luminance 228 | dmxStateTarget[parAddr[light]+parR] = random(1,256); // red 229 | dmxStateTarget[parAddr[light]+parG] = random(1,256); // green 230 | dmxStateTarget[parAddr[light]+parB] = random(1,256); // blue 231 | dmxStateTarget[parAddr[light]+parFadeSpeed] = 0; // directly set special Channel to 0... 232 | dmxState[parAddr[light]+parFadeSpeed] = 0; // ...in both target and current states 233 | } 234 | } 235 | //********************************************************************************** 236 | if (strncmp("rgbl",(char*)payload, 4) == 0) { 237 | //message format: "rgbl " 238 | char *token; 239 | int light; 240 | token = strtok((char*)payload, " "); //first token is now "rgbl" 241 | token = strtok(NULL, " "); //token is now the first value (Light) 242 | if (token != NULL) { 243 | light = atoi(token); 244 | } 245 | token = strtok(NULL, " "); //token is now the second value (red) 246 | if (token != NULL) { 247 | dmxStateTarget[parAddr[light]+parR] = (byte)atoi(token); 248 | } 249 | token = strtok(NULL, " "); //token is now the third value (green) 250 | if (token != NULL) { 251 | dmxStateTarget[parAddr[light]+parG] = (byte)atoi(token); 252 | } 253 | token = strtok(NULL, " "); //token is now the fourth value (blue) 254 | if (token != NULL) { 255 | dmxStateTarget[parAddr[light]+parB] = (byte)atoi(token); 256 | } 257 | token = strtok(NULL, " "); //token is now the fifth value (luminance) 258 | if (token != NULL) { 259 | dmxStateTarget[parAddr[light]+parLum] = (byte)atoi(token); 260 | } 261 | dmxStateTarget[parAddr[light]+parFadeSpeed] = 0; // directly set special Channel to 0... 262 | dmxState[parAddr[light]+parFadeSpeed] = 0; // ...in both target and current states 263 | } 264 | //********************************************************************************** 265 | if (strncmp("setchannel",(char*)payload, 10) == 0) { 266 | //message format: "setchannel " 267 | char *token; 268 | byte channel=0; 269 | byte value=0; 270 | token = strtok((char*)payload, " "); //first token is now "setchannel" 271 | token = strtok(NULL, " "); //token is now the first value (channel) 272 | if (token != NULL) { 273 | channel = (byte)atoi(token); 274 | if (channel < 1) { //restrict to positive values 275 | channel = 1; 276 | } 277 | if (channel > 256) { //restrict to biggest possible DMX address 278 | channel = 256; 279 | } 280 | channel--; //our array starts at 0 but DMX addresses start at 1, so we add 1 281 | } 282 | token = strtok(NULL, " "); //token is now the second value (value) 283 | if (token != NULL) { 284 | value = (byte)atoi(token); 285 | if (value < 0) { //restrict to positive values 286 | value = 0; 287 | } 288 | if (value > 255) { //restrict to biggest possible value 289 | value = 255; 290 | } 291 | } 292 | dmxState[channel] = value; 293 | dmxStateTarget[channel] = value; 294 | dmxB.setChans(dmxState, 512); 295 | } 296 | //********************************************************************************** 297 | if (strncmp("fadespeed",(char*)payload, 9) == 0) { 298 | //message format: "fadespeed " 299 | // FIXME: restrict to sane values, e.g. 10 miliseconds seems to be too fast and yields weird effects! 300 | char *token; 301 | token = strtok((char*)payload, " "); //first token is now "fadespeed" 302 | token = strtok(NULL, " "); //token is now the first value (speed) 303 | if (token != NULL) { 304 | fadespeed = (unsigned int)atoi(token); 305 | if (fadespeed < 20) { //restrict to lowest possible speed 306 | fadespeed = 20; 307 | } 308 | } 309 | } 310 | //********************************************************************************** 311 | if (strncmp("discopanic",(char*)payload, 10) == 0) { 312 | lamps_off(); 313 | for (int i=0; i < NUM_LIGHTS; i++) { 314 | dmxState[parAddr[i]+parFadeSpeed] = 230; 315 | dmxStateTarget[parAddr[i]+parFadeSpeed] = 230; 316 | } 317 | dmxB.setChans(dmxState, 512); 318 | } 319 | //********************************************************************************** 320 | if (strncmp("fadeRGB",(char*)payload, 7) == 0) { 321 | lamps_off(); 322 | for (int i=0; i < NUM_LIGHTS; i++) { 323 | dmxState[parAddr[i]+parFadeSpeed] = 10; 324 | dmxStateTarget[parAddr[i]+parFadeSpeed] = 10; 325 | } 326 | dmxB.setChans(dmxState, 512); 327 | } 328 | //********************************************************************************** 329 | if (strncmp("strobo",(char*)payload, 6) == 0) { 330 | //message format: "strobo " note: set intensity AND speed to 0 to switch off 331 | byte speed = 255; 332 | byte intensity = 255; 333 | char *token; 334 | token = strtok((char*)payload, " "); //first token is now "strobo" 335 | token = strtok(NULL, " "); //token is now the first value (speed) 336 | if (token != NULL) { 337 | speed = (byte)atoi(token); 338 | token = strtok(NULL, " "); //token is now the second value (intensity) 339 | if (token != NULL) { 340 | intensity = (byte)atoi(token); 341 | } 342 | } 343 | dmxStateTarget[strobeAddr[0]-1] = speed; 344 | dmxState[strobeAddr[0]-1] = speed; 345 | dmxStateTarget[strobeAddr[0]] = intensity; 346 | dmxState[strobeAddr[0]] = intensity; 347 | dmxB.setChans(dmxState, 512); 348 | } 349 | } 350 | 351 | 352 | void loop() { 353 | httpServer.handleClient(); 354 | webSocketServer.loop(); 355 | 356 | if (!mqttClient.connected()) { 357 | mqtt_reconnect(); 358 | } 359 | mqttClient.loop(); 360 | 361 | now = millis(); 362 | if (now - last >= fadespeed && memcmp(dmxState, dmxStateTarget, sizeof(dmxState)) != 0) { 363 | for (int i=0; i < 255; i++){ 364 | if (dmxState[i] > dmxStateTarget[i]){ 365 | dmxState[i]--; 366 | } else if (dmxState[i] < dmxStateTarget[i]){ 367 | dmxState[i]++; 368 | } 369 | } 370 | dmxB.setChans(dmxState, 512); 371 | last = millis(); 372 | } 373 | } 374 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /kicad/esp-dmx-shield.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20171130) (host pcbnew "(5.0.1-3-g963ef8bb5)") 2 | 3 | (general 4 | (thickness 1.6) 5 | (drawings 1) 6 | (tracks 48) 7 | (zones 0) 8 | (modules 14) 9 | (nets 13) 10 | ) 11 | 12 | (page A4) 13 | (layers 14 | (0 F.Cu signal) 15 | (31 B.Cu signal) 16 | (32 B.Adhes user) 17 | (33 F.Adhes user) 18 | (34 B.Paste user) 19 | (35 F.Paste user) 20 | (36 B.SilkS user) 21 | (37 F.SilkS user) 22 | (38 B.Mask user) 23 | (39 F.Mask user) 24 | (40 Dwgs.User user) 25 | (41 Cmts.User user) 26 | (42 Eco1.User user) 27 | (43 Eco2.User user) 28 | (44 Edge.Cuts user) 29 | (45 Margin user hide) 30 | (46 B.CrtYd user) 31 | (47 F.CrtYd user) 32 | (48 B.Fab user hide) 33 | (49 F.Fab user hide) 34 | ) 35 | 36 | (setup 37 | (last_trace_width 0.5) 38 | (trace_clearance 0.5) 39 | (zone_clearance 0.508) 40 | (zone_45_only no) 41 | (trace_min 0.4) 42 | (segment_width 0.2) 43 | (edge_width 0.15) 44 | (via_size 0.8) 45 | (via_drill 0.4) 46 | (via_min_size 0.4) 47 | (via_min_drill 0.3) 48 | (uvia_size 0.3) 49 | (uvia_drill 0.1) 50 | (uvias_allowed no) 51 | (uvia_min_size 0.2) 52 | (uvia_min_drill 0.1) 53 | (pcb_text_width 0.3) 54 | (pcb_text_size 1.5 1.5) 55 | (mod_edge_width 0.15) 56 | (mod_text_size 1 1) 57 | (mod_text_width 0.15) 58 | (pad_size 1.425 1.75) 59 | (pad_drill 0) 60 | (pad_to_mask_clearance 0.051) 61 | (solder_mask_min_width 0.25) 62 | (aux_axis_origin 118.11 66.04) 63 | (grid_origin 118.11 66.04) 64 | (visible_elements FFEFFFFF) 65 | (pcbplotparams 66 | (layerselection 0x00000_7fffffff) 67 | (usegerberextensions false) 68 | (usegerberattributes false) 69 | (usegerberadvancedattributes false) 70 | (creategerberjobfile false) 71 | (excludeedgelayer false) 72 | (linewidth 0.100000) 73 | (plotframeref false) 74 | (viasonmask false) 75 | (mode 1) 76 | (useauxorigin false) 77 | (hpglpennumber 1) 78 | (hpglpenspeed 20) 79 | (hpglpendiameter 15.000000) 80 | (psnegative false) 81 | (psa4output false) 82 | (plotreference false) 83 | (plotvalue false) 84 | (plotinvisibletext false) 85 | (padsonsilk true) 86 | (subtractmaskfromsilk false) 87 | (outputformat 5) 88 | (mirror false) 89 | (drillshape 0) 90 | (scaleselection 1) 91 | (outputdirectory "/Users/markus/Library/Mobile Documents/com~apple~CloudDocs/projects/kicad/projects/esp-dmx-shield/")) 92 | ) 93 | 94 | (net 0 "") 95 | (net 1 GND) 96 | (net 2 +5V) 97 | (net 3 +3V3) 98 | (net 4 "Net-(J1-Pad3)") 99 | (net 5 "Net-(J1-Pad2)") 100 | (net 6 "Net-(R1-Pad2)") 101 | (net 7 "Net-(R3-Pad2)") 102 | (net 8 "Net-(SW1-Pad2)") 103 | (net 9 "Net-(R4-Pad2)") 104 | (net 10 "Net-(R6-Pad1)") 105 | (net 11 "Net-(D1-Pad2)") 106 | (net 12 "Net-(J4-Pad1)") 107 | 108 | (net_class Default "This is the default net class." 109 | (clearance 0.5) 110 | (trace_width 0.5) 111 | (via_dia 0.8) 112 | (via_drill 0.4) 113 | (uvia_dia 0.3) 114 | (uvia_drill 0.1) 115 | (diff_pair_gap 0.45) 116 | (diff_pair_width 0.4) 117 | (add_net +3V3) 118 | (add_net +5V) 119 | (add_net GND) 120 | (add_net "Net-(D1-Pad2)") 121 | (add_net "Net-(J1-Pad2)") 122 | (add_net "Net-(J1-Pad3)") 123 | (add_net "Net-(J4-Pad1)") 124 | (add_net "Net-(R1-Pad2)") 125 | (add_net "Net-(R3-Pad2)") 126 | (add_net "Net-(R4-Pad2)") 127 | (add_net "Net-(R6-Pad1)") 128 | (add_net "Net-(SW1-Pad2)") 129 | ) 130 | 131 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5C51BB26) (tstamp 5C5A379E) 132 | (at 122.174 87.376) 133 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 134 | (tags "capacitor handsolder") 135 | (path /5C4EE3AC) 136 | (attr smd) 137 | (fp_text reference C1 (at 0 -1.82 90) (layer F.SilkS) 138 | (effects (font (size 1 1) (thickness 0.15))) 139 | ) 140 | (fp_text value 100nF (at 0 1.82) (layer F.Fab) 141 | (effects (font (size 1 1) (thickness 0.15))) 142 | ) 143 | (fp_text user %R (at 0 0) (layer F.Fab) 144 | (effects (font (size 0.8 0.8) (thickness 0.12))) 145 | ) 146 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 147 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 148 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 149 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 150 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 151 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 152 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 153 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 154 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 155 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 156 | (pad 2 smd roundrect (at 1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 157 | (net 1 GND)) 158 | (pad 1 smd roundrect (at -1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 159 | (net 2 +5V)) 160 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 161 | (at (xyz 0 0 0)) 162 | (scale (xyz 1 1 1)) 163 | (rotate (xyz 0 0 0)) 164 | ) 165 | ) 166 | 167 | (module Package_TO_SOT_THT:TO-220-3_Vertical (layer F.Cu) (tedit 5AC8BA0D) (tstamp 5C5E3027) 168 | (at 125.73 92.456 180) 169 | (descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf") 170 | (tags "TO-220-3 Vertical RM 2.54mm") 171 | (path /5C51CDE9) 172 | (fp_text reference U2 (at 2.54 -4.27 180) (layer F.SilkS) 173 | (effects (font (size 1 1) (thickness 0.15))) 174 | ) 175 | (fp_text value LD1117S33TR_SOT223 (at 2.54 2.5 180) (layer F.Fab) 176 | (effects (font (size 1 1) (thickness 0.15))) 177 | ) 178 | (fp_text user %R (at 2.54 -4.27 180) (layer F.Fab) 179 | (effects (font (size 1 1) (thickness 0.15))) 180 | ) 181 | (fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer F.CrtYd) (width 0.05)) 182 | (fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer F.CrtYd) (width 0.05)) 183 | (fp_line (start -2.71 1.51) (end 7.79 1.51) (layer F.CrtYd) (width 0.05)) 184 | (fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer F.CrtYd) (width 0.05)) 185 | (fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer F.SilkS) (width 0.12)) 186 | (fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer F.SilkS) (width 0.12)) 187 | (fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer F.SilkS) (width 0.12)) 188 | (fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer F.SilkS) (width 0.12)) 189 | (fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer F.SilkS) (width 0.12)) 190 | (fp_line (start -2.58 1.371) (end 7.66 1.371) (layer F.SilkS) (width 0.12)) 191 | (fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer F.SilkS) (width 0.12)) 192 | (fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer F.Fab) (width 0.1)) 193 | (fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer F.Fab) (width 0.1)) 194 | (fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer F.Fab) (width 0.1)) 195 | (fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer F.Fab) (width 0.1)) 196 | (fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer F.Fab) (width 0.1)) 197 | (fp_line (start -2.46 1.25) (end 7.54 1.25) (layer F.Fab) (width 0.1)) 198 | (fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer F.Fab) (width 0.1)) 199 | (pad 3 smd roundrect (at 5.08 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 200 | (net 2 +5V)) 201 | (pad 2 smd roundrect (at 2.54 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 202 | (net 3 +3V3)) 203 | (pad 1 smd roundrect (at 0 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 204 | (net 1 GND)) 205 | (model ${KISYS3DMOD}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl 206 | (at (xyz 0 0 0)) 207 | (scale (xyz 1 1 1)) 208 | (rotate (xyz 0 0 0)) 209 | ) 210 | ) 211 | 212 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBE) (tstamp 5C5A37AF) 213 | (at 123.698 83.82 180) 214 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 215 | (tags "capacitor handsolder") 216 | (path /5C4DCDEE) 217 | (attr smd) 218 | (fp_text reference C2 (at 0 -1.82 180) (layer F.SilkS) 219 | (effects (font (size 1 1) (thickness 0.15))) 220 | ) 221 | (fp_text value 100nF (at 0 1.82 180) (layer F.Fab) 222 | (effects (font (size 1 1) (thickness 0.15))) 223 | ) 224 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 225 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 226 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 227 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 228 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 229 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 230 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 231 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 232 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 233 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 234 | (fp_text user %R (at 0 0 180) (layer F.Fab) 235 | (effects (font (size 0.8 0.8) (thickness 0.12))) 236 | ) 237 | (pad 1 smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 238 | (net 3 +3V3)) 239 | (pad 2 smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 240 | (net 1 GND)) 241 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 242 | (at (xyz 0 0 0)) 243 | (scale (xyz 1 1 1)) 244 | (rotate (xyz 0 0 0)) 245 | ) 246 | ) 247 | 248 | (module Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels (layer F.Cu) (tedit 5A3F6CCC) (tstamp 5C5A37C0) 249 | (at 149.86 76.835 90) 250 | (descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open, labeled with numbers") 251 | (tags "solder jumper open") 252 | (path /5C4DB517) 253 | (attr virtual) 254 | (fp_text reference J1 (at 0 -1.8 90) (layer F.SilkS) 255 | (effects (font (size 1 1) (thickness 0.15))) 256 | ) 257 | (fp_text value Conn_01x03_Male (at 0 1.9 90) (layer F.Fab) 258 | (effects (font (size 1 1) (thickness 0.15))) 259 | ) 260 | (fp_text user 3 (at 2.6 0 90) (layer F.SilkS) 261 | (effects (font (size 1 1) (thickness 0.15))) 262 | ) 263 | (fp_text user 1 (at -2.6 0 90) (layer F.SilkS) 264 | (effects (font (size 1 1) (thickness 0.15))) 265 | ) 266 | (fp_line (start -2.05 1) (end -2.05 -1) (layer F.SilkS) (width 0.12)) 267 | (fp_line (start 2.05 1) (end -2.05 1) (layer F.SilkS) (width 0.12)) 268 | (fp_line (start 2.05 -1) (end 2.05 1) (layer F.SilkS) (width 0.12)) 269 | (fp_line (start -2.05 -1) (end 2.05 -1) (layer F.SilkS) (width 0.12)) 270 | (fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer F.CrtYd) (width 0.05)) 271 | (fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer F.CrtYd) (width 0.05)) 272 | (fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer F.CrtYd) (width 0.05)) 273 | (fp_line (start 2.3 1.25) (end -2.3 1.25) (layer F.CrtYd) (width 0.05)) 274 | (pad 3 smd rect (at 1.3 0 90) (size 1 1.5) (layers F.Cu F.Mask) 275 | (net 4 "Net-(J1-Pad3)")) 276 | (pad 2 smd rect (at 0 0 90) (size 1 1.5) (layers F.Cu F.Mask) 277 | (net 5 "Net-(J1-Pad2)")) 278 | (pad 1 smd rect (at -1.3 0 90) (size 1 1.5) (layers F.Cu F.Mask) 279 | (net 1 GND)) 280 | ) 281 | 282 | (module Connector_Wire:SolderWirePad_1x01_Drill0.8mm (layer F.Cu) (tedit 5A2676A0) (tstamp 5C5A37CA) 283 | (at 120.65 69.85) 284 | (descr "Wire solder connection") 285 | (tags connector) 286 | (path /5C4EBE35) 287 | (attr virtual) 288 | (fp_text reference J2 (at 0 -2.54) (layer F.SilkS) 289 | (effects (font (size 1 1) (thickness 0.15))) 290 | ) 291 | (fp_text value Conn_01x01_Male (at 0 2.54) (layer F.Fab) 292 | (effects (font (size 1 1) (thickness 0.15))) 293 | ) 294 | (fp_text user %R (at 0 0) (layer F.Fab) 295 | (effects (font (size 1 1) (thickness 0.15))) 296 | ) 297 | (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 298 | (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 299 | (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 300 | (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 301 | (pad 1 smd roundrect (at 0 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 302 | (net 2 +5V)) 303 | ) 304 | 305 | (module Connector_Wire:SolderWirePad_1x01_Drill0.8mm (layer F.Cu) (tedit 5A2676A0) (tstamp 5C5A37D4) 306 | (at 125.73 69.85) 307 | (descr "Wire solder connection") 308 | (tags connector) 309 | (path /5C4EC3CB) 310 | (attr virtual) 311 | (fp_text reference J3 (at 0 -2.54) (layer F.SilkS) 312 | (effects (font (size 1 1) (thickness 0.15))) 313 | ) 314 | (fp_text value Conn_01x01_Male (at 0 2.54) (layer F.Fab) 315 | (effects (font (size 1 1) (thickness 0.15))) 316 | ) 317 | (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 318 | (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 319 | (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 320 | (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 321 | (fp_text user %R (at 0 0) (layer F.Fab) 322 | (effects (font (size 1 1) (thickness 0.15))) 323 | ) 324 | (pad 1 smd roundrect (at 0 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 325 | (net 1 GND)) 326 | ) 327 | 328 | (module Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5C5A37E5) 329 | (at 124.714 79.375) 330 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 331 | (tags "resistor handsolder") 332 | (path /5C4DD5FD) 333 | (attr smd) 334 | (fp_text reference R1 (at 0 -1.82) (layer F.SilkS) 335 | (effects (font (size 1 1) (thickness 0.15))) 336 | ) 337 | (fp_text value 4k7 (at 0 1.82) (layer F.Fab) 338 | (effects (font (size 1 1) (thickness 0.15))) 339 | ) 340 | (fp_text user %R (at 0 0) (layer F.Fab) 341 | (effects (font (size 0.8 0.8) (thickness 0.12))) 342 | ) 343 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 344 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 345 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 346 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 347 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 348 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 349 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 350 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 351 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 352 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 353 | (pad 2 smd roundrect (at 1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 354 | (net 6 "Net-(R1-Pad2)")) 355 | (pad 1 smd roundrect (at -1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 356 | (net 3 +3V3)) 357 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 358 | (at (xyz 0 0 0)) 359 | (scale (xyz 1 1 1)) 360 | (rotate (xyz 0 0 0)) 361 | ) 362 | ) 363 | 364 | (module Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5C5A3807) 365 | (at 149.86 90.805 90) 366 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 367 | (tags "resistor handsolder") 368 | (path /5C4DC610) 369 | (attr smd) 370 | (fp_text reference R3 (at 0 -1.82 90) (layer F.SilkS) 371 | (effects (font (size 1 1) (thickness 0.15))) 372 | ) 373 | (fp_text value 4k7 (at 0 1.82 90) (layer F.Fab) 374 | (effects (font (size 1 1) (thickness 0.15))) 375 | ) 376 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 377 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 378 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 379 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 380 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 381 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 382 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 383 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 384 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 385 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 386 | (fp_text user %R (at 0 0 90) (layer F.Fab) 387 | (effects (font (size 0.8 0.8) (thickness 0.12))) 388 | ) 389 | (pad 1 smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 390 | (net 1 GND)) 391 | (pad 2 smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 392 | (net 7 "Net-(R3-Pad2)")) 393 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 394 | (at (xyz 0 0 0)) 395 | (scale (xyz 1 1 1)) 396 | (rotate (xyz 0 0 0)) 397 | ) 398 | ) 399 | 400 | (module Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5C5A3818) 401 | (at 124.714 75.184) 402 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 403 | (tags "resistor handsolder") 404 | (path /5C4DCDF9) 405 | (attr smd) 406 | (fp_text reference R4 (at 0 -1.82) (layer F.SilkS) 407 | (effects (font (size 1 1) (thickness 0.15))) 408 | ) 409 | (fp_text value 4k7 (at 0 1.82) (layer F.Fab) 410 | (effects (font (size 1 1) (thickness 0.15))) 411 | ) 412 | (fp_text user %R (at 0 0) (layer F.Fab) 413 | (effects (font (size 0.8 0.8) (thickness 0.12))) 414 | ) 415 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 416 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 417 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 418 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 419 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 420 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 421 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 422 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 423 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 424 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 425 | (pad 2 smd roundrect (at 1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 426 | (net 9 "Net-(R4-Pad2)")) 427 | (pad 1 smd roundrect (at -1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 428 | (net 3 +3V3)) 429 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 430 | (at (xyz 0 0 0)) 431 | (scale (xyz 1 1 1)) 432 | (rotate (xyz 0 0 0)) 433 | ) 434 | ) 435 | 436 | (module Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5C5A3829) 437 | (at 130.81 93.98 180) 438 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 439 | (tags "resistor handsolder") 440 | (path /5C4DEC88) 441 | (attr smd) 442 | (fp_text reference R6 (at 0 -1.82 180) (layer F.SilkS) 443 | (effects (font (size 1 1) (thickness 0.15))) 444 | ) 445 | (fp_text value 4k7 (at 0 1.82 180) (layer F.Fab) 446 | (effects (font (size 1 1) (thickness 0.15))) 447 | ) 448 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 449 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 450 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 451 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 452 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 453 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 454 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 455 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 456 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 457 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 458 | (fp_text user %R (at 0 0 180) (layer F.Fab) 459 | (effects (font (size 0.8 0.8) (thickness 0.12))) 460 | ) 461 | (pad 1 smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 462 | (net 10 "Net-(R6-Pad1)")) 463 | (pad 2 smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 464 | (net 3 +3V3)) 465 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 466 | (at (xyz 0 0 0)) 467 | (scale (xyz 1 1 1)) 468 | (rotate (xyz 0 0 0)) 469 | ) 470 | ) 471 | 472 | (module Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm (layer F.Cu) (tedit 5C4DCDE4) (tstamp 5C5A383B) 473 | (at 149.86 71.12 270) 474 | (descr "SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, open") 475 | (tags "solder jumper open") 476 | (path /5C4DFB1D) 477 | (attr virtual) 478 | (fp_text reference SW1 (at 0 -1.8 270) (layer F.SilkS) 479 | (effects (font (size 1 1) (thickness 0.15))) 480 | ) 481 | (fp_text value SW_SPDT (at 0 2 270) (layer F.Fab) 482 | (effects (font (size 1 1) (thickness 0.15))) 483 | ) 484 | (fp_line (start -1.3 1.2) (end -1 1.5) (layer F.SilkS) (width 0.12)) 485 | (fp_line (start -1.6 1.5) (end -1 1.5) (layer F.SilkS) (width 0.12)) 486 | (fp_line (start -1.3 1.2) (end -1.6 1.5) (layer F.SilkS) (width 0.12)) 487 | (fp_line (start -2.05 1) (end -2.05 -1) (layer F.SilkS) (width 0.12)) 488 | (fp_line (start 2.05 1) (end -2.05 1) (layer F.SilkS) (width 0.12)) 489 | (fp_line (start 2.05 -1) (end 2.05 1) (layer F.SilkS) (width 0.12)) 490 | (fp_line (start -2.05 -1) (end 2.05 -1) (layer F.SilkS) (width 0.12)) 491 | (fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer F.CrtYd) (width 0.05)) 492 | (fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer F.CrtYd) (width 0.05)) 493 | (fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer F.CrtYd) (width 0.05)) 494 | (fp_line (start 2.3 1.25) (end -2.3 1.25) (layer F.CrtYd) (width 0.05)) 495 | (pad 3 smd rect (at 1.3 0 270) (size 1 1.5) (layers F.Cu F.Mask) 496 | (net 1 GND)) 497 | (pad 2 smd rect (at 0 0 270) (size 1 1.5) (layers F.Cu F.Mask) 498 | (net 8 "Net-(SW1-Pad2)")) 499 | (pad 1 smd rect (at -1.3 0 270) (size 1 1.5) (layers F.Cu F.Mask) 500 | (net 10 "Net-(R6-Pad1)")) 501 | ) 502 | 503 | (module RF_Module:ESP-12E (layer F.Cu) (tedit 5A030172) (tstamp 5C5A3876) 504 | (at 137.16 78.74) 505 | (descr "Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf") 506 | (tags "Wi-Fi Module") 507 | (path /5C4DAD3D) 508 | (attr smd) 509 | (fp_text reference U1 (at -10.56 -5.26) (layer F.SilkS) 510 | (effects (font (size 1 1) (thickness 0.15))) 511 | ) 512 | (fp_text value ESP-12E (at -0.06 -12.78) (layer F.Fab) 513 | (effects (font (size 1 1) (thickness 0.15))) 514 | ) 515 | (fp_text user Antenna (at -0.06 -7 180) (layer Cmts.User) 516 | (effects (font (size 1 1) (thickness 0.15))) 517 | ) 518 | (fp_text user "KEEP-OUT ZONE" (at 0.03 -9.55 180) (layer Cmts.User) 519 | (effects (font (size 1 1) (thickness 0.15))) 520 | ) 521 | (fp_text user %R (at 0.49 -0.8) (layer F.Fab) 522 | (effects (font (size 1 1) (thickness 0.15))) 523 | ) 524 | (fp_line (start -8 -12) (end 8 -12) (layer F.Fab) (width 0.12)) 525 | (fp_line (start 8 -12) (end 8 12) (layer F.Fab) (width 0.12)) 526 | (fp_line (start 8 12) (end -8 12) (layer F.Fab) (width 0.12)) 527 | (fp_line (start -8 12) (end -8 -3) (layer F.Fab) (width 0.12)) 528 | (fp_line (start -8 -3) (end -7.5 -3.5) (layer F.Fab) (width 0.12)) 529 | (fp_line (start -7.5 -3.5) (end -8 -4) (layer F.Fab) (width 0.12)) 530 | (fp_line (start -8 -4) (end -8 -12) (layer F.Fab) (width 0.12)) 531 | (fp_line (start -9.05 -12.2) (end 9.05 -12.2) (layer F.CrtYd) (width 0.05)) 532 | (fp_line (start 9.05 -12.2) (end 9.05 13.1) (layer F.CrtYd) (width 0.05)) 533 | (fp_line (start 9.05 13.1) (end -9.05 13.1) (layer F.CrtYd) (width 0.05)) 534 | (fp_line (start -9.05 13.1) (end -9.05 -12.2) (layer F.CrtYd) (width 0.05)) 535 | (fp_line (start -8.12 -12.12) (end 8.12 -12.12) (layer F.SilkS) (width 0.12)) 536 | (fp_line (start 8.12 -12.12) (end 8.12 -4.5) (layer F.SilkS) (width 0.12)) 537 | (fp_line (start 8.12 11.5) (end 8.12 12.12) (layer F.SilkS) (width 0.12)) 538 | (fp_line (start 8.12 12.12) (end 6 12.12) (layer F.SilkS) (width 0.12)) 539 | (fp_line (start -6 12.12) (end -8.12 12.12) (layer F.SilkS) (width 0.12)) 540 | (fp_line (start -8.12 12.12) (end -8.12 11.5) (layer F.SilkS) (width 0.12)) 541 | (fp_line (start -8.12 -4.5) (end -8.12 -12.12) (layer F.SilkS) (width 0.12)) 542 | (fp_line (start -8.12 -4.5) (end -8.73 -4.5) (layer F.SilkS) (width 0.12)) 543 | (fp_line (start -8.12 -12.12) (end 8.12 -12.12) (layer Dwgs.User) (width 0.12)) 544 | (fp_line (start 8.12 -12.12) (end 8.12 -4.8) (layer Dwgs.User) (width 0.12)) 545 | (fp_line (start 8.12 -4.8) (end -8.12 -4.8) (layer Dwgs.User) (width 0.12)) 546 | (fp_line (start -8.12 -4.8) (end -8.12 -12.12) (layer Dwgs.User) (width 0.12)) 547 | (fp_line (start -8.12 -9.12) (end -5.12 -12.12) (layer Dwgs.User) (width 0.12)) 548 | (fp_line (start -8.12 -6.12) (end -2.12 -12.12) (layer Dwgs.User) (width 0.12)) 549 | (fp_line (start -6.44 -4.8) (end 0.88 -12.12) (layer Dwgs.User) (width 0.12)) 550 | (fp_line (start -3.44 -4.8) (end 3.88 -12.12) (layer Dwgs.User) (width 0.12)) 551 | (fp_line (start -0.44 -4.8) (end 6.88 -12.12) (layer Dwgs.User) (width 0.12)) 552 | (fp_line (start 2.56 -4.8) (end 8.12 -10.36) (layer Dwgs.User) (width 0.12)) 553 | (fp_line (start 5.56 -4.8) (end 8.12 -7.36) (layer Dwgs.User) (width 0.12)) 554 | (pad 1 smd rect (at -7.6 -3.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 555 | (net 9 "Net-(R4-Pad2)")) 556 | (pad 2 smd rect (at -7.6 -1.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 557 | (pad 3 smd rect (at -7.6 0.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 558 | (net 6 "Net-(R1-Pad2)")) 559 | (pad 4 smd rect (at -7.6 2.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 560 | (pad 5 smd rect (at -7.6 4.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 561 | (pad 6 smd rect (at -7.6 6.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 562 | (pad 7 smd rect (at -7.6 8.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 563 | (pad 8 smd rect (at -7.6 10.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 564 | (net 3 +3V3)) 565 | (pad 9 smd rect (at -5 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 566 | (pad 10 smd rect (at -3 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 567 | (pad 11 smd rect (at -1 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 568 | (pad 12 smd rect (at 1 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 569 | (pad 13 smd rect (at 3 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 570 | (pad 14 smd rect (at 5 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 571 | (pad 15 smd rect (at 7.6 10.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 572 | (net 1 GND)) 573 | (pad 16 smd rect (at 7.6 8.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 574 | (net 7 "Net-(R3-Pad2)")) 575 | (pad 17 smd rect (at 7.6 6.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 576 | (net 12 "Net-(J4-Pad1)")) 577 | (pad 18 smd rect (at 7.6 4.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 578 | (net 8 "Net-(SW1-Pad2)")) 579 | (pad 19 smd rect (at 7.6 2.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 580 | (net 11 "Net-(D1-Pad2)")) 581 | (pad 20 smd rect (at 7.6 0.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 582 | (pad 21 smd rect (at 7.6 -1.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 583 | (net 5 "Net-(J1-Pad2)")) 584 | (pad 22 smd rect (at 7.6 -3.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 585 | (net 4 "Net-(J1-Pad3)")) 586 | (model ${KISYS3DMOD}/RF_Module.3dshapes/ESP-12E.wrl 587 | (at (xyz 0 0 0)) 588 | (scale (xyz 1 1 1)) 589 | (rotate (xyz 0 0 0)) 590 | ) 591 | ) 592 | 593 | (module Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm (layer F.Cu) (tedit 5A3EABFC) (tstamp 5C5A3055) 594 | (at 149.86 81.28 180) 595 | (descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open") 596 | (tags "solder jumper open") 597 | (path /5C502D68) 598 | (attr virtual) 599 | (fp_text reference D1 (at 0 -1.8 180) (layer F.SilkS) 600 | (effects (font (size 1 1) (thickness 0.15))) 601 | ) 602 | (fp_text value LED (at 0 1.9 180) (layer F.Fab) 603 | (effects (font (size 1 1) (thickness 0.15))) 604 | ) 605 | (fp_line (start -1.4 1) (end -1.4 -1) (layer F.SilkS) (width 0.12)) 606 | (fp_line (start 1.4 1) (end -1.4 1) (layer F.SilkS) (width 0.12)) 607 | (fp_line (start 1.4 -1) (end 1.4 1) (layer F.SilkS) (width 0.12)) 608 | (fp_line (start -1.4 -1) (end 1.4 -1) (layer F.SilkS) (width 0.12)) 609 | (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05)) 610 | (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05)) 611 | (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05)) 612 | (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05)) 613 | (pad 2 smd rect (at 0.65 0 180) (size 1 1.5) (layers F.Cu F.Mask) 614 | (net 11 "Net-(D1-Pad2)")) 615 | (pad 1 smd rect (at -0.65 0 180) (size 1 1.5) (layers F.Cu F.Mask) 616 | (net 1 GND)) 617 | ) 618 | 619 | (module Connector_Wire:SolderWirePad_1x01_Drill0.8mm (layer F.Cu) (tedit 5A2676A0) (tstamp 5C5A305F) 620 | (at 149.86 86.36) 621 | (descr "Wire solder connection") 622 | (tags connector) 623 | (path /5C4F6D43) 624 | (attr virtual) 625 | (fp_text reference J4 (at 0 -2.54) (layer F.SilkS) 626 | (effects (font (size 1 1) (thickness 0.15))) 627 | ) 628 | (fp_text value Conn_01x01_Male (at 0 2.54) (layer F.Fab) 629 | (effects (font (size 1 1) (thickness 0.15))) 630 | ) 631 | (fp_text user %R (at 0 0) (layer F.Fab) 632 | (effects (font (size 1 1) (thickness 0.15))) 633 | ) 634 | (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 635 | (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 636 | (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 637 | (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 638 | (pad 1 smd roundrect (at 0 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 639 | (net 12 "Net-(J4-Pad1)")) 640 | ) 641 | 642 | (gr_poly (pts (xy 118.618 66.548) (xy 156.21 66.548) (xy 156.21 96.012) (xy 118.618 96.012)) (layer Margin) (width 0.15)) 643 | 644 | (segment (start 125.6935 92.0385) (end 125.73 92.075) (width 0.5) (layer F.Cu) (net 1)) 645 | (segment (start 120.6865 92.4195) (end 120.65 92.456) (width 0.5) (layer F.Cu) (net 2)) 646 | (segment (start 120.6865 87.376) (end 120.6865 92.4195) (width 0.5) (layer F.Cu) (net 2)) 647 | (segment (start 120.6865 69.8865) (end 120.6865 87.376) (width 0.5) (layer F.Cu) (net 2)) 648 | (segment (start 129.3225 93.98) (end 129.3225 89.4775) (width 0.5) (layer F.Cu) (net 3)) 649 | (segment (start 125.1855 87.376) (end 125.1855 83.82) (width 0.5) (layer F.Cu) (net 3)) 650 | (segment (start 127.0495 89.24) (end 125.1855 87.376) (width 0.5) (layer F.Cu) (net 3)) 651 | (segment (start 129.56 89.24) (end 127.0495 89.24) (width 0.5) (layer F.Cu) (net 3)) 652 | (segment (start 125.431 89.24) (end 127.81 89.24) (width 0.5) (layer F.Cu) (net 3)) 653 | (segment (start 123.19 91.481) (end 125.431 89.24) (width 0.5) (layer F.Cu) (net 3)) 654 | (segment (start 123.19 92.456) (end 123.19 91.481) (width 0.5) (layer F.Cu) (net 3)) 655 | (segment (start 123.2265 75.184) (end 123.2265 79.375) (width 0.5) (layer F.Cu) (net 3)) 656 | (segment (start 125.1855 82.309) (end 125.1855 83.82) (width 0.5) (layer F.Cu) (net 3)) 657 | (segment (start 123.2265 80.35) (end 125.1855 82.309) (width 0.5) (layer F.Cu) (net 3)) 658 | (segment (start 123.2265 79.375) (end 123.2265 80.35) (width 0.5) (layer F.Cu) (net 3)) 659 | (segment (start 148.203 75.24) (end 144.76 75.24) (width 0.5) (layer F.Cu) (net 4)) 660 | (segment (start 148.498 75.535) (end 148.203 75.24) (width 0.5) (layer F.Cu) (net 4)) 661 | (segment (start 149.86 75.535) (end 148.498 75.535) (width 0.5) (layer F.Cu) (net 4)) 662 | (segment (start 144.76 77.24) (end 147.55 77.24) (width 0.5) (layer F.Cu) (net 5)) 663 | (segment (start 147.955 76.835) (end 149.86 76.835) (width 0.5) (layer F.Cu) (net 5)) 664 | (segment (start 147.55 77.24) (end 147.955 76.835) (width 0.5) (layer F.Cu) (net 5)) 665 | (segment (start 126.2015 79.375) (end 129.425 79.375) (width 0.5) (layer F.Cu) (net 6)) 666 | (segment (start 146.51 87.24) (end 147.066 87.796) (width 0.5) (layer F.Cu) (net 7)) 667 | (segment (start 144.76 87.24) (end 146.51 87.24) (width 0.5) (layer F.Cu) (net 7)) 668 | (segment (start 147.066 87.796) (end 147.066 88.392) (width 0.5) (layer F.Cu) (net 7)) 669 | (segment (start 147.9915 89.3175) (end 149.86 89.3175) (width 0.5) (layer F.Cu) (net 7)) 670 | (segment (start 147.066 88.392) (end 147.9915 89.3175) (width 0.5) (layer F.Cu) (net 7)) 671 | (segment (start 146.51 83.24) (end 147.09 83.82) (width 0.5) (layer F.Cu) (net 8)) 672 | (segment (start 144.76 83.24) (end 146.51 83.24) (width 0.5) (layer F.Cu) (net 8)) 673 | (segment (start 147.09 83.82) (end 152.146 83.82) (width 0.5) (layer F.Cu) (net 8)) 674 | (segment (start 152.146 83.82) (end 152.654 83.312) (width 0.5) (layer F.Cu) (net 8)) 675 | (segment (start 152.654 71.628) (end 152.654 73.152) (width 0.5) (layer F.Cu) (net 8)) 676 | (segment (start 149.86 71.12) (end 152.146 71.12) (width 0.5) (layer F.Cu) (net 8)) 677 | (segment (start 152.146 71.12) (end 152.654 71.628) (width 0.5) (layer F.Cu) (net 8)) 678 | (segment (start 152.654 73.152) (end 152.654 72.613998) (width 0.5) (layer F.Cu) (net 8)) 679 | (segment (start 152.654 83.312) (end 152.654 73.152) (width 0.5) (layer F.Cu) (net 8)) 680 | (segment (start 129.504 75.184) (end 129.56 75.24) (width 0.5) (layer F.Cu) (net 9)) 681 | (segment (start 126.2015 75.184) (end 129.504 75.184) (width 0.5) (layer F.Cu) (net 9)) 682 | (segment (start 153.894 69.82) (end 149.86 69.82) (width 0.5) (layer F.Cu) (net 10)) 683 | (segment (start 154.686 93.472) (end 154.686 70.612) (width 0.5) (layer F.Cu) (net 10)) 684 | (segment (start 154.686 70.612) (end 153.894 69.82) (width 0.5) (layer F.Cu) (net 10)) 685 | (segment (start 154.178 93.98) (end 154.686 93.472) (width 0.5) (layer F.Cu) (net 10)) 686 | (segment (start 132.2975 93.98) (end 154.178 93.98) (width 0.5) (layer F.Cu) (net 10)) 687 | (segment (start 149.17 81.24) (end 149.21 81.28) (width 0.5) (layer F.Cu) (net 11)) 688 | (segment (start 144.76 81.24) (end 149.17 81.24) (width 0.5) (layer F.Cu) (net 11)) 689 | (segment (start 147.63 86.36) (end 149.86 86.36) (width 0.5) (layer F.Cu) (net 12)) 690 | (segment (start 146.51 85.24) (end 147.63 86.36) (width 0.5) (layer F.Cu) (net 12)) 691 | (segment (start 144.76 85.24) (end 146.51 85.24) (width 0.5) (layer F.Cu) (net 12)) 692 | 693 | (zone (net 1) (net_name GND) (layer F.Cu) (tstamp 5C5EFB00) (hatch edge 0.508) 694 | (connect_pads (clearance 0.508)) 695 | (min_thickness 0.254) 696 | (fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508)) 697 | (polygon 698 | (pts 699 | (xy 128.27 66.548) (xy 118.618 66.548) (xy 118.618 95.885) (xy 156.21 95.885) (xy 156.21 66.548) 700 | (xy 146.05 66.548) (xy 146.05 73.66) (xy 128.27 73.66) 701 | ) 702 | ) 703 | (filled_polygon 704 | (pts 705 | (xy 128.143 73.66) (xy 128.152667 73.708601) (xy 128.180197 73.749803) (xy 128.221399 73.777333) (xy 128.27 73.787) 706 | (xy 146.05 73.787) (xy 146.098601 73.777333) (xy 146.139803 73.749803) (xy 146.167333 73.708601) (xy 146.177 73.66) 707 | (xy 146.177 72.70575) (xy 148.475 72.70575) (xy 148.475 73.046309) (xy 148.571673 73.279698) (xy 148.750301 73.458327) 708 | (xy 148.98369 73.555) (xy 149.57425 73.555) (xy 149.733 73.39625) (xy 149.733 72.547) (xy 149.987 72.547) 709 | (xy 149.987 73.39625) (xy 150.14575 73.555) (xy 150.73631 73.555) (xy 150.969699 73.458327) (xy 151.148327 73.279698) 710 | (xy 151.245 73.046309) (xy 151.245 72.70575) (xy 151.08625 72.547) (xy 149.987 72.547) (xy 149.733 72.547) 711 | (xy 148.63375 72.547) (xy 148.475 72.70575) (xy 146.177 72.70575) (xy 146.177 66.675) (xy 156.083 66.675) 712 | (xy 156.083 95.758) (xy 118.745 95.758) (xy 118.745 69.225) (xy 119.29006 69.225) (xy 119.29006 70.475) 713 | (xy 119.358374 70.818435) (xy 119.552914 71.109586) (xy 119.8015 71.275685) (xy 119.801501 85.974703) (xy 119.589414 86.116414) 714 | (xy 119.394874 86.407565) (xy 119.32656 86.751) (xy 119.32656 88.001) (xy 119.394874 88.344435) (xy 119.589414 88.635586) 715 | (xy 119.8015 88.777297) (xy 119.801501 91.030314) (xy 119.552914 91.196414) (xy 119.358374 91.487565) (xy 119.29006 91.831) 716 | (xy 119.29006 93.081) (xy 119.358374 93.424435) (xy 119.552914 93.715586) (xy 119.844065 93.910126) (xy 120.1875 93.97844) 717 | (xy 121.1125 93.97844) (xy 121.455935 93.910126) (xy 121.747086 93.715586) (xy 121.92 93.456801) (xy 122.092914 93.715586) 718 | (xy 122.384065 93.910126) (xy 122.7275 93.97844) (xy 123.6525 93.97844) (xy 123.995935 93.910126) (xy 124.287086 93.715586) 719 | (xy 124.412028 93.528596) (xy 124.479173 93.690699) (xy 124.657802 93.869327) (xy 124.891191 93.966) (xy 125.44425 93.966) 720 | (xy 125.603 93.80725) (xy 125.603 92.583) (xy 125.857 92.583) (xy 125.857 93.80725) (xy 126.01575 93.966) 721 | (xy 126.568809 93.966) (xy 126.802198 93.869327) (xy 126.980827 93.690699) (xy 127.0775 93.45731) (xy 127.0775 92.74175) 722 | (xy 126.91875 92.583) (xy 125.857 92.583) (xy 125.603 92.583) (xy 125.583 92.583) (xy 125.583 92.329) 723 | (xy 125.603 92.329) (xy 125.603 91.10475) (xy 125.857 91.10475) (xy 125.857 92.329) (xy 126.91875 92.329) 724 | (xy 127.0775 92.17025) (xy 127.0775 91.45469) (xy 126.980827 91.221301) (xy 126.802198 91.042673) (xy 126.568809 90.946) 725 | (xy 126.01575 90.946) (xy 125.857 91.10475) (xy 125.603 91.10475) (xy 125.44425 90.946) (xy 124.976579 90.946) 726 | (xy 125.797579 90.125) (xy 126.96234 90.125) (xy 127.049499 90.142337) (xy 127.136659 90.125) (xy 127.803541 90.125) 727 | (xy 127.852191 90.197809) (xy 128.062235 90.338157) (xy 128.31 90.38744) (xy 128.437501 90.38744) (xy 128.4375 92.578703) 728 | (xy 128.225414 92.720414) (xy 128.030874 93.011565) (xy 127.96256 93.355) (xy 127.96256 94.605) (xy 128.030874 94.948435) 729 | (xy 128.225414 95.239586) (xy 128.516565 95.434126) (xy 128.86 95.50244) (xy 129.785 95.50244) (xy 130.128435 95.434126) 730 | (xy 130.419586 95.239586) (xy 130.614126 94.948435) (xy 130.68244 94.605) (xy 130.68244 93.355) (xy 130.614126 93.011565) 731 | (xy 130.419586 92.720414) (xy 130.2075 92.578703) (xy 130.2075 90.38744) (xy 130.81 90.38744) (xy 131.01256 90.347149) 732 | (xy 131.01256 91.64) (xy 131.061843 91.887765) (xy 131.202191 92.097809) (xy 131.412235 92.238157) (xy 131.66 92.28744) 733 | (xy 132.66 92.28744) (xy 132.907765 92.238157) (xy 133.117809 92.097809) (xy 133.16 92.034666) (xy 133.202191 92.097809) 734 | (xy 133.412235 92.238157) (xy 133.66 92.28744) (xy 134.66 92.28744) (xy 134.907765 92.238157) (xy 135.117809 92.097809) 735 | (xy 135.16 92.034666) (xy 135.202191 92.097809) (xy 135.412235 92.238157) (xy 135.66 92.28744) (xy 136.66 92.28744) 736 | (xy 136.907765 92.238157) (xy 137.117809 92.097809) (xy 137.16 92.034666) (xy 137.202191 92.097809) (xy 137.412235 92.238157) 737 | (xy 137.66 92.28744) (xy 138.66 92.28744) (xy 138.907765 92.238157) (xy 139.117809 92.097809) (xy 139.16 92.034666) 738 | (xy 139.202191 92.097809) (xy 139.412235 92.238157) (xy 139.66 92.28744) (xy 140.66 92.28744) (xy 140.907765 92.238157) 739 | (xy 141.117809 92.097809) (xy 141.16 92.034666) (xy 141.202191 92.097809) (xy 141.412235 92.238157) (xy 141.66 92.28744) 740 | (xy 142.66 92.28744) (xy 142.907765 92.238157) (xy 143.117809 92.097809) (xy 143.258157 91.887765) (xy 143.30744 91.64) 741 | (xy 143.30744 91.453691) (xy 148.35 91.453691) (xy 148.35 92.00675) (xy 148.50875 92.1655) (xy 149.733 92.1655) 742 | (xy 149.733 91.10375) (xy 149.987 91.10375) (xy 149.987 92.1655) (xy 151.21125 92.1655) (xy 151.37 92.00675) 743 | (xy 151.37 91.453691) (xy 151.273327 91.220302) (xy 151.094699 91.041673) (xy 150.86131 90.945) (xy 150.14575 90.945) 744 | (xy 149.987 91.10375) (xy 149.733 91.10375) (xy 149.57425 90.945) (xy 148.85869 90.945) (xy 148.625301 91.041673) 745 | (xy 148.446673 91.220302) (xy 148.35 91.453691) (xy 143.30744 91.453691) (xy 143.30744 90.343416) (xy 143.383691 90.375) 746 | (xy 144.47425 90.375) (xy 144.633 90.21625) (xy 144.633 89.367) (xy 144.887 89.367) (xy 144.887 90.21625) 747 | (xy 145.04575 90.375) (xy 146.136309 90.375) (xy 146.369698 90.278327) (xy 146.548327 90.099699) (xy 146.645 89.86631) 748 | (xy 146.645 89.52575) (xy 146.48625 89.367) (xy 144.887 89.367) (xy 144.633 89.367) (xy 144.613 89.367) 749 | (xy 144.613 89.113) (xy 144.633 89.113) (xy 144.633 89.093) (xy 144.887 89.093) (xy 144.887 89.113) 750 | (xy 146.48625 89.113) (xy 146.510836 89.088414) (xy 147.304077 89.881656) (xy 147.353451 89.955549) (xy 147.427344 90.004923) 751 | (xy 147.427345 90.004924) (xy 147.604709 90.123435) (xy 147.64619 90.151152) (xy 147.904335 90.2025) (xy 147.904339 90.2025) 752 | (xy 147.9915 90.219837) (xy 148.078661 90.2025) (xy 148.458703 90.2025) (xy 148.600414 90.414586) (xy 148.891565 90.609126) 753 | (xy 149.235 90.67744) (xy 150.485 90.67744) (xy 150.828435 90.609126) (xy 151.119586 90.414586) (xy 151.314126 90.123435) 754 | (xy 151.38244 89.78) (xy 151.38244 88.855) (xy 151.314126 88.511565) (xy 151.119586 88.220414) (xy 150.828435 88.025874) 755 | (xy 150.485 87.95756) (xy 149.235 87.95756) (xy 148.891565 88.025874) (xy 148.600414 88.220414) (xy 148.458703 88.4325) 756 | (xy 148.358079 88.4325) (xy 147.951 88.025422) (xy 147.951 87.883161) (xy 147.968337 87.796) (xy 147.951 87.708839) 757 | (xy 147.951 87.708835) (xy 147.899652 87.45069) (xy 147.762214 87.245) (xy 148.551778 87.245) (xy 148.568374 87.328435) 758 | (xy 148.762914 87.619586) (xy 149.054065 87.814126) (xy 149.3975 87.88244) (xy 150.3225 87.88244) (xy 150.665935 87.814126) 759 | (xy 150.957086 87.619586) (xy 151.151626 87.328435) (xy 151.21994 86.985) (xy 151.21994 85.735) (xy 151.151626 85.391565) 760 | (xy 150.957086 85.100414) (xy 150.665935 84.905874) (xy 150.3225 84.83756) (xy 149.3975 84.83756) (xy 149.054065 84.905874) 761 | (xy 148.762914 85.100414) (xy 148.568374 85.391565) (xy 148.551778 85.475) (xy 147.996579 85.475) (xy 147.226578 84.705) 762 | (xy 152.058839 84.705) (xy 152.146 84.722337) (xy 152.233161 84.705) (xy 152.233165 84.705) (xy 152.49131 84.653652) 763 | (xy 152.784049 84.458049) (xy 152.833425 84.384153) (xy 153.218154 83.999424) (xy 153.292049 83.950049) (xy 153.487652 83.65731) 764 | (xy 153.539 83.399165) (xy 153.539 83.399161) (xy 153.556337 83.312001) (xy 153.539 83.224841) (xy 153.539 71.715159) 765 | (xy 153.556337 71.627999) (xy 153.539 71.540839) (xy 153.539 71.540835) (xy 153.487652 71.28269) (xy 153.292049 70.989951) 766 | (xy 153.218154 70.940576) (xy 152.982578 70.705) (xy 153.527422 70.705) (xy 153.801001 70.97858) (xy 153.801 93.095) 767 | (xy 151.37 93.095) (xy 151.37 92.57825) (xy 151.21125 92.4195) (xy 149.987 92.4195) (xy 149.987 92.4395) 768 | (xy 149.733 92.4395) (xy 149.733 92.4195) (xy 148.50875 92.4195) (xy 148.35 92.57825) (xy 148.35 93.095) 769 | (xy 133.605722 93.095) (xy 133.589126 93.011565) (xy 133.394586 92.720414) (xy 133.103435 92.525874) (xy 132.76 92.45756) 770 | (xy 131.835 92.45756) (xy 131.491565 92.525874) (xy 131.200414 92.720414) (xy 131.005874 93.011565) (xy 130.93756 93.355) 771 | (xy 130.93756 94.605) (xy 131.005874 94.948435) (xy 131.200414 95.239586) (xy 131.491565 95.434126) (xy 131.835 95.50244) 772 | (xy 132.76 95.50244) (xy 133.103435 95.434126) (xy 133.394586 95.239586) (xy 133.589126 94.948435) (xy 133.605722 94.865) 773 | (xy 154.090839 94.865) (xy 154.178 94.882337) (xy 154.265161 94.865) (xy 154.265165 94.865) (xy 154.52331 94.813652) 774 | (xy 154.816049 94.618049) (xy 154.865425 94.544153) (xy 155.250154 94.159424) (xy 155.324049 94.110049) (xy 155.519652 93.81731) 775 | (xy 155.571 93.559165) (xy 155.571 93.559161) (xy 155.588337 93.472001) (xy 155.571 93.384841) (xy 155.571 70.699159) 776 | (xy 155.588337 70.611999) (xy 155.571 70.524839) (xy 155.571 70.524835) (xy 155.519652 70.26669) (xy 155.324049 69.973951) 777 | (xy 155.250156 69.924577) (xy 154.581425 69.255847) (xy 154.532049 69.181951) (xy 154.23931 68.986348) (xy 153.981165 68.935) 778 | (xy 153.981161 68.935) (xy 153.894 68.917663) (xy 153.806839 68.935) (xy 151.116459 68.935) (xy 151.067809 68.862191) 779 | (xy 150.857765 68.721843) (xy 150.61 68.67256) (xy 149.11 68.67256) (xy 148.862235 68.721843) (xy 148.652191 68.862191) 780 | (xy 148.511843 69.072235) (xy 148.46256 69.32) (xy 148.46256 70.32) (xy 148.492397 70.47) (xy 148.46256 70.62) 781 | (xy 148.46256 71.62) (xy 148.489936 71.757632) (xy 148.475 71.793691) (xy 148.475 72.13425) (xy 148.63375 72.293) 782 | (xy 149.733 72.293) (xy 149.733 72.273) (xy 149.987 72.273) (xy 149.987 72.293) (xy 151.08625 72.293) 783 | (xy 151.245 72.13425) (xy 151.245 72.005) (xy 151.769 72.005) (xy 151.769001 72.52683) (xy 151.769 72.526833) 784 | (xy 151.769 73.239164) (xy 151.769001 73.239169) (xy 151.769 82.935) (xy 147.456579 82.935) (xy 147.197425 82.675846) 785 | (xy 147.148049 82.601951) (xy 146.85531 82.406348) (xy 146.597165 82.355) (xy 146.597161 82.355) (xy 146.51 82.337663) 786 | (xy 146.505476 82.338563) (xy 146.467809 82.282191) (xy 146.404666 82.24) (xy 146.467809 82.197809) (xy 146.516459 82.125) 787 | (xy 148.081456 82.125) (xy 148.111843 82.277765) (xy 148.252191 82.487809) (xy 148.462235 82.628157) (xy 148.71 82.67744) 788 | (xy 149.71 82.67744) (xy 149.847632 82.650064) (xy 149.883691 82.665) (xy 150.22425 82.665) (xy 150.383 82.50625) 789 | (xy 150.383 81.407) (xy 150.637 81.407) (xy 150.637 82.50625) (xy 150.79575 82.665) (xy 151.136309 82.665) 790 | (xy 151.369698 82.568327) (xy 151.548327 82.389699) (xy 151.645 82.15631) (xy 151.645 81.56575) (xy 151.48625 81.407) 791 | (xy 150.637 81.407) (xy 150.383 81.407) (xy 150.363 81.407) (xy 150.363 81.153) (xy 150.383 81.153) 792 | (xy 150.383 80.05375) (xy 150.637 80.05375) (xy 150.637 81.153) (xy 151.48625 81.153) (xy 151.645 80.99425) 793 | (xy 151.645 80.40369) (xy 151.548327 80.170301) (xy 151.369698 79.991673) (xy 151.136309 79.895) (xy 150.79575 79.895) 794 | (xy 150.637 80.05375) (xy 150.383 80.05375) (xy 150.22425 79.895) (xy 149.883691 79.895) (xy 149.847632 79.909936) 795 | (xy 149.71 79.88256) (xy 148.71 79.88256) (xy 148.462235 79.931843) (xy 148.252191 80.072191) (xy 148.111843 80.282235) 796 | (xy 148.097369 80.355) (xy 146.516459 80.355) (xy 146.467809 80.282191) (xy 146.404666 80.24) (xy 146.467809 80.197809) 797 | (xy 146.608157 79.987765) (xy 146.65744 79.74) (xy 146.65744 78.74) (xy 146.608157 78.492235) (xy 146.560392 78.42075) 798 | (xy 148.475 78.42075) (xy 148.475 78.761309) (xy 148.571673 78.994698) (xy 148.750301 79.173327) (xy 148.98369 79.27) 799 | (xy 149.57425 79.27) (xy 149.733 79.11125) (xy 149.733 78.262) (xy 149.987 78.262) (xy 149.987 79.11125) 800 | (xy 150.14575 79.27) (xy 150.73631 79.27) (xy 150.969699 79.173327) (xy 151.148327 78.994698) (xy 151.245 78.761309) 801 | (xy 151.245 78.42075) (xy 151.08625 78.262) (xy 149.987 78.262) (xy 149.733 78.262) (xy 148.63375 78.262) 802 | (xy 148.475 78.42075) (xy 146.560392 78.42075) (xy 146.467809 78.282191) (xy 146.404666 78.24) (xy 146.467809 78.197809) 803 | (xy 146.516459 78.125) (xy 147.462839 78.125) (xy 147.55 78.142337) (xy 147.637161 78.125) (xy 147.637165 78.125) 804 | (xy 147.89531 78.073652) (xy 148.188049 77.878049) (xy 148.237425 77.804153) (xy 148.321578 77.72) (xy 148.475 77.72) 805 | (xy 148.475 77.84925) (xy 148.63375 78.008) (xy 149.733 78.008) (xy 149.733 77.988) (xy 149.987 77.988) 806 | (xy 149.987 78.008) (xy 151.08625 78.008) (xy 151.245 77.84925) (xy 151.245 77.508691) (xy 151.230064 77.472632) 807 | (xy 151.25744 77.335) (xy 151.25744 76.335) (xy 151.227603 76.185) (xy 151.25744 76.035) (xy 151.25744 75.035) 808 | (xy 151.208157 74.787235) (xy 151.067809 74.577191) (xy 150.857765 74.436843) (xy 150.61 74.38756) (xy 149.11 74.38756) 809 | (xy 148.862235 74.436843) (xy 148.728092 74.526475) (xy 148.54831 74.406348) (xy 148.290165 74.355) (xy 148.290161 74.355) 810 | (xy 148.203 74.337663) (xy 148.115839 74.355) (xy 146.516459 74.355) (xy 146.467809 74.282191) (xy 146.257765 74.141843) 811 | (xy 146.01 74.09256) (xy 143.51 74.09256) (xy 143.262235 74.141843) (xy 143.052191 74.282191) (xy 142.911843 74.492235) 812 | (xy 142.86256 74.74) (xy 142.86256 75.74) (xy 142.911843 75.987765) (xy 143.052191 76.197809) (xy 143.115334 76.24) 813 | (xy 143.052191 76.282191) (xy 142.911843 76.492235) (xy 142.86256 76.74) (xy 142.86256 77.74) (xy 142.911843 77.987765) 814 | (xy 143.052191 78.197809) (xy 143.115334 78.24) (xy 143.052191 78.282191) (xy 142.911843 78.492235) (xy 142.86256 78.74) 815 | (xy 142.86256 79.74) (xy 142.911843 79.987765) (xy 143.052191 80.197809) (xy 143.115334 80.24) (xy 143.052191 80.282191) 816 | (xy 142.911843 80.492235) (xy 142.86256 80.74) (xy 142.86256 81.74) (xy 142.911843 81.987765) (xy 143.052191 82.197809) 817 | (xy 143.115334 82.24) (xy 143.052191 82.282191) (xy 142.911843 82.492235) (xy 142.86256 82.74) (xy 142.86256 83.74) 818 | (xy 142.911843 83.987765) (xy 143.052191 84.197809) (xy 143.115334 84.24) (xy 143.052191 84.282191) (xy 142.911843 84.492235) 819 | (xy 142.86256 84.74) (xy 142.86256 85.74) (xy 142.911843 85.987765) (xy 143.052191 86.197809) (xy 143.115334 86.24) 820 | (xy 143.052191 86.282191) (xy 142.911843 86.492235) (xy 142.86256 86.74) (xy 142.86256 87.74) (xy 142.911843 87.987765) 821 | (xy 143.052191 88.197809) (xy 143.11332 88.238655) (xy 142.971673 88.380301) (xy 142.875 88.61369) (xy 142.875 88.95425) 822 | (xy 143.033748 89.112998) (xy 142.875 89.112998) (xy 142.875 89.235326) (xy 142.66 89.19256) (xy 141.66 89.19256) 823 | (xy 141.412235 89.241843) (xy 141.202191 89.382191) (xy 141.16 89.445334) (xy 141.117809 89.382191) (xy 140.907765 89.241843) 824 | (xy 140.66 89.19256) (xy 139.66 89.19256) (xy 139.412235 89.241843) (xy 139.202191 89.382191) (xy 139.16 89.445334) 825 | (xy 139.117809 89.382191) (xy 138.907765 89.241843) (xy 138.66 89.19256) (xy 137.66 89.19256) (xy 137.412235 89.241843) 826 | (xy 137.202191 89.382191) (xy 137.16 89.445334) (xy 137.117809 89.382191) (xy 136.907765 89.241843) (xy 136.66 89.19256) 827 | (xy 135.66 89.19256) (xy 135.412235 89.241843) (xy 135.202191 89.382191) (xy 135.16 89.445334) (xy 135.117809 89.382191) 828 | (xy 134.907765 89.241843) (xy 134.66 89.19256) (xy 133.66 89.19256) (xy 133.412235 89.241843) (xy 133.202191 89.382191) 829 | (xy 133.16 89.445334) (xy 133.117809 89.382191) (xy 132.907765 89.241843) (xy 132.66 89.19256) (xy 131.66 89.19256) 830 | (xy 131.45744 89.232851) (xy 131.45744 88.74) (xy 131.408157 88.492235) (xy 131.267809 88.282191) (xy 131.204666 88.24) 831 | (xy 131.267809 88.197809) (xy 131.408157 87.987765) (xy 131.45744 87.74) (xy 131.45744 86.74) (xy 131.408157 86.492235) 832 | (xy 131.267809 86.282191) (xy 131.204666 86.24) (xy 131.267809 86.197809) (xy 131.408157 85.987765) (xy 131.45744 85.74) 833 | (xy 131.45744 84.74) (xy 131.408157 84.492235) (xy 131.267809 84.282191) (xy 131.204666 84.24) (xy 131.267809 84.197809) 834 | (xy 131.408157 83.987765) (xy 131.45744 83.74) (xy 131.45744 82.74) (xy 131.408157 82.492235) (xy 131.267809 82.282191) 835 | (xy 131.204666 82.24) (xy 131.267809 82.197809) (xy 131.408157 81.987765) (xy 131.45744 81.74) (xy 131.45744 80.74) 836 | (xy 131.408157 80.492235) (xy 131.267809 80.282191) (xy 131.204666 80.24) (xy 131.267809 80.197809) (xy 131.408157 79.987765) 837 | (xy 131.45744 79.74) (xy 131.45744 78.74) (xy 131.408157 78.492235) (xy 131.267809 78.282191) (xy 131.204666 78.24) 838 | (xy 131.267809 78.197809) (xy 131.408157 77.987765) (xy 131.45744 77.74) (xy 131.45744 76.74) (xy 131.408157 76.492235) 839 | (xy 131.267809 76.282191) (xy 131.204666 76.24) (xy 131.267809 76.197809) (xy 131.408157 75.987765) (xy 131.45744 75.74) 840 | (xy 131.45744 74.74) (xy 131.408157 74.492235) (xy 131.267809 74.282191) (xy 131.057765 74.141843) (xy 130.81 74.09256) 841 | (xy 128.31 74.09256) (xy 128.062235 74.141843) (xy 127.852191 74.282191) (xy 127.840959 74.299) (xy 127.509722 74.299) 842 | (xy 127.493126 74.215565) (xy 127.298586 73.924414) (xy 127.007435 73.729874) (xy 126.664 73.66156) (xy 125.739 73.66156) 843 | (xy 125.395565 73.729874) (xy 125.104414 73.924414) (xy 124.909874 74.215565) (xy 124.84156 74.559) (xy 124.84156 75.809) 844 | (xy 124.909874 76.152435) (xy 125.104414 76.443586) (xy 125.395565 76.638126) (xy 125.739 76.70644) (xy 126.664 76.70644) 845 | (xy 127.007435 76.638126) (xy 127.298586 76.443586) (xy 127.493126 76.152435) (xy 127.509722 76.069) (xy 127.766123 76.069) 846 | (xy 127.852191 76.197809) (xy 127.915334 76.24) (xy 127.852191 76.282191) (xy 127.711843 76.492235) (xy 127.66256 76.74) 847 | (xy 127.66256 77.74) (xy 127.711843 77.987765) (xy 127.852191 78.197809) (xy 127.915334 78.24) (xy 127.852191 78.282191) 848 | (xy 127.713336 78.49) (xy 127.509722 78.49) (xy 127.493126 78.406565) (xy 127.298586 78.115414) (xy 127.007435 77.920874) 849 | (xy 126.664 77.85256) (xy 125.739 77.85256) (xy 125.395565 77.920874) (xy 125.104414 78.115414) (xy 124.909874 78.406565) 850 | (xy 124.84156 78.75) (xy 124.84156 80) (xy 124.909874 80.343435) (xy 125.104414 80.634586) (xy 125.395565 80.829126) 851 | (xy 125.739 80.89744) (xy 126.664 80.89744) (xy 127.007435 80.829126) (xy 127.298586 80.634586) (xy 127.493126 80.343435) 852 | (xy 127.509722 80.26) (xy 127.885402 80.26) (xy 127.852191 80.282191) (xy 127.711843 80.492235) (xy 127.66256 80.74) 853 | (xy 127.66256 81.74) (xy 127.711843 81.987765) (xy 127.852191 82.197809) (xy 127.915334 82.24) (xy 127.852191 82.282191) 854 | (xy 127.711843 82.492235) (xy 127.66256 82.74) (xy 127.66256 83.74) (xy 127.711843 83.987765) (xy 127.852191 84.197809) 855 | (xy 127.915334 84.24) (xy 127.852191 84.282191) (xy 127.711843 84.492235) (xy 127.66256 84.74) (xy 127.66256 85.74) 856 | (xy 127.711843 85.987765) (xy 127.852191 86.197809) (xy 127.915334 86.24) (xy 127.852191 86.282191) (xy 127.711843 86.492235) 857 | (xy 127.66256 86.74) (xy 127.66256 87.74) (xy 127.711843 87.987765) (xy 127.852191 88.197809) (xy 127.915334 88.24) 858 | (xy 127.852191 88.282191) (xy 127.803541 88.355) (xy 127.416079 88.355) (xy 126.0705 87.009422) (xy 126.0705 85.221297) 859 | (xy 126.282586 85.079586) (xy 126.477126 84.788435) (xy 126.54544 84.445) (xy 126.54544 83.195) (xy 126.477126 82.851565) 860 | (xy 126.282586 82.560414) (xy 126.0705 82.418703) (xy 126.0705 82.396159) (xy 126.087837 82.308999) (xy 126.0705 82.221839) 861 | (xy 126.0705 82.221835) (xy 126.019152 81.96369) (xy 125.823549 81.670951) (xy 125.749656 81.621577) (xy 124.499456 80.371377) 862 | (xy 124.518126 80.343435) (xy 124.58644 80) (xy 124.58644 78.75) (xy 124.518126 78.406565) (xy 124.323586 78.115414) 863 | (xy 124.1115 77.973703) (xy 124.1115 76.585297) (xy 124.323586 76.443586) (xy 124.518126 76.152435) (xy 124.58644 75.809) 864 | (xy 124.58644 74.559) (xy 124.518126 74.215565) (xy 124.323586 73.924414) (xy 124.032435 73.729874) (xy 123.689 73.66156) 865 | (xy 122.764 73.66156) (xy 122.420565 73.729874) (xy 122.129414 73.924414) (xy 121.934874 74.215565) (xy 121.86656 74.559) 866 | (xy 121.86656 75.809) (xy 121.934874 76.152435) (xy 122.129414 76.443586) (xy 122.3415 76.585297) (xy 122.341501 77.973703) 867 | (xy 122.129414 78.115414) (xy 121.934874 78.406565) (xy 121.86656 78.75) (xy 121.86656 80) (xy 121.934874 80.343435) 868 | (xy 122.129414 80.634586) (xy 122.420565 80.829126) (xy 122.491719 80.84328) (xy 122.539076 80.914154) (xy 122.539078 80.914156) 869 | (xy 122.588452 80.988049) (xy 122.662345 81.037423) (xy 124.146514 82.521593) (xy 124.088414 82.560414) (xy 123.893874 82.851565) 870 | (xy 123.82556 83.195) (xy 123.82556 84.445) (xy 123.893874 84.788435) (xy 124.088414 85.079586) (xy 124.300501 85.221297) 871 | (xy 124.3005 85.866) (xy 123.94725 85.866) (xy 123.7885 86.02475) (xy 123.7885 87.249) (xy 123.8085 87.249) 872 | (xy 123.8085 87.503) (xy 123.7885 87.503) (xy 123.7885 88.72725) (xy 123.94725 88.886) (xy 124.500309 88.886) 873 | (xy 124.556835 88.862586) (xy 122.625845 90.793577) (xy 122.551952 90.842951) (xy 122.502578 90.916844) (xy 122.502576 90.916846) 874 | (xy 122.455219 90.98772) (xy 122.384065 91.001874) (xy 122.092914 91.196414) (xy 121.92 91.455199) (xy 121.747086 91.196414) 875 | (xy 121.5715 91.079092) (xy 121.5715 88.777297) (xy 121.783586 88.635586) (xy 121.978126 88.344435) (xy 122.04644 88.001) 876 | (xy 122.04644 87.66175) (xy 122.314 87.66175) (xy 122.314 88.37731) (xy 122.410673 88.610699) (xy 122.589302 88.789327) 877 | (xy 122.822691 88.886) (xy 123.37575 88.886) (xy 123.5345 88.72725) (xy 123.5345 87.503) (xy 122.47275 87.503) 878 | (xy 122.314 87.66175) (xy 122.04644 87.66175) (xy 122.04644 86.751) (xy 121.978126 86.407565) (xy 121.95616 86.37469) 879 | (xy 122.314 86.37469) (xy 122.314 87.09025) (xy 122.47275 87.249) (xy 123.5345 87.249) (xy 123.5345 86.02475) 880 | (xy 123.37575 85.866) (xy 122.822691 85.866) (xy 122.589302 85.962673) (xy 122.410673 86.141301) (xy 122.314 86.37469) 881 | (xy 121.95616 86.37469) (xy 121.783586 86.116414) (xy 121.5715 85.974703) (xy 121.5715 85.33) (xy 121.92475 85.33) 882 | (xy 122.0835 85.17125) (xy 122.0835 83.947) (xy 122.3375 83.947) (xy 122.3375 85.17125) (xy 122.49625 85.33) 883 | (xy 123.049309 85.33) (xy 123.282698 85.233327) (xy 123.461327 85.054699) (xy 123.558 84.82131) (xy 123.558 84.10575) 884 | (xy 123.39925 83.947) (xy 122.3375 83.947) (xy 122.0835 83.947) (xy 122.0635 83.947) (xy 122.0635 83.693) 885 | (xy 122.0835 83.693) (xy 122.0835 82.46875) (xy 122.3375 82.46875) (xy 122.3375 83.693) (xy 123.39925 83.693) 886 | (xy 123.558 83.53425) (xy 123.558 82.81869) (xy 123.461327 82.585301) (xy 123.282698 82.406673) (xy 123.049309 82.31) 887 | (xy 122.49625 82.31) (xy 122.3375 82.46875) (xy 122.0835 82.46875) (xy 121.92475 82.31) (xy 121.5715 82.31) 888 | (xy 121.5715 71.226908) (xy 121.747086 71.109586) (xy 121.941626 70.818435) (xy 122.00994 70.475) (xy 122.00994 70.13575) 889 | (xy 124.3825 70.13575) (xy 124.3825 70.85131) (xy 124.479173 71.084699) (xy 124.657802 71.263327) (xy 124.891191 71.36) 890 | (xy 125.44425 71.36) (xy 125.603 71.20125) (xy 125.603 69.977) (xy 125.857 69.977) (xy 125.857 71.20125) 891 | (xy 126.01575 71.36) (xy 126.568809 71.36) (xy 126.802198 71.263327) (xy 126.980827 71.084699) (xy 127.0775 70.85131) 892 | (xy 127.0775 70.13575) (xy 126.91875 69.977) (xy 125.857 69.977) (xy 125.603 69.977) (xy 124.54125 69.977) 893 | (xy 124.3825 70.13575) (xy 122.00994 70.13575) (xy 122.00994 69.225) (xy 121.941626 68.881565) (xy 121.91966 68.84869) 894 | (xy 124.3825 68.84869) (xy 124.3825 69.56425) (xy 124.54125 69.723) (xy 125.603 69.723) (xy 125.603 68.49875) 895 | (xy 125.857 68.49875) (xy 125.857 69.723) (xy 126.91875 69.723) (xy 127.0775 69.56425) (xy 127.0775 68.84869) 896 | (xy 126.980827 68.615301) (xy 126.802198 68.436673) (xy 126.568809 68.34) (xy 126.01575 68.34) (xy 125.857 68.49875) 897 | (xy 125.603 68.49875) (xy 125.44425 68.34) (xy 124.891191 68.34) (xy 124.657802 68.436673) (xy 124.479173 68.615301) 898 | (xy 124.3825 68.84869) (xy 121.91966 68.84869) (xy 121.747086 68.590414) (xy 121.455935 68.395874) (xy 121.1125 68.32756) 899 | (xy 120.1875 68.32756) (xy 119.844065 68.395874) (xy 119.552914 68.590414) (xy 119.358374 68.881565) (xy 119.29006 69.225) 900 | (xy 118.745 69.225) (xy 118.745 66.675) (xy 128.143 66.675) 901 | ) 902 | ) 903 | ) 904 | ) 905 | -------------------------------------------------------------------------------- /kicad/esp-dmx-shield.kicad_pcb-bak: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20171130) (host pcbnew "(5.0.1-3-g963ef8bb5)") 2 | 3 | (general 4 | (thickness 1.6) 5 | (drawings 1) 6 | (tracks 48) 7 | (zones 0) 8 | (modules 14) 9 | (nets 13) 10 | ) 11 | 12 | (page A4) 13 | (layers 14 | (0 F.Cu signal) 15 | (31 B.Cu signal) 16 | (32 B.Adhes user) 17 | (33 F.Adhes user) 18 | (34 B.Paste user) 19 | (35 F.Paste user) 20 | (36 B.SilkS user) 21 | (37 F.SilkS user) 22 | (38 B.Mask user) 23 | (39 F.Mask user) 24 | (40 Dwgs.User user) 25 | (41 Cmts.User user) 26 | (42 Eco1.User user) 27 | (43 Eco2.User user) 28 | (44 Edge.Cuts user) 29 | (45 Margin user hide) 30 | (46 B.CrtYd user) 31 | (47 F.CrtYd user) 32 | (48 B.Fab user hide) 33 | (49 F.Fab user hide) 34 | ) 35 | 36 | (setup 37 | (last_trace_width 0.5) 38 | (trace_clearance 0.5) 39 | (zone_clearance 0.508) 40 | (zone_45_only no) 41 | (trace_min 0.4) 42 | (segment_width 0.2) 43 | (edge_width 0.15) 44 | (via_size 0.8) 45 | (via_drill 0.4) 46 | (via_min_size 0.4) 47 | (via_min_drill 0.3) 48 | (uvia_size 0.3) 49 | (uvia_drill 0.1) 50 | (uvias_allowed no) 51 | (uvia_min_size 0.2) 52 | (uvia_min_drill 0.1) 53 | (pcb_text_width 0.3) 54 | (pcb_text_size 1.5 1.5) 55 | (mod_edge_width 0.15) 56 | (mod_text_size 1 1) 57 | (mod_text_width 0.15) 58 | (pad_size 1.425 1.75) 59 | (pad_drill 0) 60 | (pad_to_mask_clearance 0.051) 61 | (solder_mask_min_width 0.25) 62 | (aux_axis_origin 118.11 66.04) 63 | (grid_origin 118.11 66.04) 64 | (visible_elements FFEFFFFF) 65 | (pcbplotparams 66 | (layerselection 0x00000_7fffffff) 67 | (usegerberextensions false) 68 | (usegerberattributes false) 69 | (usegerberadvancedattributes false) 70 | (creategerberjobfile false) 71 | (excludeedgelayer false) 72 | (linewidth 0.100000) 73 | (plotframeref false) 74 | (viasonmask false) 75 | (mode 1) 76 | (useauxorigin false) 77 | (hpglpennumber 1) 78 | (hpglpenspeed 20) 79 | (hpglpendiameter 15.000000) 80 | (psnegative false) 81 | (psa4output false) 82 | (plotreference false) 83 | (plotvalue false) 84 | (plotinvisibletext false) 85 | (padsonsilk true) 86 | (subtractmaskfromsilk false) 87 | (outputformat 2) 88 | (mirror false) 89 | (drillshape 0) 90 | (scaleselection 1) 91 | (outputdirectory "/Users/markus/Library/Mobile Documents/com~apple~CloudDocs/projects/kicad/projects/esp-dmx-shield/")) 92 | ) 93 | 94 | (net 0 "") 95 | (net 1 GND) 96 | (net 2 +5V) 97 | (net 3 +3V3) 98 | (net 4 "Net-(J1-Pad3)") 99 | (net 5 "Net-(J1-Pad2)") 100 | (net 6 "Net-(R1-Pad2)") 101 | (net 7 "Net-(R3-Pad2)") 102 | (net 8 "Net-(SW1-Pad2)") 103 | (net 9 "Net-(R4-Pad2)") 104 | (net 10 "Net-(R6-Pad1)") 105 | (net 11 "Net-(D1-Pad2)") 106 | (net 12 "Net-(J4-Pad1)") 107 | 108 | (net_class Default "This is the default net class." 109 | (clearance 0.5) 110 | (trace_width 0.5) 111 | (via_dia 0.8) 112 | (via_drill 0.4) 113 | (uvia_dia 0.3) 114 | (uvia_drill 0.1) 115 | (diff_pair_gap 0.45) 116 | (diff_pair_width 0.4) 117 | (add_net +3V3) 118 | (add_net +5V) 119 | (add_net GND) 120 | (add_net "Net-(D1-Pad2)") 121 | (add_net "Net-(J1-Pad2)") 122 | (add_net "Net-(J1-Pad3)") 123 | (add_net "Net-(J4-Pad1)") 124 | (add_net "Net-(R1-Pad2)") 125 | (add_net "Net-(R3-Pad2)") 126 | (add_net "Net-(R4-Pad2)") 127 | (add_net "Net-(R6-Pad1)") 128 | (add_net "Net-(SW1-Pad2)") 129 | ) 130 | 131 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5C51BB26) (tstamp 5C5A379E) 132 | (at 122.174 87.376) 133 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 134 | (tags "capacitor handsolder") 135 | (path /5C4EE3AC) 136 | (attr smd) 137 | (fp_text reference C1 (at 0 -1.82 90) (layer F.SilkS) 138 | (effects (font (size 1 1) (thickness 0.15))) 139 | ) 140 | (fp_text value 100nF (at 0 1.82) (layer F.Fab) 141 | (effects (font (size 1 1) (thickness 0.15))) 142 | ) 143 | (fp_text user %R (at 0 0) (layer F.Fab) 144 | (effects (font (size 0.8 0.8) (thickness 0.12))) 145 | ) 146 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 147 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 148 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 149 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 150 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 151 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 152 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 153 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 154 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 155 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 156 | (pad 2 smd roundrect (at 1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 157 | (net 1 GND)) 158 | (pad 1 smd roundrect (at -1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 159 | (net 2 +5V)) 160 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 161 | (at (xyz 0 0 0)) 162 | (scale (xyz 1 1 1)) 163 | (rotate (xyz 0 0 0)) 164 | ) 165 | ) 166 | 167 | (module Package_TO_SOT_THT:TO-220-3_Vertical (layer F.Cu) (tedit 5AC8BA0D) (tstamp 5C5E3027) 168 | (at 125.73 92.456 180) 169 | (descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf") 170 | (tags "TO-220-3 Vertical RM 2.54mm") 171 | (path /5C51CDE9) 172 | (fp_text reference U2 (at 2.54 -4.27 180) (layer F.SilkS) 173 | (effects (font (size 1 1) (thickness 0.15))) 174 | ) 175 | (fp_text value LD1117S33TR_SOT223 (at 2.54 2.5 180) (layer F.Fab) 176 | (effects (font (size 1 1) (thickness 0.15))) 177 | ) 178 | (fp_text user %R (at 2.54 -4.27 180) (layer F.Fab) 179 | (effects (font (size 1 1) (thickness 0.15))) 180 | ) 181 | (fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer F.CrtYd) (width 0.05)) 182 | (fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer F.CrtYd) (width 0.05)) 183 | (fp_line (start -2.71 1.51) (end 7.79 1.51) (layer F.CrtYd) (width 0.05)) 184 | (fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer F.CrtYd) (width 0.05)) 185 | (fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer F.SilkS) (width 0.12)) 186 | (fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer F.SilkS) (width 0.12)) 187 | (fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer F.SilkS) (width 0.12)) 188 | (fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer F.SilkS) (width 0.12)) 189 | (fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer F.SilkS) (width 0.12)) 190 | (fp_line (start -2.58 1.371) (end 7.66 1.371) (layer F.SilkS) (width 0.12)) 191 | (fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer F.SilkS) (width 0.12)) 192 | (fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer F.Fab) (width 0.1)) 193 | (fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer F.Fab) (width 0.1)) 194 | (fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer F.Fab) (width 0.1)) 195 | (fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer F.Fab) (width 0.1)) 196 | (fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer F.Fab) (width 0.1)) 197 | (fp_line (start -2.46 1.25) (end 7.54 1.25) (layer F.Fab) (width 0.1)) 198 | (fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer F.Fab) (width 0.1)) 199 | (pad 3 smd roundrect (at 5.08 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 200 | (net 2 +5V)) 201 | (pad 2 smd roundrect (at 2.54 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 202 | (net 3 +3V3)) 203 | (pad 1 smd roundrect (at 0 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 204 | (net 1 GND)) 205 | (model ${KISYS3DMOD}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl 206 | (at (xyz 0 0 0)) 207 | (scale (xyz 1 1 1)) 208 | (rotate (xyz 0 0 0)) 209 | ) 210 | ) 211 | 212 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBE) (tstamp 5C5A37AF) 213 | (at 123.698 83.82 180) 214 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 215 | (tags "capacitor handsolder") 216 | (path /5C4DCDEE) 217 | (attr smd) 218 | (fp_text reference C2 (at 0 -1.82 180) (layer F.SilkS) 219 | (effects (font (size 1 1) (thickness 0.15))) 220 | ) 221 | (fp_text value 100nF (at 0 1.82 180) (layer F.Fab) 222 | (effects (font (size 1 1) (thickness 0.15))) 223 | ) 224 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 225 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 226 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 227 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 228 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 229 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 230 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 231 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 232 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 233 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 234 | (fp_text user %R (at 0 0 180) (layer F.Fab) 235 | (effects (font (size 0.8 0.8) (thickness 0.12))) 236 | ) 237 | (pad 1 smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 238 | (net 3 +3V3)) 239 | (pad 2 smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 240 | (net 1 GND)) 241 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 242 | (at (xyz 0 0 0)) 243 | (scale (xyz 1 1 1)) 244 | (rotate (xyz 0 0 0)) 245 | ) 246 | ) 247 | 248 | (module Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels (layer F.Cu) (tedit 5A3F6CCC) (tstamp 5C5A37C0) 249 | (at 149.86 76.835 90) 250 | (descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open, labeled with numbers") 251 | (tags "solder jumper open") 252 | (path /5C4DB517) 253 | (attr virtual) 254 | (fp_text reference J1 (at 0 -1.8 90) (layer F.SilkS) 255 | (effects (font (size 1 1) (thickness 0.15))) 256 | ) 257 | (fp_text value Conn_01x03_Male (at 0 1.9 90) (layer F.Fab) 258 | (effects (font (size 1 1) (thickness 0.15))) 259 | ) 260 | (fp_text user 3 (at 2.6 0 90) (layer F.SilkS) 261 | (effects (font (size 1 1) (thickness 0.15))) 262 | ) 263 | (fp_text user 1 (at -2.6 0 90) (layer F.SilkS) 264 | (effects (font (size 1 1) (thickness 0.15))) 265 | ) 266 | (fp_line (start -2.05 1) (end -2.05 -1) (layer F.SilkS) (width 0.12)) 267 | (fp_line (start 2.05 1) (end -2.05 1) (layer F.SilkS) (width 0.12)) 268 | (fp_line (start 2.05 -1) (end 2.05 1) (layer F.SilkS) (width 0.12)) 269 | (fp_line (start -2.05 -1) (end 2.05 -1) (layer F.SilkS) (width 0.12)) 270 | (fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer F.CrtYd) (width 0.05)) 271 | (fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer F.CrtYd) (width 0.05)) 272 | (fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer F.CrtYd) (width 0.05)) 273 | (fp_line (start 2.3 1.25) (end -2.3 1.25) (layer F.CrtYd) (width 0.05)) 274 | (pad 3 smd rect (at 1.3 0 90) (size 1 1.5) (layers F.Cu F.Mask) 275 | (net 4 "Net-(J1-Pad3)")) 276 | (pad 2 smd rect (at 0 0 90) (size 1 1.5) (layers F.Cu F.Mask) 277 | (net 5 "Net-(J1-Pad2)")) 278 | (pad 1 smd rect (at -1.3 0 90) (size 1 1.5) (layers F.Cu F.Mask) 279 | (net 1 GND)) 280 | ) 281 | 282 | (module Connector_Wire:SolderWirePad_1x01_Drill0.8mm (layer F.Cu) (tedit 5A2676A0) (tstamp 5C5A37CA) 283 | (at 120.65 69.85) 284 | (descr "Wire solder connection") 285 | (tags connector) 286 | (path /5C4EBE35) 287 | (attr virtual) 288 | (fp_text reference J2 (at 0 -2.54) (layer F.SilkS) 289 | (effects (font (size 1 1) (thickness 0.15))) 290 | ) 291 | (fp_text value Conn_01x01_Male (at 0 2.54) (layer F.Fab) 292 | (effects (font (size 1 1) (thickness 0.15))) 293 | ) 294 | (fp_text user %R (at 0 0) (layer F.Fab) 295 | (effects (font (size 1 1) (thickness 0.15))) 296 | ) 297 | (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 298 | (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 299 | (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 300 | (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 301 | (pad 1 smd roundrect (at 0 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 302 | (net 2 +5V)) 303 | ) 304 | 305 | (module Connector_Wire:SolderWirePad_1x01_Drill0.8mm (layer F.Cu) (tedit 5A2676A0) (tstamp 5C5A37D4) 306 | (at 125.73 69.85) 307 | (descr "Wire solder connection") 308 | (tags connector) 309 | (path /5C4EC3CB) 310 | (attr virtual) 311 | (fp_text reference J3 (at 0 -2.54) (layer F.SilkS) 312 | (effects (font (size 1 1) (thickness 0.15))) 313 | ) 314 | (fp_text value Conn_01x01_Male (at 0 2.54) (layer F.Fab) 315 | (effects (font (size 1 1) (thickness 0.15))) 316 | ) 317 | (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 318 | (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 319 | (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 320 | (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 321 | (fp_text user %R (at 0 0) (layer F.Fab) 322 | (effects (font (size 1 1) (thickness 0.15))) 323 | ) 324 | (pad 1 smd roundrect (at 0 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 325 | (net 1 GND)) 326 | ) 327 | 328 | (module Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5C5A37E5) 329 | (at 124.714 79.375) 330 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 331 | (tags "resistor handsolder") 332 | (path /5C4DD5FD) 333 | (attr smd) 334 | (fp_text reference R1 (at 0 -1.82) (layer F.SilkS) 335 | (effects (font (size 1 1) (thickness 0.15))) 336 | ) 337 | (fp_text value 4k7 (at 0 1.82) (layer F.Fab) 338 | (effects (font (size 1 1) (thickness 0.15))) 339 | ) 340 | (fp_text user %R (at 0 0) (layer F.Fab) 341 | (effects (font (size 0.8 0.8) (thickness 0.12))) 342 | ) 343 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 344 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 345 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 346 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 347 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 348 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 349 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 350 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 351 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 352 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 353 | (pad 2 smd roundrect (at 1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 354 | (net 6 "Net-(R1-Pad2)")) 355 | (pad 1 smd roundrect (at -1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 356 | (net 3 +3V3)) 357 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 358 | (at (xyz 0 0 0)) 359 | (scale (xyz 1 1 1)) 360 | (rotate (xyz 0 0 0)) 361 | ) 362 | ) 363 | 364 | (module Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5C5A3807) 365 | (at 149.86 90.805 90) 366 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 367 | (tags "resistor handsolder") 368 | (path /5C4DC610) 369 | (attr smd) 370 | (fp_text reference R3 (at 0 -1.82 90) (layer F.SilkS) 371 | (effects (font (size 1 1) (thickness 0.15))) 372 | ) 373 | (fp_text value 4k7 (at 0 1.82 90) (layer F.Fab) 374 | (effects (font (size 1 1) (thickness 0.15))) 375 | ) 376 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 377 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 378 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 379 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 380 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 381 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 382 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 383 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 384 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 385 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 386 | (fp_text user %R (at 0 0 90) (layer F.Fab) 387 | (effects (font (size 0.8 0.8) (thickness 0.12))) 388 | ) 389 | (pad 1 smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 390 | (net 1 GND)) 391 | (pad 2 smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 392 | (net 7 "Net-(R3-Pad2)")) 393 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 394 | (at (xyz 0 0 0)) 395 | (scale (xyz 1 1 1)) 396 | (rotate (xyz 0 0 0)) 397 | ) 398 | ) 399 | 400 | (module Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5C5A3818) 401 | (at 124.714 75.184) 402 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 403 | (tags "resistor handsolder") 404 | (path /5C4DCDF9) 405 | (attr smd) 406 | (fp_text reference R4 (at 0 -1.82) (layer F.SilkS) 407 | (effects (font (size 1 1) (thickness 0.15))) 408 | ) 409 | (fp_text value 4k7 (at 0 1.82) (layer F.Fab) 410 | (effects (font (size 1 1) (thickness 0.15))) 411 | ) 412 | (fp_text user %R (at 0 0) (layer F.Fab) 413 | (effects (font (size 0.8 0.8) (thickness 0.12))) 414 | ) 415 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 416 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 417 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 418 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 419 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 420 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 421 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 422 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 423 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 424 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 425 | (pad 2 smd roundrect (at 1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 426 | (net 9 "Net-(R4-Pad2)")) 427 | (pad 1 smd roundrect (at -1.4875 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 428 | (net 3 +3V3)) 429 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 430 | (at (xyz 0 0 0)) 431 | (scale (xyz 1 1 1)) 432 | (rotate (xyz 0 0 0)) 433 | ) 434 | ) 435 | 436 | (module Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5C5A3829) 437 | (at 130.81 93.98 180) 438 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") 439 | (tags "resistor handsolder") 440 | (path /5C4DEC88) 441 | (attr smd) 442 | (fp_text reference R6 (at 0 -1.82 180) (layer F.SilkS) 443 | (effects (font (size 1 1) (thickness 0.15))) 444 | ) 445 | (fp_text value 4k7 (at 0 1.82 180) (layer F.Fab) 446 | (effects (font (size 1 1) (thickness 0.15))) 447 | ) 448 | (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1)) 449 | (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1)) 450 | (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1)) 451 | (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1)) 452 | (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12)) 453 | (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12)) 454 | (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05)) 455 | (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05)) 456 | (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05)) 457 | (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05)) 458 | (fp_text user %R (at 0 0 180) (layer F.Fab) 459 | (effects (font (size 0.8 0.8) (thickness 0.12))) 460 | ) 461 | (pad 1 smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 462 | (net 10 "Net-(R6-Pad1)")) 463 | (pad 2 smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 464 | (net 3 +3V3)) 465 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 466 | (at (xyz 0 0 0)) 467 | (scale (xyz 1 1 1)) 468 | (rotate (xyz 0 0 0)) 469 | ) 470 | ) 471 | 472 | (module Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm (layer F.Cu) (tedit 5C4DCDE4) (tstamp 5C5A383B) 473 | (at 149.86 71.12 270) 474 | (descr "SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, open") 475 | (tags "solder jumper open") 476 | (path /5C4DFB1D) 477 | (attr virtual) 478 | (fp_text reference SW1 (at 0 -1.8 270) (layer F.SilkS) 479 | (effects (font (size 1 1) (thickness 0.15))) 480 | ) 481 | (fp_text value SW_SPDT (at 0 2 270) (layer F.Fab) 482 | (effects (font (size 1 1) (thickness 0.15))) 483 | ) 484 | (fp_line (start -1.3 1.2) (end -1 1.5) (layer F.SilkS) (width 0.12)) 485 | (fp_line (start -1.6 1.5) (end -1 1.5) (layer F.SilkS) (width 0.12)) 486 | (fp_line (start -1.3 1.2) (end -1.6 1.5) (layer F.SilkS) (width 0.12)) 487 | (fp_line (start -2.05 1) (end -2.05 -1) (layer F.SilkS) (width 0.12)) 488 | (fp_line (start 2.05 1) (end -2.05 1) (layer F.SilkS) (width 0.12)) 489 | (fp_line (start 2.05 -1) (end 2.05 1) (layer F.SilkS) (width 0.12)) 490 | (fp_line (start -2.05 -1) (end 2.05 -1) (layer F.SilkS) (width 0.12)) 491 | (fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer F.CrtYd) (width 0.05)) 492 | (fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer F.CrtYd) (width 0.05)) 493 | (fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer F.CrtYd) (width 0.05)) 494 | (fp_line (start 2.3 1.25) (end -2.3 1.25) (layer F.CrtYd) (width 0.05)) 495 | (pad 3 smd rect (at 1.3 0 270) (size 1 1.5) (layers F.Cu F.Mask) 496 | (net 1 GND)) 497 | (pad 2 smd rect (at 0 0 270) (size 1 1.5) (layers F.Cu F.Mask) 498 | (net 8 "Net-(SW1-Pad2)")) 499 | (pad 1 smd rect (at -1.3 0 270) (size 1 1.5) (layers F.Cu F.Mask) 500 | (net 10 "Net-(R6-Pad1)")) 501 | ) 502 | 503 | (module RF_Module:ESP-12E (layer F.Cu) (tedit 5A030172) (tstamp 5C5A3876) 504 | (at 137.16 78.74) 505 | (descr "Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf") 506 | (tags "Wi-Fi Module") 507 | (path /5C4DAD3D) 508 | (attr smd) 509 | (fp_text reference U1 (at -10.56 -5.26) (layer F.SilkS) 510 | (effects (font (size 1 1) (thickness 0.15))) 511 | ) 512 | (fp_text value ESP-12E (at -0.06 -12.78) (layer F.Fab) 513 | (effects (font (size 1 1) (thickness 0.15))) 514 | ) 515 | (fp_text user Antenna (at -0.06 -7 180) (layer Cmts.User) 516 | (effects (font (size 1 1) (thickness 0.15))) 517 | ) 518 | (fp_text user "KEEP-OUT ZONE" (at 0.03 -9.55 180) (layer Cmts.User) 519 | (effects (font (size 1 1) (thickness 0.15))) 520 | ) 521 | (fp_text user %R (at 0.49 -0.8) (layer F.Fab) 522 | (effects (font (size 1 1) (thickness 0.15))) 523 | ) 524 | (fp_line (start -8 -12) (end 8 -12) (layer F.Fab) (width 0.12)) 525 | (fp_line (start 8 -12) (end 8 12) (layer F.Fab) (width 0.12)) 526 | (fp_line (start 8 12) (end -8 12) (layer F.Fab) (width 0.12)) 527 | (fp_line (start -8 12) (end -8 -3) (layer F.Fab) (width 0.12)) 528 | (fp_line (start -8 -3) (end -7.5 -3.5) (layer F.Fab) (width 0.12)) 529 | (fp_line (start -7.5 -3.5) (end -8 -4) (layer F.Fab) (width 0.12)) 530 | (fp_line (start -8 -4) (end -8 -12) (layer F.Fab) (width 0.12)) 531 | (fp_line (start -9.05 -12.2) (end 9.05 -12.2) (layer F.CrtYd) (width 0.05)) 532 | (fp_line (start 9.05 -12.2) (end 9.05 13.1) (layer F.CrtYd) (width 0.05)) 533 | (fp_line (start 9.05 13.1) (end -9.05 13.1) (layer F.CrtYd) (width 0.05)) 534 | (fp_line (start -9.05 13.1) (end -9.05 -12.2) (layer F.CrtYd) (width 0.05)) 535 | (fp_line (start -8.12 -12.12) (end 8.12 -12.12) (layer F.SilkS) (width 0.12)) 536 | (fp_line (start 8.12 -12.12) (end 8.12 -4.5) (layer F.SilkS) (width 0.12)) 537 | (fp_line (start 8.12 11.5) (end 8.12 12.12) (layer F.SilkS) (width 0.12)) 538 | (fp_line (start 8.12 12.12) (end 6 12.12) (layer F.SilkS) (width 0.12)) 539 | (fp_line (start -6 12.12) (end -8.12 12.12) (layer F.SilkS) (width 0.12)) 540 | (fp_line (start -8.12 12.12) (end -8.12 11.5) (layer F.SilkS) (width 0.12)) 541 | (fp_line (start -8.12 -4.5) (end -8.12 -12.12) (layer F.SilkS) (width 0.12)) 542 | (fp_line (start -8.12 -4.5) (end -8.73 -4.5) (layer F.SilkS) (width 0.12)) 543 | (fp_line (start -8.12 -12.12) (end 8.12 -12.12) (layer Dwgs.User) (width 0.12)) 544 | (fp_line (start 8.12 -12.12) (end 8.12 -4.8) (layer Dwgs.User) (width 0.12)) 545 | (fp_line (start 8.12 -4.8) (end -8.12 -4.8) (layer Dwgs.User) (width 0.12)) 546 | (fp_line (start -8.12 -4.8) (end -8.12 -12.12) (layer Dwgs.User) (width 0.12)) 547 | (fp_line (start -8.12 -9.12) (end -5.12 -12.12) (layer Dwgs.User) (width 0.12)) 548 | (fp_line (start -8.12 -6.12) (end -2.12 -12.12) (layer Dwgs.User) (width 0.12)) 549 | (fp_line (start -6.44 -4.8) (end 0.88 -12.12) (layer Dwgs.User) (width 0.12)) 550 | (fp_line (start -3.44 -4.8) (end 3.88 -12.12) (layer Dwgs.User) (width 0.12)) 551 | (fp_line (start -0.44 -4.8) (end 6.88 -12.12) (layer Dwgs.User) (width 0.12)) 552 | (fp_line (start 2.56 -4.8) (end 8.12 -10.36) (layer Dwgs.User) (width 0.12)) 553 | (fp_line (start 5.56 -4.8) (end 8.12 -7.36) (layer Dwgs.User) (width 0.12)) 554 | (pad 1 smd rect (at -7.6 -3.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 555 | (net 9 "Net-(R4-Pad2)")) 556 | (pad 2 smd rect (at -7.6 -1.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 557 | (pad 3 smd rect (at -7.6 0.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 558 | (net 6 "Net-(R1-Pad2)")) 559 | (pad 4 smd rect (at -7.6 2.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 560 | (pad 5 smd rect (at -7.6 4.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 561 | (pad 6 smd rect (at -7.6 6.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 562 | (pad 7 smd rect (at -7.6 8.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 563 | (pad 8 smd rect (at -7.6 10.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 564 | (net 3 +3V3)) 565 | (pad 9 smd rect (at -5 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 566 | (pad 10 smd rect (at -3 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 567 | (pad 11 smd rect (at -1 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 568 | (pad 12 smd rect (at 1 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 569 | (pad 13 smd rect (at 3 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 570 | (pad 14 smd rect (at 5 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 571 | (pad 15 smd rect (at 7.6 10.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 572 | (net 1 GND)) 573 | (pad 16 smd rect (at 7.6 8.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 574 | (net 7 "Net-(R3-Pad2)")) 575 | (pad 17 smd rect (at 7.6 6.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 576 | (net 12 "Net-(J4-Pad1)")) 577 | (pad 18 smd rect (at 7.6 4.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 578 | (net 8 "Net-(SW1-Pad2)")) 579 | (pad 19 smd rect (at 7.6 2.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 580 | (net 11 "Net-(D1-Pad2)")) 581 | (pad 20 smd rect (at 7.6 0.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)) 582 | (pad 21 smd rect (at 7.6 -1.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 583 | (net 5 "Net-(J1-Pad2)")) 584 | (pad 22 smd rect (at 7.6 -3.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask) 585 | (net 4 "Net-(J1-Pad3)")) 586 | (model ${KISYS3DMOD}/RF_Module.3dshapes/ESP-12E.wrl 587 | (at (xyz 0 0 0)) 588 | (scale (xyz 1 1 1)) 589 | (rotate (xyz 0 0 0)) 590 | ) 591 | ) 592 | 593 | (module Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm (layer F.Cu) (tedit 5A3EABFC) (tstamp 5C5A3055) 594 | (at 149.86 81.28 180) 595 | (descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open") 596 | (tags "solder jumper open") 597 | (path /5C502D68) 598 | (attr virtual) 599 | (fp_text reference D1 (at 0 -1.8 180) (layer F.SilkS) 600 | (effects (font (size 1 1) (thickness 0.15))) 601 | ) 602 | (fp_text value LED (at 0 1.9 180) (layer F.Fab) 603 | (effects (font (size 1 1) (thickness 0.15))) 604 | ) 605 | (fp_line (start -1.4 1) (end -1.4 -1) (layer F.SilkS) (width 0.12)) 606 | (fp_line (start 1.4 1) (end -1.4 1) (layer F.SilkS) (width 0.12)) 607 | (fp_line (start 1.4 -1) (end 1.4 1) (layer F.SilkS) (width 0.12)) 608 | (fp_line (start -1.4 -1) (end 1.4 -1) (layer F.SilkS) (width 0.12)) 609 | (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05)) 610 | (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05)) 611 | (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05)) 612 | (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05)) 613 | (pad 2 smd rect (at 0.65 0 180) (size 1 1.5) (layers F.Cu F.Mask) 614 | (net 11 "Net-(D1-Pad2)")) 615 | (pad 1 smd rect (at -0.65 0 180) (size 1 1.5) (layers F.Cu F.Mask) 616 | (net 1 GND)) 617 | ) 618 | 619 | (module Connector_Wire:SolderWirePad_1x01_Drill0.8mm (layer F.Cu) (tedit 5A2676A0) (tstamp 5C5A305F) 620 | (at 149.86 86.36) 621 | (descr "Wire solder connection") 622 | (tags connector) 623 | (path /5C4F6D43) 624 | (attr virtual) 625 | (fp_text reference J4 (at 0 -2.54) (layer F.SilkS) 626 | (effects (font (size 1 1) (thickness 0.15))) 627 | ) 628 | (fp_text value Conn_01x01_Male (at 0 2.54) (layer F.Fab) 629 | (effects (font (size 1 1) (thickness 0.15))) 630 | ) 631 | (fp_text user %R (at 0 0) (layer F.Fab) 632 | (effects (font (size 1 1) (thickness 0.15))) 633 | ) 634 | (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 635 | (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 636 | (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) 637 | (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) 638 | (pad 1 smd roundrect (at 0 0) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439) 639 | (net 12 "Net-(J4-Pad1)")) 640 | ) 641 | 642 | (gr_poly (pts (xy 118.618 66.548) (xy 156.21 66.548) (xy 156.21 96.012) (xy 118.618 96.012)) (layer Margin) (width 0.15)) 643 | 644 | (segment (start 125.6935 92.0385) (end 125.73 92.075) (width 0.5) (layer F.Cu) (net 1)) 645 | (segment (start 120.6865 92.4195) (end 120.65 92.456) (width 0.5) (layer F.Cu) (net 2)) 646 | (segment (start 120.6865 87.376) (end 120.6865 92.4195) (width 0.5) (layer F.Cu) (net 2)) 647 | (segment (start 120.6865 69.8865) (end 120.6865 87.376) (width 0.5) (layer F.Cu) (net 2)) 648 | (segment (start 129.3225 93.98) (end 129.3225 89.4775) (width 0.5) (layer F.Cu) (net 3)) 649 | (segment (start 125.1855 87.376) (end 125.1855 83.82) (width 0.5) (layer F.Cu) (net 3)) 650 | (segment (start 127.0495 89.24) (end 125.1855 87.376) (width 0.5) (layer F.Cu) (net 3)) 651 | (segment (start 129.56 89.24) (end 127.0495 89.24) (width 0.5) (layer F.Cu) (net 3)) 652 | (segment (start 125.431 89.24) (end 127.81 89.24) (width 0.5) (layer F.Cu) (net 3)) 653 | (segment (start 123.19 91.481) (end 125.431 89.24) (width 0.5) (layer F.Cu) (net 3)) 654 | (segment (start 123.19 92.456) (end 123.19 91.481) (width 0.5) (layer F.Cu) (net 3)) 655 | (segment (start 123.2265 75.184) (end 123.2265 79.375) (width 0.5) (layer F.Cu) (net 3)) 656 | (segment (start 125.1855 82.309) (end 125.1855 83.82) (width 0.5) (layer F.Cu) (net 3)) 657 | (segment (start 123.2265 80.35) (end 125.1855 82.309) (width 0.5) (layer F.Cu) (net 3)) 658 | (segment (start 123.2265 79.375) (end 123.2265 80.35) (width 0.5) (layer F.Cu) (net 3)) 659 | (segment (start 148.203 75.24) (end 144.76 75.24) (width 0.5) (layer F.Cu) (net 4)) 660 | (segment (start 148.498 75.535) (end 148.203 75.24) (width 0.5) (layer F.Cu) (net 4)) 661 | (segment (start 149.86 75.535) (end 148.498 75.535) (width 0.5) (layer F.Cu) (net 4)) 662 | (segment (start 144.76 77.24) (end 147.55 77.24) (width 0.5) (layer F.Cu) (net 5)) 663 | (segment (start 147.955 76.835) (end 149.86 76.835) (width 0.5) (layer F.Cu) (net 5)) 664 | (segment (start 147.55 77.24) (end 147.955 76.835) (width 0.5) (layer F.Cu) (net 5)) 665 | (segment (start 126.2015 79.375) (end 129.425 79.375) (width 0.5) (layer F.Cu) (net 6)) 666 | (segment (start 146.51 87.24) (end 147.066 87.796) (width 0.5) (layer F.Cu) (net 7)) 667 | (segment (start 144.76 87.24) (end 146.51 87.24) (width 0.5) (layer F.Cu) (net 7)) 668 | (segment (start 147.066 87.796) (end 147.066 88.392) (width 0.5) (layer F.Cu) (net 7)) 669 | (segment (start 147.9915 89.3175) (end 149.86 89.3175) (width 0.5) (layer F.Cu) (net 7)) 670 | (segment (start 147.066 88.392) (end 147.9915 89.3175) (width 0.5) (layer F.Cu) (net 7)) 671 | (segment (start 146.51 83.24) (end 147.09 83.82) (width 0.5) (layer F.Cu) (net 8)) 672 | (segment (start 144.76 83.24) (end 146.51 83.24) (width 0.5) (layer F.Cu) (net 8)) 673 | (segment (start 147.09 83.82) (end 152.146 83.82) (width 0.5) (layer F.Cu) (net 8)) 674 | (segment (start 152.146 83.82) (end 152.654 83.312) (width 0.5) (layer F.Cu) (net 8)) 675 | (segment (start 152.654 71.628) (end 152.654 73.152) (width 0.5) (layer F.Cu) (net 8)) 676 | (segment (start 149.86 71.12) (end 152.146 71.12) (width 0.5) (layer F.Cu) (net 8)) 677 | (segment (start 152.146 71.12) (end 152.654 71.628) (width 0.5) (layer F.Cu) (net 8)) 678 | (segment (start 152.654 73.152) (end 152.654 72.613998) (width 0.5) (layer F.Cu) (net 8)) 679 | (segment (start 152.654 83.312) (end 152.654 73.152) (width 0.5) (layer F.Cu) (net 8)) 680 | (segment (start 129.504 75.184) (end 129.56 75.24) (width 0.5) (layer F.Cu) (net 9)) 681 | (segment (start 126.2015 75.184) (end 129.504 75.184) (width 0.5) (layer F.Cu) (net 9)) 682 | (segment (start 153.894 69.82) (end 149.86 69.82) (width 0.5) (layer F.Cu) (net 10)) 683 | (segment (start 154.686 93.472) (end 154.686 70.612) (width 0.5) (layer F.Cu) (net 10)) 684 | (segment (start 154.686 70.612) (end 153.894 69.82) (width 0.5) (layer F.Cu) (net 10)) 685 | (segment (start 154.178 93.98) (end 154.686 93.472) (width 0.5) (layer F.Cu) (net 10)) 686 | (segment (start 132.2975 93.98) (end 154.178 93.98) (width 0.5) (layer F.Cu) (net 10)) 687 | (segment (start 149.17 81.24) (end 149.21 81.28) (width 0.5) (layer F.Cu) (net 11)) 688 | (segment (start 144.76 81.24) (end 149.17 81.24) (width 0.5) (layer F.Cu) (net 11)) 689 | (segment (start 147.63 86.36) (end 149.86 86.36) (width 0.5) (layer F.Cu) (net 12)) 690 | (segment (start 146.51 85.24) (end 147.63 86.36) (width 0.5) (layer F.Cu) (net 12)) 691 | (segment (start 144.76 85.24) (end 146.51 85.24) (width 0.5) (layer F.Cu) (net 12)) 692 | 693 | (zone (net 1) (net_name GND) (layer F.Cu) (tstamp 5C5EFB00) (hatch edge 0.508) 694 | (connect_pads (clearance 0.508)) 695 | (min_thickness 0.254) 696 | (fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508)) 697 | (polygon 698 | (pts 699 | (xy 128.27 66.548) (xy 118.618 66.548) (xy 118.618 95.885) (xy 156.21 95.885) (xy 156.21 66.548) 700 | (xy 146.05 66.548) (xy 146.05 73.66) (xy 128.27 73.66) 701 | ) 702 | ) 703 | (filled_polygon 704 | (pts 705 | (xy 128.143 73.66) (xy 128.152667 73.708601) (xy 128.180197 73.749803) (xy 128.221399 73.777333) (xy 128.27 73.787) 706 | (xy 146.05 73.787) (xy 146.098601 73.777333) (xy 146.139803 73.749803) (xy 146.167333 73.708601) (xy 146.177 73.66) 707 | (xy 146.177 72.70575) (xy 148.475 72.70575) (xy 148.475 73.046309) (xy 148.571673 73.279698) (xy 148.750301 73.458327) 708 | (xy 148.98369 73.555) (xy 149.57425 73.555) (xy 149.733 73.39625) (xy 149.733 72.547) (xy 149.987 72.547) 709 | (xy 149.987 73.39625) (xy 150.14575 73.555) (xy 150.73631 73.555) (xy 150.969699 73.458327) (xy 151.148327 73.279698) 710 | (xy 151.245 73.046309) (xy 151.245 72.70575) (xy 151.08625 72.547) (xy 149.987 72.547) (xy 149.733 72.547) 711 | (xy 148.63375 72.547) (xy 148.475 72.70575) (xy 146.177 72.70575) (xy 146.177 66.675) (xy 156.083 66.675) 712 | (xy 156.083 95.758) (xy 118.745 95.758) (xy 118.745 69.225) (xy 119.29006 69.225) (xy 119.29006 70.475) 713 | (xy 119.358374 70.818435) (xy 119.552914 71.109586) (xy 119.8015 71.275685) (xy 119.801501 85.974703) (xy 119.589414 86.116414) 714 | (xy 119.394874 86.407565) (xy 119.32656 86.751) (xy 119.32656 88.001) (xy 119.394874 88.344435) (xy 119.589414 88.635586) 715 | (xy 119.8015 88.777297) (xy 119.801501 91.030314) (xy 119.552914 91.196414) (xy 119.358374 91.487565) (xy 119.29006 91.831) 716 | (xy 119.29006 93.081) (xy 119.358374 93.424435) (xy 119.552914 93.715586) (xy 119.844065 93.910126) (xy 120.1875 93.97844) 717 | (xy 121.1125 93.97844) (xy 121.455935 93.910126) (xy 121.747086 93.715586) (xy 121.92 93.456801) (xy 122.092914 93.715586) 718 | (xy 122.384065 93.910126) (xy 122.7275 93.97844) (xy 123.6525 93.97844) (xy 123.995935 93.910126) (xy 124.287086 93.715586) 719 | (xy 124.412028 93.528596) (xy 124.479173 93.690699) (xy 124.657802 93.869327) (xy 124.891191 93.966) (xy 125.44425 93.966) 720 | (xy 125.603 93.80725) (xy 125.603 92.583) (xy 125.857 92.583) (xy 125.857 93.80725) (xy 126.01575 93.966) 721 | (xy 126.568809 93.966) (xy 126.802198 93.869327) (xy 126.980827 93.690699) (xy 127.0775 93.45731) (xy 127.0775 92.74175) 722 | (xy 126.91875 92.583) (xy 125.857 92.583) (xy 125.603 92.583) (xy 125.583 92.583) (xy 125.583 92.329) 723 | (xy 125.603 92.329) (xy 125.603 91.10475) (xy 125.857 91.10475) (xy 125.857 92.329) (xy 126.91875 92.329) 724 | (xy 127.0775 92.17025) (xy 127.0775 91.45469) (xy 126.980827 91.221301) (xy 126.802198 91.042673) (xy 126.568809 90.946) 725 | (xy 126.01575 90.946) (xy 125.857 91.10475) (xy 125.603 91.10475) (xy 125.44425 90.946) (xy 124.976579 90.946) 726 | (xy 125.797579 90.125) (xy 126.96234 90.125) (xy 127.049499 90.142337) (xy 127.136659 90.125) (xy 127.803541 90.125) 727 | (xy 127.852191 90.197809) (xy 128.062235 90.338157) (xy 128.31 90.38744) (xy 128.437501 90.38744) (xy 128.4375 92.578703) 728 | (xy 128.225414 92.720414) (xy 128.030874 93.011565) (xy 127.96256 93.355) (xy 127.96256 94.605) (xy 128.030874 94.948435) 729 | (xy 128.225414 95.239586) (xy 128.516565 95.434126) (xy 128.86 95.50244) (xy 129.785 95.50244) (xy 130.128435 95.434126) 730 | (xy 130.419586 95.239586) (xy 130.614126 94.948435) (xy 130.68244 94.605) (xy 130.68244 93.355) (xy 130.614126 93.011565) 731 | (xy 130.419586 92.720414) (xy 130.2075 92.578703) (xy 130.2075 90.38744) (xy 130.81 90.38744) (xy 131.01256 90.347149) 732 | (xy 131.01256 91.64) (xy 131.061843 91.887765) (xy 131.202191 92.097809) (xy 131.412235 92.238157) (xy 131.66 92.28744) 733 | (xy 132.66 92.28744) (xy 132.907765 92.238157) (xy 133.117809 92.097809) (xy 133.16 92.034666) (xy 133.202191 92.097809) 734 | (xy 133.412235 92.238157) (xy 133.66 92.28744) (xy 134.66 92.28744) (xy 134.907765 92.238157) (xy 135.117809 92.097809) 735 | (xy 135.16 92.034666) (xy 135.202191 92.097809) (xy 135.412235 92.238157) (xy 135.66 92.28744) (xy 136.66 92.28744) 736 | (xy 136.907765 92.238157) (xy 137.117809 92.097809) (xy 137.16 92.034666) (xy 137.202191 92.097809) (xy 137.412235 92.238157) 737 | (xy 137.66 92.28744) (xy 138.66 92.28744) (xy 138.907765 92.238157) (xy 139.117809 92.097809) (xy 139.16 92.034666) 738 | (xy 139.202191 92.097809) (xy 139.412235 92.238157) (xy 139.66 92.28744) (xy 140.66 92.28744) (xy 140.907765 92.238157) 739 | (xy 141.117809 92.097809) (xy 141.16 92.034666) (xy 141.202191 92.097809) (xy 141.412235 92.238157) (xy 141.66 92.28744) 740 | (xy 142.66 92.28744) (xy 142.907765 92.238157) (xy 143.117809 92.097809) (xy 143.258157 91.887765) (xy 143.30744 91.64) 741 | (xy 143.30744 91.453691) (xy 148.35 91.453691) (xy 148.35 92.00675) (xy 148.50875 92.1655) (xy 149.733 92.1655) 742 | (xy 149.733 91.10375) (xy 149.987 91.10375) (xy 149.987 92.1655) (xy 151.21125 92.1655) (xy 151.37 92.00675) 743 | (xy 151.37 91.453691) (xy 151.273327 91.220302) (xy 151.094699 91.041673) (xy 150.86131 90.945) (xy 150.14575 90.945) 744 | (xy 149.987 91.10375) (xy 149.733 91.10375) (xy 149.57425 90.945) (xy 148.85869 90.945) (xy 148.625301 91.041673) 745 | (xy 148.446673 91.220302) (xy 148.35 91.453691) (xy 143.30744 91.453691) (xy 143.30744 90.343416) (xy 143.383691 90.375) 746 | (xy 144.47425 90.375) (xy 144.633 90.21625) (xy 144.633 89.367) (xy 144.887 89.367) (xy 144.887 90.21625) 747 | (xy 145.04575 90.375) (xy 146.136309 90.375) (xy 146.369698 90.278327) (xy 146.548327 90.099699) (xy 146.645 89.86631) 748 | (xy 146.645 89.52575) (xy 146.48625 89.367) (xy 144.887 89.367) (xy 144.633 89.367) (xy 144.613 89.367) 749 | (xy 144.613 89.113) (xy 144.633 89.113) (xy 144.633 89.093) (xy 144.887 89.093) (xy 144.887 89.113) 750 | (xy 146.48625 89.113) (xy 146.510836 89.088414) (xy 147.304077 89.881656) (xy 147.353451 89.955549) (xy 147.427344 90.004923) 751 | (xy 147.427345 90.004924) (xy 147.604709 90.123435) (xy 147.64619 90.151152) (xy 147.904335 90.2025) (xy 147.904339 90.2025) 752 | (xy 147.9915 90.219837) (xy 148.078661 90.2025) (xy 148.458703 90.2025) (xy 148.600414 90.414586) (xy 148.891565 90.609126) 753 | (xy 149.235 90.67744) (xy 150.485 90.67744) (xy 150.828435 90.609126) (xy 151.119586 90.414586) (xy 151.314126 90.123435) 754 | (xy 151.38244 89.78) (xy 151.38244 88.855) (xy 151.314126 88.511565) (xy 151.119586 88.220414) (xy 150.828435 88.025874) 755 | (xy 150.485 87.95756) (xy 149.235 87.95756) (xy 148.891565 88.025874) (xy 148.600414 88.220414) (xy 148.458703 88.4325) 756 | (xy 148.358079 88.4325) (xy 147.951 88.025422) (xy 147.951 87.883161) (xy 147.968337 87.796) (xy 147.951 87.708839) 757 | (xy 147.951 87.708835) (xy 147.899652 87.45069) (xy 147.762214 87.245) (xy 148.551778 87.245) (xy 148.568374 87.328435) 758 | (xy 148.762914 87.619586) (xy 149.054065 87.814126) (xy 149.3975 87.88244) (xy 150.3225 87.88244) (xy 150.665935 87.814126) 759 | (xy 150.957086 87.619586) (xy 151.151626 87.328435) (xy 151.21994 86.985) (xy 151.21994 85.735) (xy 151.151626 85.391565) 760 | (xy 150.957086 85.100414) (xy 150.665935 84.905874) (xy 150.3225 84.83756) (xy 149.3975 84.83756) (xy 149.054065 84.905874) 761 | (xy 148.762914 85.100414) (xy 148.568374 85.391565) (xy 148.551778 85.475) (xy 147.996579 85.475) (xy 147.226578 84.705) 762 | (xy 152.058839 84.705) (xy 152.146 84.722337) (xy 152.233161 84.705) (xy 152.233165 84.705) (xy 152.49131 84.653652) 763 | (xy 152.784049 84.458049) (xy 152.833425 84.384153) (xy 153.218154 83.999424) (xy 153.292049 83.950049) (xy 153.487652 83.65731) 764 | (xy 153.539 83.399165) (xy 153.539 83.399161) (xy 153.556337 83.312001) (xy 153.539 83.224841) (xy 153.539 71.715159) 765 | (xy 153.556337 71.627999) (xy 153.539 71.540839) (xy 153.539 71.540835) (xy 153.487652 71.28269) (xy 153.292049 70.989951) 766 | (xy 153.218154 70.940576) (xy 152.982578 70.705) (xy 153.527422 70.705) (xy 153.801001 70.97858) (xy 153.801 93.095) 767 | (xy 151.37 93.095) (xy 151.37 92.57825) (xy 151.21125 92.4195) (xy 149.987 92.4195) (xy 149.987 92.4395) 768 | (xy 149.733 92.4395) (xy 149.733 92.4195) (xy 148.50875 92.4195) (xy 148.35 92.57825) (xy 148.35 93.095) 769 | (xy 133.605722 93.095) (xy 133.589126 93.011565) (xy 133.394586 92.720414) (xy 133.103435 92.525874) (xy 132.76 92.45756) 770 | (xy 131.835 92.45756) (xy 131.491565 92.525874) (xy 131.200414 92.720414) (xy 131.005874 93.011565) (xy 130.93756 93.355) 771 | (xy 130.93756 94.605) (xy 131.005874 94.948435) (xy 131.200414 95.239586) (xy 131.491565 95.434126) (xy 131.835 95.50244) 772 | (xy 132.76 95.50244) (xy 133.103435 95.434126) (xy 133.394586 95.239586) (xy 133.589126 94.948435) (xy 133.605722 94.865) 773 | (xy 154.090839 94.865) (xy 154.178 94.882337) (xy 154.265161 94.865) (xy 154.265165 94.865) (xy 154.52331 94.813652) 774 | (xy 154.816049 94.618049) (xy 154.865425 94.544153) (xy 155.250154 94.159424) (xy 155.324049 94.110049) (xy 155.519652 93.81731) 775 | (xy 155.571 93.559165) (xy 155.571 93.559161) (xy 155.588337 93.472001) (xy 155.571 93.384841) (xy 155.571 70.699159) 776 | (xy 155.588337 70.611999) (xy 155.571 70.524839) (xy 155.571 70.524835) (xy 155.519652 70.26669) (xy 155.324049 69.973951) 777 | (xy 155.250156 69.924577) (xy 154.581425 69.255847) (xy 154.532049 69.181951) (xy 154.23931 68.986348) (xy 153.981165 68.935) 778 | (xy 153.981161 68.935) (xy 153.894 68.917663) (xy 153.806839 68.935) (xy 151.116459 68.935) (xy 151.067809 68.862191) 779 | (xy 150.857765 68.721843) (xy 150.61 68.67256) (xy 149.11 68.67256) (xy 148.862235 68.721843) (xy 148.652191 68.862191) 780 | (xy 148.511843 69.072235) (xy 148.46256 69.32) (xy 148.46256 70.32) (xy 148.492397 70.47) (xy 148.46256 70.62) 781 | (xy 148.46256 71.62) (xy 148.489936 71.757632) (xy 148.475 71.793691) (xy 148.475 72.13425) (xy 148.63375 72.293) 782 | (xy 149.733 72.293) (xy 149.733 72.273) (xy 149.987 72.273) (xy 149.987 72.293) (xy 151.08625 72.293) 783 | (xy 151.245 72.13425) (xy 151.245 72.005) (xy 151.769 72.005) (xy 151.769001 72.52683) (xy 151.769 72.526833) 784 | (xy 151.769 73.239164) (xy 151.769001 73.239169) (xy 151.769 82.935) (xy 147.456579 82.935) (xy 147.197425 82.675846) 785 | (xy 147.148049 82.601951) (xy 146.85531 82.406348) (xy 146.597165 82.355) (xy 146.597161 82.355) (xy 146.51 82.337663) 786 | (xy 146.505476 82.338563) (xy 146.467809 82.282191) (xy 146.404666 82.24) (xy 146.467809 82.197809) (xy 146.516459 82.125) 787 | (xy 148.081456 82.125) (xy 148.111843 82.277765) (xy 148.252191 82.487809) (xy 148.462235 82.628157) (xy 148.71 82.67744) 788 | (xy 149.71 82.67744) (xy 149.847632 82.650064) (xy 149.883691 82.665) (xy 150.22425 82.665) (xy 150.383 82.50625) 789 | (xy 150.383 81.407) (xy 150.637 81.407) (xy 150.637 82.50625) (xy 150.79575 82.665) (xy 151.136309 82.665) 790 | (xy 151.369698 82.568327) (xy 151.548327 82.389699) (xy 151.645 82.15631) (xy 151.645 81.56575) (xy 151.48625 81.407) 791 | (xy 150.637 81.407) (xy 150.383 81.407) (xy 150.363 81.407) (xy 150.363 81.153) (xy 150.383 81.153) 792 | (xy 150.383 80.05375) (xy 150.637 80.05375) (xy 150.637 81.153) (xy 151.48625 81.153) (xy 151.645 80.99425) 793 | (xy 151.645 80.40369) (xy 151.548327 80.170301) (xy 151.369698 79.991673) (xy 151.136309 79.895) (xy 150.79575 79.895) 794 | (xy 150.637 80.05375) (xy 150.383 80.05375) (xy 150.22425 79.895) (xy 149.883691 79.895) (xy 149.847632 79.909936) 795 | (xy 149.71 79.88256) (xy 148.71 79.88256) (xy 148.462235 79.931843) (xy 148.252191 80.072191) (xy 148.111843 80.282235) 796 | (xy 148.097369 80.355) (xy 146.516459 80.355) (xy 146.467809 80.282191) (xy 146.404666 80.24) (xy 146.467809 80.197809) 797 | (xy 146.608157 79.987765) (xy 146.65744 79.74) (xy 146.65744 78.74) (xy 146.608157 78.492235) (xy 146.560392 78.42075) 798 | (xy 148.475 78.42075) (xy 148.475 78.761309) (xy 148.571673 78.994698) (xy 148.750301 79.173327) (xy 148.98369 79.27) 799 | (xy 149.57425 79.27) (xy 149.733 79.11125) (xy 149.733 78.262) (xy 149.987 78.262) (xy 149.987 79.11125) 800 | (xy 150.14575 79.27) (xy 150.73631 79.27) (xy 150.969699 79.173327) (xy 151.148327 78.994698) (xy 151.245 78.761309) 801 | (xy 151.245 78.42075) (xy 151.08625 78.262) (xy 149.987 78.262) (xy 149.733 78.262) (xy 148.63375 78.262) 802 | (xy 148.475 78.42075) (xy 146.560392 78.42075) (xy 146.467809 78.282191) (xy 146.404666 78.24) (xy 146.467809 78.197809) 803 | (xy 146.516459 78.125) (xy 147.462839 78.125) (xy 147.55 78.142337) (xy 147.637161 78.125) (xy 147.637165 78.125) 804 | (xy 147.89531 78.073652) (xy 148.188049 77.878049) (xy 148.237425 77.804153) (xy 148.321578 77.72) (xy 148.475 77.72) 805 | (xy 148.475 77.84925) (xy 148.63375 78.008) (xy 149.733 78.008) (xy 149.733 77.988) (xy 149.987 77.988) 806 | (xy 149.987 78.008) (xy 151.08625 78.008) (xy 151.245 77.84925) (xy 151.245 77.508691) (xy 151.230064 77.472632) 807 | (xy 151.25744 77.335) (xy 151.25744 76.335) (xy 151.227603 76.185) (xy 151.25744 76.035) (xy 151.25744 75.035) 808 | (xy 151.208157 74.787235) (xy 151.067809 74.577191) (xy 150.857765 74.436843) (xy 150.61 74.38756) (xy 149.11 74.38756) 809 | (xy 148.862235 74.436843) (xy 148.728092 74.526475) (xy 148.54831 74.406348) (xy 148.290165 74.355) (xy 148.290161 74.355) 810 | (xy 148.203 74.337663) (xy 148.115839 74.355) (xy 146.516459 74.355) (xy 146.467809 74.282191) (xy 146.257765 74.141843) 811 | (xy 146.01 74.09256) (xy 143.51 74.09256) (xy 143.262235 74.141843) (xy 143.052191 74.282191) (xy 142.911843 74.492235) 812 | (xy 142.86256 74.74) (xy 142.86256 75.74) (xy 142.911843 75.987765) (xy 143.052191 76.197809) (xy 143.115334 76.24) 813 | (xy 143.052191 76.282191) (xy 142.911843 76.492235) (xy 142.86256 76.74) (xy 142.86256 77.74) (xy 142.911843 77.987765) 814 | (xy 143.052191 78.197809) (xy 143.115334 78.24) (xy 143.052191 78.282191) (xy 142.911843 78.492235) (xy 142.86256 78.74) 815 | (xy 142.86256 79.74) (xy 142.911843 79.987765) (xy 143.052191 80.197809) (xy 143.115334 80.24) (xy 143.052191 80.282191) 816 | (xy 142.911843 80.492235) (xy 142.86256 80.74) (xy 142.86256 81.74) (xy 142.911843 81.987765) (xy 143.052191 82.197809) 817 | (xy 143.115334 82.24) (xy 143.052191 82.282191) (xy 142.911843 82.492235) (xy 142.86256 82.74) (xy 142.86256 83.74) 818 | (xy 142.911843 83.987765) (xy 143.052191 84.197809) (xy 143.115334 84.24) (xy 143.052191 84.282191) (xy 142.911843 84.492235) 819 | (xy 142.86256 84.74) (xy 142.86256 85.74) (xy 142.911843 85.987765) (xy 143.052191 86.197809) (xy 143.115334 86.24) 820 | (xy 143.052191 86.282191) (xy 142.911843 86.492235) (xy 142.86256 86.74) (xy 142.86256 87.74) (xy 142.911843 87.987765) 821 | (xy 143.052191 88.197809) (xy 143.11332 88.238655) (xy 142.971673 88.380301) (xy 142.875 88.61369) (xy 142.875 88.95425) 822 | (xy 143.033748 89.112998) (xy 142.875 89.112998) (xy 142.875 89.235326) (xy 142.66 89.19256) (xy 141.66 89.19256) 823 | (xy 141.412235 89.241843) (xy 141.202191 89.382191) (xy 141.16 89.445334) (xy 141.117809 89.382191) (xy 140.907765 89.241843) 824 | (xy 140.66 89.19256) (xy 139.66 89.19256) (xy 139.412235 89.241843) (xy 139.202191 89.382191) (xy 139.16 89.445334) 825 | (xy 139.117809 89.382191) (xy 138.907765 89.241843) (xy 138.66 89.19256) (xy 137.66 89.19256) (xy 137.412235 89.241843) 826 | (xy 137.202191 89.382191) (xy 137.16 89.445334) (xy 137.117809 89.382191) (xy 136.907765 89.241843) (xy 136.66 89.19256) 827 | (xy 135.66 89.19256) (xy 135.412235 89.241843) (xy 135.202191 89.382191) (xy 135.16 89.445334) (xy 135.117809 89.382191) 828 | (xy 134.907765 89.241843) (xy 134.66 89.19256) (xy 133.66 89.19256) (xy 133.412235 89.241843) (xy 133.202191 89.382191) 829 | (xy 133.16 89.445334) (xy 133.117809 89.382191) (xy 132.907765 89.241843) (xy 132.66 89.19256) (xy 131.66 89.19256) 830 | (xy 131.45744 89.232851) (xy 131.45744 88.74) (xy 131.408157 88.492235) (xy 131.267809 88.282191) (xy 131.204666 88.24) 831 | (xy 131.267809 88.197809) (xy 131.408157 87.987765) (xy 131.45744 87.74) (xy 131.45744 86.74) (xy 131.408157 86.492235) 832 | (xy 131.267809 86.282191) (xy 131.204666 86.24) (xy 131.267809 86.197809) (xy 131.408157 85.987765) (xy 131.45744 85.74) 833 | (xy 131.45744 84.74) (xy 131.408157 84.492235) (xy 131.267809 84.282191) (xy 131.204666 84.24) (xy 131.267809 84.197809) 834 | (xy 131.408157 83.987765) (xy 131.45744 83.74) (xy 131.45744 82.74) (xy 131.408157 82.492235) (xy 131.267809 82.282191) 835 | (xy 131.204666 82.24) (xy 131.267809 82.197809) (xy 131.408157 81.987765) (xy 131.45744 81.74) (xy 131.45744 80.74) 836 | (xy 131.408157 80.492235) (xy 131.267809 80.282191) (xy 131.204666 80.24) (xy 131.267809 80.197809) (xy 131.408157 79.987765) 837 | (xy 131.45744 79.74) (xy 131.45744 78.74) (xy 131.408157 78.492235) (xy 131.267809 78.282191) (xy 131.204666 78.24) 838 | (xy 131.267809 78.197809) (xy 131.408157 77.987765) (xy 131.45744 77.74) (xy 131.45744 76.74) (xy 131.408157 76.492235) 839 | (xy 131.267809 76.282191) (xy 131.204666 76.24) (xy 131.267809 76.197809) (xy 131.408157 75.987765) (xy 131.45744 75.74) 840 | (xy 131.45744 74.74) (xy 131.408157 74.492235) (xy 131.267809 74.282191) (xy 131.057765 74.141843) (xy 130.81 74.09256) 841 | (xy 128.31 74.09256) (xy 128.062235 74.141843) (xy 127.852191 74.282191) (xy 127.840959 74.299) (xy 127.509722 74.299) 842 | (xy 127.493126 74.215565) (xy 127.298586 73.924414) (xy 127.007435 73.729874) (xy 126.664 73.66156) (xy 125.739 73.66156) 843 | (xy 125.395565 73.729874) (xy 125.104414 73.924414) (xy 124.909874 74.215565) (xy 124.84156 74.559) (xy 124.84156 75.809) 844 | (xy 124.909874 76.152435) (xy 125.104414 76.443586) (xy 125.395565 76.638126) (xy 125.739 76.70644) (xy 126.664 76.70644) 845 | (xy 127.007435 76.638126) (xy 127.298586 76.443586) (xy 127.493126 76.152435) (xy 127.509722 76.069) (xy 127.766123 76.069) 846 | (xy 127.852191 76.197809) (xy 127.915334 76.24) (xy 127.852191 76.282191) (xy 127.711843 76.492235) (xy 127.66256 76.74) 847 | (xy 127.66256 77.74) (xy 127.711843 77.987765) (xy 127.852191 78.197809) (xy 127.915334 78.24) (xy 127.852191 78.282191) 848 | (xy 127.713336 78.49) (xy 127.509722 78.49) (xy 127.493126 78.406565) (xy 127.298586 78.115414) (xy 127.007435 77.920874) 849 | (xy 126.664 77.85256) (xy 125.739 77.85256) (xy 125.395565 77.920874) (xy 125.104414 78.115414) (xy 124.909874 78.406565) 850 | (xy 124.84156 78.75) (xy 124.84156 80) (xy 124.909874 80.343435) (xy 125.104414 80.634586) (xy 125.395565 80.829126) 851 | (xy 125.739 80.89744) (xy 126.664 80.89744) (xy 127.007435 80.829126) (xy 127.298586 80.634586) (xy 127.493126 80.343435) 852 | (xy 127.509722 80.26) (xy 127.885402 80.26) (xy 127.852191 80.282191) (xy 127.711843 80.492235) (xy 127.66256 80.74) 853 | (xy 127.66256 81.74) (xy 127.711843 81.987765) (xy 127.852191 82.197809) (xy 127.915334 82.24) (xy 127.852191 82.282191) 854 | (xy 127.711843 82.492235) (xy 127.66256 82.74) (xy 127.66256 83.74) (xy 127.711843 83.987765) (xy 127.852191 84.197809) 855 | (xy 127.915334 84.24) (xy 127.852191 84.282191) (xy 127.711843 84.492235) (xy 127.66256 84.74) (xy 127.66256 85.74) 856 | (xy 127.711843 85.987765) (xy 127.852191 86.197809) (xy 127.915334 86.24) (xy 127.852191 86.282191) (xy 127.711843 86.492235) 857 | (xy 127.66256 86.74) (xy 127.66256 87.74) (xy 127.711843 87.987765) (xy 127.852191 88.197809) (xy 127.915334 88.24) 858 | (xy 127.852191 88.282191) (xy 127.803541 88.355) (xy 127.416079 88.355) (xy 126.0705 87.009422) (xy 126.0705 85.221297) 859 | (xy 126.282586 85.079586) (xy 126.477126 84.788435) (xy 126.54544 84.445) (xy 126.54544 83.195) (xy 126.477126 82.851565) 860 | (xy 126.282586 82.560414) (xy 126.0705 82.418703) (xy 126.0705 82.396159) (xy 126.087837 82.308999) (xy 126.0705 82.221839) 861 | (xy 126.0705 82.221835) (xy 126.019152 81.96369) (xy 125.823549 81.670951) (xy 125.749656 81.621577) (xy 124.499456 80.371377) 862 | (xy 124.518126 80.343435) (xy 124.58644 80) (xy 124.58644 78.75) (xy 124.518126 78.406565) (xy 124.323586 78.115414) 863 | (xy 124.1115 77.973703) (xy 124.1115 76.585297) (xy 124.323586 76.443586) (xy 124.518126 76.152435) (xy 124.58644 75.809) 864 | (xy 124.58644 74.559) (xy 124.518126 74.215565) (xy 124.323586 73.924414) (xy 124.032435 73.729874) (xy 123.689 73.66156) 865 | (xy 122.764 73.66156) (xy 122.420565 73.729874) (xy 122.129414 73.924414) (xy 121.934874 74.215565) (xy 121.86656 74.559) 866 | (xy 121.86656 75.809) (xy 121.934874 76.152435) (xy 122.129414 76.443586) (xy 122.3415 76.585297) (xy 122.341501 77.973703) 867 | (xy 122.129414 78.115414) (xy 121.934874 78.406565) (xy 121.86656 78.75) (xy 121.86656 80) (xy 121.934874 80.343435) 868 | (xy 122.129414 80.634586) (xy 122.420565 80.829126) (xy 122.491719 80.84328) (xy 122.539076 80.914154) (xy 122.539078 80.914156) 869 | (xy 122.588452 80.988049) (xy 122.662345 81.037423) (xy 124.146514 82.521593) (xy 124.088414 82.560414) (xy 123.893874 82.851565) 870 | (xy 123.82556 83.195) (xy 123.82556 84.445) (xy 123.893874 84.788435) (xy 124.088414 85.079586) (xy 124.300501 85.221297) 871 | (xy 124.3005 85.866) (xy 123.94725 85.866) (xy 123.7885 86.02475) (xy 123.7885 87.249) (xy 123.8085 87.249) 872 | (xy 123.8085 87.503) (xy 123.7885 87.503) (xy 123.7885 88.72725) (xy 123.94725 88.886) (xy 124.500309 88.886) 873 | (xy 124.556835 88.862586) (xy 122.625845 90.793577) (xy 122.551952 90.842951) (xy 122.502578 90.916844) (xy 122.502576 90.916846) 874 | (xy 122.455219 90.98772) (xy 122.384065 91.001874) (xy 122.092914 91.196414) (xy 121.92 91.455199) (xy 121.747086 91.196414) 875 | (xy 121.5715 91.079092) (xy 121.5715 88.777297) (xy 121.783586 88.635586) (xy 121.978126 88.344435) (xy 122.04644 88.001) 876 | (xy 122.04644 87.66175) (xy 122.314 87.66175) (xy 122.314 88.37731) (xy 122.410673 88.610699) (xy 122.589302 88.789327) 877 | (xy 122.822691 88.886) (xy 123.37575 88.886) (xy 123.5345 88.72725) (xy 123.5345 87.503) (xy 122.47275 87.503) 878 | (xy 122.314 87.66175) (xy 122.04644 87.66175) (xy 122.04644 86.751) (xy 121.978126 86.407565) (xy 121.95616 86.37469) 879 | (xy 122.314 86.37469) (xy 122.314 87.09025) (xy 122.47275 87.249) (xy 123.5345 87.249) (xy 123.5345 86.02475) 880 | (xy 123.37575 85.866) (xy 122.822691 85.866) (xy 122.589302 85.962673) (xy 122.410673 86.141301) (xy 122.314 86.37469) 881 | (xy 121.95616 86.37469) (xy 121.783586 86.116414) (xy 121.5715 85.974703) (xy 121.5715 85.33) (xy 121.92475 85.33) 882 | (xy 122.0835 85.17125) (xy 122.0835 83.947) (xy 122.3375 83.947) (xy 122.3375 85.17125) (xy 122.49625 85.33) 883 | (xy 123.049309 85.33) (xy 123.282698 85.233327) (xy 123.461327 85.054699) (xy 123.558 84.82131) (xy 123.558 84.10575) 884 | (xy 123.39925 83.947) (xy 122.3375 83.947) (xy 122.0835 83.947) (xy 122.0635 83.947) (xy 122.0635 83.693) 885 | (xy 122.0835 83.693) (xy 122.0835 82.46875) (xy 122.3375 82.46875) (xy 122.3375 83.693) (xy 123.39925 83.693) 886 | (xy 123.558 83.53425) (xy 123.558 82.81869) (xy 123.461327 82.585301) (xy 123.282698 82.406673) (xy 123.049309 82.31) 887 | (xy 122.49625 82.31) (xy 122.3375 82.46875) (xy 122.0835 82.46875) (xy 121.92475 82.31) (xy 121.5715 82.31) 888 | (xy 121.5715 71.226908) (xy 121.747086 71.109586) (xy 121.941626 70.818435) (xy 122.00994 70.475) (xy 122.00994 70.13575) 889 | (xy 124.3825 70.13575) (xy 124.3825 70.85131) (xy 124.479173 71.084699) (xy 124.657802 71.263327) (xy 124.891191 71.36) 890 | (xy 125.44425 71.36) (xy 125.603 71.20125) (xy 125.603 69.977) (xy 125.857 69.977) (xy 125.857 71.20125) 891 | (xy 126.01575 71.36) (xy 126.568809 71.36) (xy 126.802198 71.263327) (xy 126.980827 71.084699) (xy 127.0775 70.85131) 892 | (xy 127.0775 70.13575) (xy 126.91875 69.977) (xy 125.857 69.977) (xy 125.603 69.977) (xy 124.54125 69.977) 893 | (xy 124.3825 70.13575) (xy 122.00994 70.13575) (xy 122.00994 69.225) (xy 121.941626 68.881565) (xy 121.91966 68.84869) 894 | (xy 124.3825 68.84869) (xy 124.3825 69.56425) (xy 124.54125 69.723) (xy 125.603 69.723) (xy 125.603 68.49875) 895 | (xy 125.857 68.49875) (xy 125.857 69.723) (xy 126.91875 69.723) (xy 127.0775 69.56425) (xy 127.0775 68.84869) 896 | (xy 126.980827 68.615301) (xy 126.802198 68.436673) (xy 126.568809 68.34) (xy 126.01575 68.34) (xy 125.857 68.49875) 897 | (xy 125.603 68.49875) (xy 125.44425 68.34) (xy 124.891191 68.34) (xy 124.657802 68.436673) (xy 124.479173 68.615301) 898 | (xy 124.3825 68.84869) (xy 121.91966 68.84869) (xy 121.747086 68.590414) (xy 121.455935 68.395874) (xy 121.1125 68.32756) 899 | (xy 120.1875 68.32756) (xy 119.844065 68.395874) (xy 119.552914 68.590414) (xy 119.358374 68.881565) (xy 119.29006 69.225) 900 | (xy 118.745 69.225) (xy 118.745 66.675) (xy 128.143 66.675) 901 | ) 902 | ) 903 | ) 904 | ) 905 | --------------------------------------------------------------------------------