├── 3D files ├── Motor Mount.stl └── PCB Mount.stl ├── Code └── POVDisplay │ ├── Images.h │ ├── POVDisplay.ino │ └── Precompute.h ├── Images ├── 3D Holder.png ├── 3D PCB with Holder.PNG ├── 3D motor mount.png ├── 3D render.PNG ├── 3D top.PNG ├── POV LED3d bottom.png ├── POV LED3d top.png ├── POV LED3d.png ├── POV display using ESP32.jpg └── Title.jpg ├── PCB ├── Docs │ ├── POV LED-B_Cu.png │ ├── POV LED-B_Cu.svg │ ├── POV LED-F_Cu.png │ ├── POV LED-F_Cu.svg │ ├── Schematics POV Display.pdf │ ├── Schematics POV Display.png │ └── Schematics POV Display.svg ├── POV LED-backups │ ├── POV LED-2024-01-19_184154.zip │ ├── POV LED-2024-01-19_185155.zip │ ├── POV LED-2024-01-19_185808.zip │ ├── POV LED-2024-01-20_084647.zip │ ├── POV LED-2024-01-20_085316.zip │ ├── POV LED-2024-01-24_093611.zip │ ├── POV LED-2024-01-25_081846.zip │ ├── POV LED-2024-01-25_105717.zip │ ├── POV LED-2024-01-30_103047.zip │ ├── POV LED-2024-01-30_111243.zip │ ├── POV LED-2024-02-07_102917.zip │ ├── POV LED-2024-02-08_154112.zip │ ├── POV LED-2024-02-08_155159.zip │ ├── POV LED-2024-02-08_163618.zip │ ├── POV LED-2024-02-08_192251.zip │ ├── POV LED-2024-02-12_104454.zip │ ├── POV LED-2024-02-12_115113.zip │ ├── POV LED-2024-02-13_193442.zip │ ├── POV LED-2024-02-15_161411.zip │ ├── POV LED-2024-02-15_170405.zip │ ├── POV LED-2024-02-15_172700.zip │ ├── POV LED-2024-02-15_191110.zip │ ├── POV LED-2024-02-19_185144.zip │ ├── POV LED-2024-02-28_111357.zip │ ├── POV LED-2024-02-28_112050.zip │ └── POV LED-2024-02-28_181747.zip ├── POV LED.kicad_pcb ├── POV LED.kicad_prl ├── POV LED.kicad_pro ├── POV LED.kicad_sch ├── _autosave-POV LED.kicad_prl ├── _autosave-POV LED.kicad_pro ├── bom │ └── ibom.html ├── fp-info-cache └── production │ ├── bom.csv │ ├── designators.csv │ ├── gerber.zip │ ├── netlist.ipc │ └── positions.csv └── README.md /3D files/Motor Mount.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/3D files/Motor Mount.stl -------------------------------------------------------------------------------- /3D files/PCB Mount.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/3D files/PCB Mount.stl -------------------------------------------------------------------------------- /Code/POVDisplay/POVDisplay.ino: -------------------------------------------------------------------------------- 1 | /* 2 | * Project Name: POV display 3 | * Project Brief: Firmware for ESP32 POV Display. Display resolution 128 pixels 4 | * Author: Jobit Joseph 5 | * Copyright © Jobit Joseph 6 | * Copyright © Semicon Media Pvt Ltd 7 | * Copyright © Circuitdigest.com 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU General Public License as published by 11 | * the Free Software Foundation, in version 3. 12 | * 13 | * This program is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with this program. If not, see . 20 | * 21 | */ 22 | #include 23 | #include 24 | #include "Images.h" 25 | #include "Precompute.h" 26 | 27 | // Pin Definitions 28 | #define latchPin 14 29 | #define clockPin 15 30 | #define dataPin 13 31 | #define latchPinx 17 32 | #define clockPinx 18 33 | #define dataPinx 16 34 | #define HALL_SENSOR1_PIN 36 35 | #define HALL_SENSOR2_PIN 39 36 | 37 | // Global Variables 38 | volatile unsigned long lastHallTrigger = 0; 39 | volatile float rotationTime = 0; // Time for one rotation in milliseconds 40 | int hallSensor1State = 0; 41 | int hallSensor2State = 0; 42 | bool halfFrame = false; 43 | int numberOfRegisters = 8; 44 | int offset = 270; 45 | int repeatvalue = 1; 46 | int hys = 3000; 47 | int frame = 0; 48 | int repeat = 0; 49 | int anim = 0; 50 | int frameHoldTime = 1; // Number of loops to hold each frame 51 | int frameHoldCounter = 0; // Counter to track loops for current frame 52 | 53 | //Shift register Driver instances for both hands 54 | MultiShiftRegister msr(numberOfRegisters, latchPin, clockPin, dataPin); 55 | MultiShiftRegister msrx(numberOfRegisters, latchPinx, clockPinx, dataPinx); 56 | 57 | //Function to calculate polar co-ordintes, and get corresponding data from the arrays. 58 | int getValueFromAngle(const uint8_t arrayName[][16], int angle, int radius) { 59 | // Adjust the angle by subtracting offset to rotate counter-clockwise 60 | int adjustedAngle = angle - offset; 61 | if (adjustedAngle < 0) adjustedAngle += 360; // Ensure the angle stays within 0-359 degrees 62 | 63 | // Invert the targetX calculation to flip the image horizontally 64 | int targetX = 127 - precomputedCos[radius][adjustedAngle]; // Flipping targetX 65 | int targetY = precomputedSin[radius][adjustedAngle]; 66 | if (targetX >= 0 && targetX < 128 && targetY >= 0 && targetY < 128) { 67 | int byteIndex = targetX / 8; 68 | int bitIndex = 7 - (targetX % 8); 69 | return (arrayName[targetY][byteIndex] >> bitIndex) & 1; // Extract the bit value and return it 70 | } else { 71 | return -1; // Out of bounds 72 | } 73 | } 74 | 75 | //Hall sensor 1 interrupt routine 76 | void ISR_HallSensor1() { 77 | unsigned long currentTime = micros(); 78 | // Check if HYS ms have passed since the last trigger 79 | if (currentTime - lastHallTrigger >= hys) { 80 | rotationTime = (currentTime - lastHallTrigger) / 1000.0; 81 | lastHallTrigger = currentTime; 82 | hallSensor1State = 1; 83 | halfFrame = true; 84 | } 85 | } 86 | 87 | //Hall sensor 2 interrupt routine 88 | void ISR_HallSensor2() { 89 | unsigned long currentTime = micros(); 90 | // Check if HYS ms have passed since the last trigger 91 | if (currentTime - lastHallTrigger >= hys) { 92 | lastHallTrigger = currentTime; 93 | hallSensor2State = 1; 94 | halfFrame = false; 95 | } 96 | } 97 | 98 | //Function to calculate RPM and display each frame accordingly 99 | void DisplayFrame(const uint8_t ImageName[][16]) { 100 | float timePerSegment = rotationTime / 360.0; // Assuming 180 segments per half rotation 101 | 102 | for (int i = 0; i < 180; i++) { 103 | unsigned long segmentStartTime = micros(); 104 | 105 | for (int j = 0; j < 64; j++) { 106 | // First arm (msr) displays the first half of the frame 107 | if (getValueFromAngle(ImageName, i + (halfFrame ? 0 : 180), j)) { 108 | msr.set(j); 109 | } else { 110 | msr.clear(j); 111 | } 112 | 113 | // Second arm (msrx) displays the second half of the frame 114 | if (getValueFromAngle(ImageName, i + (halfFrame ? 180 : 0), j)) { 115 | msrx.set(j); 116 | } else { 117 | msrx.clear(j); 118 | } 119 | } 120 | 121 | msr.shift(); 122 | msrx.shift(); 123 | 124 | while (micros() - segmentStartTime < timePerSegment * 1000) 125 | ; 126 | } 127 | } 128 | 129 | void setup() { 130 | // Initialize pins 131 | pinMode(latchPin, OUTPUT); 132 | pinMode(clockPin, OUTPUT); 133 | pinMode(dataPin, OUTPUT); 134 | pinMode(latchPinx, OUTPUT); 135 | pinMode(clockPinx, OUTPUT); 136 | pinMode(dataPinx, OUTPUT); 137 | pinMode(HALL_SENSOR1_PIN, INPUT); 138 | pinMode(HALL_SENSOR2_PIN, INPUT); 139 | 140 | attachInterrupt(digitalPinToInterrupt(HALL_SENSOR1_PIN), ISR_HallSensor1, RISING); 141 | attachInterrupt(digitalPinToInterrupt(HALL_SENSOR2_PIN), ISR_HallSensor2, RISING); 142 | for (int i = 0; i < 64; i++) { 143 | msr.clear(i); 144 | msrx.clear(i); 145 | } 146 | msr.shift(); 147 | msrx.shift(); 148 | Serial.begin(115200); 149 | } 150 | 151 | void loop() { 152 | if (hallSensor1State || hallSensor2State) { 153 | if (anim == 0) { 154 | DisplayFrame(CDArrays[frame]); 155 | // Increment the counter 156 | frameHoldCounter++; 157 | // Check if it's time to move to the next frame 158 | if (frameHoldCounter >= frameHoldTime) { 159 | // Reset the counter 160 | frameHoldCounter = 0; 161 | // Move to the next frame 162 | frame++; 163 | if (frame > 21) { 164 | frame = 0; 165 | repeat++; 166 | if (repeat == 1) { 167 | repeat = 0; 168 | anim++; 169 | frameHoldTime = 1; 170 | repeatvalue = 1; 171 | } 172 | } 173 | } 174 | } 175 | if (anim == 1) { 176 | DisplayFrame(ImageCD_22); 177 | // Increment the counter 178 | frameHoldCounter++; 179 | // Check if it's time to move to the next frame 180 | if (frameHoldCounter >= frameHoldTime) { 181 | // Reset the counter 182 | frameHoldCounter = 0; 183 | // Move to the next frame 184 | frame++; 185 | if (frame > 50) { 186 | frame = 0; 187 | repeat++; 188 | if (repeat == repeatvalue) { 189 | repeat = 0; 190 | anim++; 191 | frameHoldTime = 2; 192 | repeatvalue = 1; 193 | } 194 | } 195 | } 196 | } 197 | if (anim == 2) { 198 | DisplayFrame(ViasionArrays[frame]); 199 | // Increment the counter 200 | frameHoldCounter++; 201 | // Check if it's time to move to the next frame 202 | if (frameHoldCounter >= frameHoldTime) { 203 | // Reset the counter 204 | frameHoldCounter = 0; 205 | // Move to the next frame 206 | frame++; 207 | if (frame > 21) { 208 | frame = 0; 209 | repeat++; 210 | if (repeat == repeatvalue) { 211 | repeat = 0; 212 | anim++; 213 | frameHoldTime = 1; 214 | repeatvalue = 1; 215 | } 216 | } 217 | } 218 | } 219 | if (anim == 3) { 220 | DisplayFrame(Image_Viasion22); 221 | // Increment the counter 222 | frameHoldCounter++; 223 | // Check if it's time to move to the next frame 224 | if (frameHoldCounter >= frameHoldTime) { 225 | // Reset the counter 226 | frameHoldCounter = 0; 227 | // Move to the next frame 228 | frame++; 229 | if (frame > 50) { 230 | frame = 0; 231 | repeat++; 232 | if (repeat == repeatvalue) { 233 | repeat = 0; 234 | anim++; 235 | frameHoldTime = 2; 236 | repeatvalue = 1; 237 | } 238 | } 239 | } 240 | } 241 | if (anim == 4) { 242 | DisplayFrame(ViasionOTRArrays[frame]); 243 | // Increment the counter 244 | frameHoldCounter++; 245 | // Check if it's time to move to the next frame 246 | if (frameHoldCounter >= frameHoldTime) { 247 | // Reset the counter 248 | frameHoldCounter = 0; 249 | // Move to the next frame 250 | frame++; 251 | if (frame > 11) { 252 | frame = 0; 253 | repeat++; 254 | if (repeat == repeatvalue) { 255 | repeat = 0; 256 | anim++; 257 | frameHoldTime = 1; 258 | repeatvalue = 10; 259 | } 260 | } 261 | } 262 | } 263 | if (anim == 5) { 264 | DisplayFrame(CatRunArray[frame]); 265 | // Increment the counter 266 | frameHoldCounter++; 267 | // Check if it's time to move to the next frame 268 | if (frameHoldCounter >= frameHoldTime) { 269 | // Reset the counter 270 | frameHoldCounter = 0; 271 | // Move to the next frame 272 | frame++; 273 | if (frame > 9) { 274 | frame = 0; 275 | repeat++; 276 | if (repeat == repeatvalue) { 277 | repeat = 0; 278 | anim++; 279 | frameHoldTime = 2; 280 | repeatvalue = 2; 281 | } 282 | } 283 | } 284 | } else if (anim == 6) { 285 | DisplayFrame(CatArrays[frame]); 286 | // Increment the counter 287 | frameHoldCounter++; 288 | // Check if it's time to move to the next frame 289 | if (frameHoldCounter >= frameHoldTime) { 290 | // Reset the counter 291 | frameHoldCounter = 0; 292 | // Move to the next frame 293 | frame++; 294 | if (frame > 61) { 295 | frame = 0; 296 | repeat++; 297 | if (repeat == repeatvalue) { 298 | repeat = 0; 299 | anim++; 300 | frameHoldTime = 2; 301 | repeatvalue = 3; 302 | } 303 | } 304 | } 305 | } else if (anim == 7) { 306 | DisplayFrame(RunningSFArrays[frame]); 307 | // Increment the counter 308 | frameHoldCounter++; 309 | // Check if it's time to move to the next frame 310 | if (frameHoldCounter >= frameHoldTime) { 311 | // Reset the counter 312 | frameHoldCounter = 0; 313 | // Move to the next frame 314 | frame++; 315 | if (frame > 11) { 316 | frame = 0; 317 | repeat++; 318 | if (repeat == repeatvalue) { 319 | repeat = 0; 320 | anim++; 321 | frameHoldTime = 2; 322 | repeatvalue = 1; 323 | } 324 | } 325 | } 326 | } else if (anim == 8) { 327 | DisplayFrame(Dance1Arrays[frame]); 328 | // Increment the counter 329 | frameHoldCounter++; 330 | // Check if it's time to move to the next frame 331 | if (frameHoldCounter >= frameHoldTime) { 332 | // Reset the counter 333 | frameHoldCounter = 0; 334 | // Move to the next frame 335 | frame++; 336 | if (frame > 93) { 337 | frame = 0; 338 | repeat++; 339 | if (repeat == repeatvalue) { 340 | repeat = 0; 341 | anim++; 342 | frameHoldTime = 1; 343 | repeatvalue = 4; 344 | } 345 | } 346 | } 347 | } else if (anim == 9) { 348 | DisplayFrame(EYEArrays[frame]); // Increment the counter 349 | frameHoldCounter++; 350 | // Check if it's time to move to the next frame 351 | if (frameHoldCounter >= frameHoldTime) { 352 | // Reset the counter 353 | frameHoldCounter = 0; 354 | // Move to the next frame 355 | frame++; 356 | if (frame > 73) { 357 | frame = 0; 358 | repeat++; 359 | if (repeat == repeatvalue) { 360 | repeat = 0; 361 | anim++; 362 | frameHoldTime = 2; 363 | repeatvalue = 4; 364 | } 365 | } 366 | } 367 | } else if (anim == 10) { 368 | DisplayFrame(GlobexArrays[frame]); // Increment the counter 369 | frameHoldCounter++; 370 | // Check if it's time to move to the next frame 371 | if (frameHoldCounter >= frameHoldTime) { 372 | // Reset the counter 373 | frameHoldCounter = 0; 374 | // Move to the next frame 375 | frame++; 376 | if (frame > 14) { 377 | frame = 0; 378 | repeat++; 379 | if (repeat == repeatvalue) { 380 | repeat = 0; 381 | anim++; 382 | frameHoldTime = 20; 383 | repeatvalue = 1; 384 | } 385 | } 386 | } 387 | } else if (anim == 11) { 388 | DisplayFrame(ClockArrays[frame]); // Increment the counter 389 | frameHoldCounter++; 390 | // Check if it's time to move to the next frame 391 | if (frameHoldCounter >= frameHoldTime) { 392 | // Reset the counter 393 | frameHoldCounter = 0; 394 | // Move to the next frame 395 | frame++; 396 | if (frame > 13) { 397 | frame = 0; 398 | repeat++; 399 | if (repeat == repeatvalue) { 400 | repeat = 0; 401 | anim = 0; 402 | frameHoldTime = 2; 403 | repeatvalue = 1; 404 | } 405 | } 406 | } 407 | } 408 | hallSensor1State = 0; 409 | hallSensor2State = 0; 410 | } 411 | } 412 | -------------------------------------------------------------------------------- /Images/3D Holder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/3D Holder.png -------------------------------------------------------------------------------- /Images/3D PCB with Holder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/3D PCB with Holder.PNG -------------------------------------------------------------------------------- /Images/3D motor mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/3D motor mount.png -------------------------------------------------------------------------------- /Images/3D render.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/3D render.PNG -------------------------------------------------------------------------------- /Images/3D top.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/3D top.PNG -------------------------------------------------------------------------------- /Images/POV LED3d bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/POV LED3d bottom.png -------------------------------------------------------------------------------- /Images/POV LED3d top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/POV LED3d top.png -------------------------------------------------------------------------------- /Images/POV LED3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/POV LED3d.png -------------------------------------------------------------------------------- /Images/POV display using ESP32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/POV display using ESP32.jpg -------------------------------------------------------------------------------- /Images/Title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/Images/Title.jpg -------------------------------------------------------------------------------- /PCB/Docs/POV LED-B_Cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/Docs/POV LED-B_Cu.png -------------------------------------------------------------------------------- /PCB/Docs/POV LED-F_Cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/Docs/POV LED-F_Cu.png -------------------------------------------------------------------------------- /PCB/Docs/Schematics POV Display.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/Docs/Schematics POV Display.pdf -------------------------------------------------------------------------------- /PCB/Docs/Schematics POV Display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/Docs/Schematics POV Display.png -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-19_184154.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-19_184154.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-19_185155.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-19_185155.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-19_185808.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-19_185808.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-20_084647.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-20_084647.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-20_085316.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-20_085316.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-24_093611.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-24_093611.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-25_081846.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-25_081846.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-25_105717.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-25_105717.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-30_103047.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-30_103047.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-01-30_111243.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-01-30_111243.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-07_102917.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-07_102917.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-08_154112.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-08_154112.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-08_155159.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-08_155159.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-08_163618.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-08_163618.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-08_192251.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-08_192251.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-12_104454.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-12_104454.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-12_115113.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-12_115113.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-13_193442.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-13_193442.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-15_161411.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-15_161411.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-15_170405.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-15_170405.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-15_172700.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-15_172700.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-15_191110.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-15_191110.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-19_185144.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-19_185144.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-28_111357.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-28_111357.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-28_112050.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-28_112050.zip -------------------------------------------------------------------------------- /PCB/POV LED-backups/POV LED-2024-02-28_181747.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/POV LED-backups/POV LED-2024-02-28_181747.zip -------------------------------------------------------------------------------- /PCB/POV LED.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 37, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_netclasses": [], 7 | "hidden_nets": [ 8 | "GND" 9 | ], 10 | "high_contrast_mode": 0, 11 | "net_color_mode": 1, 12 | "opacity": { 13 | "images": 0.6, 14 | "pads": 1.0, 15 | "tracks": 1.0, 16 | "vias": 1.0, 17 | "zones": 0.6 18 | }, 19 | "selection_filter": { 20 | "dimensions": true, 21 | "footprints": true, 22 | "graphics": true, 23 | "keepouts": true, 24 | "lockedItems": false, 25 | "otherItems": true, 26 | "pads": true, 27 | "text": true, 28 | "tracks": true, 29 | "vias": true, 30 | "zones": true 31 | }, 32 | "visible_items": [ 33 | 0, 34 | 1, 35 | 2, 36 | 3, 37 | 4, 38 | 5, 39 | 9, 40 | 10, 41 | 11, 42 | 13, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36, 64 | 39, 65 | 40 66 | ], 67 | "visible_layers": "f0031aa_7fffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "POV LED.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /PCB/POV LED.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 0.762, 38 | "height": 1.524, 39 | "width": 1.524 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "min_clearance": 0.5 49 | } 50 | }, 51 | "diff_pair_dimensions": [ 52 | { 53 | "gap": 0.0, 54 | "via_gap": 0.0, 55 | "width": 0.0 56 | } 57 | ], 58 | "drc_exclusions": [], 59 | "meta": { 60 | "version": 2 61 | }, 62 | "rule_severities": { 63 | "annular_width": "error", 64 | "clearance": "error", 65 | "connection_width": "warning", 66 | "copper_edge_clearance": "error", 67 | "copper_sliver": "warning", 68 | "courtyards_overlap": "error", 69 | "diff_pair_gap_out_of_range": "error", 70 | "diff_pair_uncoupled_length_too_long": "error", 71 | "drill_out_of_range": "error", 72 | "duplicate_footprints": "warning", 73 | "extra_footprint": "warning", 74 | "footprint": "error", 75 | "footprint_type_mismatch": "ignore", 76 | "hole_clearance": "error", 77 | "hole_near_hole": "error", 78 | "invalid_outline": "error", 79 | "isolated_copper": "warning", 80 | "item_on_disabled_layer": "error", 81 | "items_not_allowed": "error", 82 | "length_out_of_range": "error", 83 | "lib_footprint_issues": "warning", 84 | "lib_footprint_mismatch": "ignore", 85 | "malformed_courtyard": "error", 86 | "microvia_drill_out_of_range": "error", 87 | "missing_courtyard": "ignore", 88 | "missing_footprint": "warning", 89 | "net_conflict": "warning", 90 | "npth_inside_courtyard": "ignore", 91 | "padstack": "warning", 92 | "pth_inside_courtyard": "ignore", 93 | "shorting_items": "error", 94 | "silk_edge_clearance": "warning", 95 | "silk_over_copper": "warning", 96 | "silk_overlap": "warning", 97 | "skew_out_of_range": "error", 98 | "solder_mask_bridge": "error", 99 | "starved_thermal": "error", 100 | "text_height": "warning", 101 | "text_thickness": "warning", 102 | "through_hole_pad_without_hole": "error", 103 | "too_many_vias": "error", 104 | "track_dangling": "warning", 105 | "track_width": "error", 106 | "tracks_crossing": "error", 107 | "unconnected_items": "error", 108 | "unresolved_variable": "error", 109 | "via_dangling": "warning", 110 | "zones_intersect": "error" 111 | }, 112 | "rules": { 113 | "max_error": 0.005, 114 | "min_clearance": 0.0, 115 | "min_connection": 0.0, 116 | "min_copper_edge_clearance": 0.0, 117 | "min_hole_clearance": 0.25, 118 | "min_hole_to_hole": 0.25, 119 | "min_microvia_diameter": 0.19999999999999998, 120 | "min_microvia_drill": 0.09999999999999999, 121 | "min_resolved_spokes": 1, 122 | "min_silk_clearance": 0.0, 123 | "min_text_height": 0.7999999999999999, 124 | "min_text_thickness": 0.08, 125 | "min_through_hole_diameter": 0.3, 126 | "min_track_width": 0.0, 127 | "min_via_annular_width": 0.09999999999999999, 128 | "min_via_diameter": 0.5, 129 | "solder_mask_clearance": 0.0, 130 | "solder_mask_min_width": 0.0, 131 | "solder_mask_to_copper_clearance": 0.0, 132 | "use_height_for_length_calcs": true 133 | }, 134 | "teardrop_options": [ 135 | { 136 | "td_allow_use_two_tracks": true, 137 | "td_curve_segcount": 5, 138 | "td_on_pad_in_zone": false, 139 | "td_onpadsmd": true, 140 | "td_onroundshapesonly": false, 141 | "td_ontrackend": false, 142 | "td_onviapad": true 143 | } 144 | ], 145 | "teardrop_parameters": [ 146 | { 147 | "td_curve_segcount": 0, 148 | "td_height_ratio": 1.0, 149 | "td_length_ratio": 0.5, 150 | "td_maxheight": 2.0, 151 | "td_maxlen": 1.0, 152 | "td_target_name": "td_round_shape", 153 | "td_width_to_size_filter_ratio": 0.9 154 | }, 155 | { 156 | "td_curve_segcount": 0, 157 | "td_height_ratio": 1.0, 158 | "td_length_ratio": 0.5, 159 | "td_maxheight": 2.0, 160 | "td_maxlen": 1.0, 161 | "td_target_name": "td_rect_shape", 162 | "td_width_to_size_filter_ratio": 0.9 163 | }, 164 | { 165 | "td_curve_segcount": 0, 166 | "td_height_ratio": 1.0, 167 | "td_length_ratio": 0.5, 168 | "td_maxheight": 2.0, 169 | "td_maxlen": 1.0, 170 | "td_target_name": "td_track_end", 171 | "td_width_to_size_filter_ratio": 0.9 172 | } 173 | ], 174 | "track_widths": [ 175 | 0.0 176 | ], 177 | "via_dimensions": [ 178 | { 179 | "diameter": 0.0, 180 | "drill": 0.0 181 | } 182 | ], 183 | "zones_allow_external_fillets": false 184 | }, 185 | "layer_presets": [], 186 | "viewports": [] 187 | }, 188 | "boards": [], 189 | "cvpcb": { 190 | "equivalence_files": [] 191 | }, 192 | "erc": { 193 | "erc_exclusions": [], 194 | "meta": { 195 | "version": 0 196 | }, 197 | "pin_map": [ 198 | [ 199 | 0, 200 | 0, 201 | 0, 202 | 0, 203 | 0, 204 | 0, 205 | 1, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 2 211 | ], 212 | [ 213 | 0, 214 | 2, 215 | 0, 216 | 1, 217 | 0, 218 | 0, 219 | 1, 220 | 0, 221 | 2, 222 | 2, 223 | 2, 224 | 2 225 | ], 226 | [ 227 | 0, 228 | 0, 229 | 0, 230 | 0, 231 | 0, 232 | 0, 233 | 1, 234 | 0, 235 | 1, 236 | 0, 237 | 1, 238 | 2 239 | ], 240 | [ 241 | 0, 242 | 1, 243 | 0, 244 | 0, 245 | 0, 246 | 0, 247 | 1, 248 | 1, 249 | 2, 250 | 1, 251 | 1, 252 | 2 253 | ], 254 | [ 255 | 0, 256 | 0, 257 | 0, 258 | 0, 259 | 0, 260 | 0, 261 | 1, 262 | 0, 263 | 0, 264 | 0, 265 | 0, 266 | 2 267 | ], 268 | [ 269 | 0, 270 | 0, 271 | 0, 272 | 0, 273 | 0, 274 | 0, 275 | 0, 276 | 0, 277 | 0, 278 | 0, 279 | 0, 280 | 2 281 | ], 282 | [ 283 | 1, 284 | 1, 285 | 1, 286 | 1, 287 | 1, 288 | 0, 289 | 1, 290 | 1, 291 | 1, 292 | 1, 293 | 1, 294 | 2 295 | ], 296 | [ 297 | 0, 298 | 0, 299 | 0, 300 | 1, 301 | 0, 302 | 0, 303 | 1, 304 | 0, 305 | 0, 306 | 0, 307 | 0, 308 | 2 309 | ], 310 | [ 311 | 0, 312 | 2, 313 | 1, 314 | 2, 315 | 0, 316 | 0, 317 | 1, 318 | 0, 319 | 2, 320 | 2, 321 | 2, 322 | 2 323 | ], 324 | [ 325 | 0, 326 | 2, 327 | 0, 328 | 1, 329 | 0, 330 | 0, 331 | 1, 332 | 0, 333 | 2, 334 | 0, 335 | 0, 336 | 2 337 | ], 338 | [ 339 | 0, 340 | 2, 341 | 1, 342 | 1, 343 | 0, 344 | 0, 345 | 1, 346 | 0, 347 | 2, 348 | 0, 349 | 0, 350 | 2 351 | ], 352 | [ 353 | 2, 354 | 2, 355 | 2, 356 | 2, 357 | 2, 358 | 2, 359 | 2, 360 | 2, 361 | 2, 362 | 2, 363 | 2, 364 | 2 365 | ] 366 | ], 367 | "rule_severities": { 368 | "bus_definition_conflict": "error", 369 | "bus_entry_needed": "error", 370 | "bus_to_bus_conflict": "error", 371 | "bus_to_net_conflict": "error", 372 | "conflicting_netclasses": "error", 373 | "different_unit_footprint": "error", 374 | "different_unit_net": "error", 375 | "duplicate_reference": "error", 376 | "duplicate_sheet_names": "error", 377 | "endpoint_off_grid": "warning", 378 | "extra_units": "error", 379 | "global_label_dangling": "warning", 380 | "hier_label_mismatch": "error", 381 | "label_dangling": "error", 382 | "lib_symbol_issues": "warning", 383 | "missing_bidi_pin": "warning", 384 | "missing_input_pin": "warning", 385 | "missing_power_pin": "error", 386 | "missing_unit": "warning", 387 | "multiple_net_names": "warning", 388 | "net_not_bus_member": "warning", 389 | "no_connect_connected": "warning", 390 | "no_connect_dangling": "warning", 391 | "pin_not_connected": "error", 392 | "pin_not_driven": "error", 393 | "pin_to_pin": "warning", 394 | "power_pin_not_driven": "error", 395 | "similar_labels": "warning", 396 | "simulation_model_issue": "error", 397 | "unannotated": "error", 398 | "unit_value_mismatch": "error", 399 | "unresolved_variable": "error", 400 | "wire_dangling": "error" 401 | } 402 | }, 403 | "libraries": { 404 | "pinned_footprint_libs": [], 405 | "pinned_symbol_libs": [] 406 | }, 407 | "meta": { 408 | "filename": "POV LED.kicad_pro", 409 | "version": 1 410 | }, 411 | "net_settings": { 412 | "classes": [ 413 | { 414 | "bus_width": 12, 415 | "clearance": 0.2, 416 | "diff_pair_gap": 0.25, 417 | "diff_pair_via_gap": 0.25, 418 | "diff_pair_width": 0.2, 419 | "line_style": 0, 420 | "microvia_diameter": 0.3, 421 | "microvia_drill": 0.1, 422 | "name": "Default", 423 | "pcb_color": "rgba(0, 0, 0, 0.000)", 424 | "schematic_color": "rgba(0, 0, 0, 0.000)", 425 | "track_width": 0.25, 426 | "via_diameter": 0.8, 427 | "via_drill": 0.4, 428 | "wire_width": 6 429 | } 430 | ], 431 | "meta": { 432 | "version": 3 433 | }, 434 | "net_colors": null, 435 | "netclass_assignments": null, 436 | "netclass_patterns": [] 437 | }, 438 | "pcbnew": { 439 | "last_paths": { 440 | "gencad": "", 441 | "idf": "", 442 | "netlist": "", 443 | "specctra_dsn": "", 444 | "step": "POV LED.step", 445 | "vrml": "" 446 | }, 447 | "page_layout_descr_file": "" 448 | }, 449 | "schematic": { 450 | "annotate_start_num": 0, 451 | "drawing": { 452 | "dashed_lines_dash_length_ratio": 12.0, 453 | "dashed_lines_gap_length_ratio": 3.0, 454 | "default_line_thickness": 6.0, 455 | "default_text_size": 50.0, 456 | "field_names": [], 457 | "intersheets_ref_own_page": false, 458 | "intersheets_ref_prefix": "", 459 | "intersheets_ref_short": false, 460 | "intersheets_ref_show": false, 461 | "intersheets_ref_suffix": "", 462 | "junction_size_choice": 3, 463 | "label_size_ratio": 0.375, 464 | "pin_symbol_size": 25.0, 465 | "text_offset_ratio": 0.15 466 | }, 467 | "legacy_lib_dir": "", 468 | "legacy_lib_list": [], 469 | "meta": { 470 | "version": 1 471 | }, 472 | "net_format_name": "", 473 | "page_layout_descr_file": "", 474 | "plot_directory": "../../DOC/", 475 | "spice_current_sheet_as_root": false, 476 | "spice_external_command": "spice \"%I\"", 477 | "spice_model_current_sheet_as_root": true, 478 | "spice_save_all_currents": false, 479 | "spice_save_all_voltages": false, 480 | "subpart_first_id": 65, 481 | "subpart_id_separator": 0 482 | }, 483 | "sheets": [ 484 | [ 485 | "4fd8aa9b-ab4b-42a5-916b-f2bd48fbf8a1", 486 | "" 487 | ] 488 | ], 489 | "text_variables": {} 490 | } 491 | -------------------------------------------------------------------------------- /PCB/_autosave-POV LED.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 31, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_netclasses": [], 7 | "hidden_nets": [], 8 | "high_contrast_mode": 0, 9 | "net_color_mode": 1, 10 | "opacity": { 11 | "images": 0.6, 12 | "pads": 1.0, 13 | "tracks": 1.0, 14 | "vias": 1.0, 15 | "zones": 0.6 16 | }, 17 | "selection_filter": { 18 | "dimensions": true, 19 | "footprints": true, 20 | "graphics": true, 21 | "keepouts": true, 22 | "lockedItems": false, 23 | "otherItems": true, 24 | "pads": true, 25 | "text": true, 26 | "tracks": true, 27 | "vias": true, 28 | "zones": true 29 | }, 30 | "visible_items": [ 31 | 0, 32 | 1, 33 | 2, 34 | 3, 35 | 4, 36 | 5, 37 | 8, 38 | 9, 39 | 10, 40 | 11, 41 | 12, 42 | 13, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36, 64 | 39, 65 | 40 66 | ], 67 | "visible_layers": "ffcf3ff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "_autosave-POV LED.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /PCB/_autosave-POV LED.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.049999999999999996, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.09999999999999999, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 0.0, 38 | "height": 4.0, 39 | "width": 2.5 40 | }, 41 | "silk_line_width": 0.09999999999999999, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.09999999999999999, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "min_clearance": 0.254 49 | } 50 | }, 51 | "diff_pair_dimensions": [ 52 | { 53 | "gap": 0.0, 54 | "via_gap": 0.0, 55 | "width": 0.0 56 | } 57 | ], 58 | "drc_exclusions": [], 59 | "meta": { 60 | "version": 2 61 | }, 62 | "rule_severities": { 63 | "annular_width": "error", 64 | "clearance": "error", 65 | "connection_width": "warning", 66 | "copper_edge_clearance": "error", 67 | "copper_sliver": "warning", 68 | "courtyards_overlap": "error", 69 | "diff_pair_gap_out_of_range": "error", 70 | "diff_pair_uncoupled_length_too_long": "error", 71 | "drill_out_of_range": "error", 72 | "duplicate_footprints": "warning", 73 | "extra_footprint": "warning", 74 | "footprint": "error", 75 | "footprint_type_mismatch": "ignore", 76 | "hole_clearance": "error", 77 | "hole_near_hole": "error", 78 | "invalid_outline": "error", 79 | "isolated_copper": "warning", 80 | "item_on_disabled_layer": "error", 81 | "items_not_allowed": "error", 82 | "length_out_of_range": "error", 83 | "lib_footprint_issues": "warning", 84 | "lib_footprint_mismatch": "ignore", 85 | "malformed_courtyard": "error", 86 | "microvia_drill_out_of_range": "error", 87 | "missing_courtyard": "ignore", 88 | "missing_footprint": "warning", 89 | "net_conflict": "warning", 90 | "npth_inside_courtyard": "ignore", 91 | "padstack": "warning", 92 | "pth_inside_courtyard": "ignore", 93 | "shorting_items": "error", 94 | "silk_edge_clearance": "warning", 95 | "silk_over_copper": "warning", 96 | "silk_overlap": "warning", 97 | "skew_out_of_range": "error", 98 | "solder_mask_bridge": "error", 99 | "starved_thermal": "error", 100 | "text_height": "warning", 101 | "text_thickness": "warning", 102 | "through_hole_pad_without_hole": "error", 103 | "too_many_vias": "error", 104 | "track_dangling": "warning", 105 | "track_width": "error", 106 | "tracks_crossing": "error", 107 | "unconnected_items": "error", 108 | "unresolved_variable": "error", 109 | "via_dangling": "warning", 110 | "zones_intersect": "error" 111 | }, 112 | "rules": { 113 | "max_error": 0.005, 114 | "min_clearance": 0.0, 115 | "min_connection": 0.0, 116 | "min_copper_edge_clearance": 0.25, 117 | "min_hole_clearance": 0.25, 118 | "min_hole_to_hole": 0.25, 119 | "min_microvia_diameter": 0.19999999999999998, 120 | "min_microvia_drill": 0.09999999999999999, 121 | "min_resolved_spokes": 1, 122 | "min_silk_clearance": 0.0, 123 | "min_text_height": 0.7999999999999999, 124 | "min_text_thickness": 0.08, 125 | "min_through_hole_diameter": 0.3, 126 | "min_track_width": 0.0, 127 | "min_via_annular_width": 0.09999999999999999, 128 | "min_via_diameter": 0.5, 129 | "solder_mask_to_copper_clearance": 0.0, 130 | "use_height_for_length_calcs": true 131 | }, 132 | "teardrop_options": [ 133 | { 134 | "td_allow_use_two_tracks": true, 135 | "td_curve_segcount": 5, 136 | "td_on_pad_in_zone": false, 137 | "td_onpadsmd": true, 138 | "td_onroundshapesonly": false, 139 | "td_ontrackend": false, 140 | "td_onviapad": true 141 | } 142 | ], 143 | "teardrop_parameters": [ 144 | { 145 | "td_curve_segcount": 0, 146 | "td_height_ratio": 1.0, 147 | "td_length_ratio": 0.5, 148 | "td_maxheight": 2.0, 149 | "td_maxlen": 1.0, 150 | "td_target_name": "td_round_shape", 151 | "td_width_to_size_filter_ratio": 0.9 152 | }, 153 | { 154 | "td_curve_segcount": 0, 155 | "td_height_ratio": 1.0, 156 | "td_length_ratio": 0.5, 157 | "td_maxheight": 2.0, 158 | "td_maxlen": 1.0, 159 | "td_target_name": "td_rect_shape", 160 | "td_width_to_size_filter_ratio": 0.9 161 | }, 162 | { 163 | "td_curve_segcount": 0, 164 | "td_height_ratio": 1.0, 165 | "td_length_ratio": 0.5, 166 | "td_maxheight": 2.0, 167 | "td_maxlen": 1.0, 168 | "td_target_name": "td_track_end", 169 | "td_width_to_size_filter_ratio": 0.9 170 | } 171 | ], 172 | "track_widths": [ 173 | 0.0 174 | ], 175 | "via_dimensions": [ 176 | { 177 | "diameter": 0.0, 178 | "drill": 0.0 179 | } 180 | ], 181 | "zones_allow_external_fillets": false 182 | }, 183 | "layer_presets": [], 184 | "viewports": [] 185 | }, 186 | "boards": [], 187 | "cvpcb": { 188 | "equivalence_files": [] 189 | }, 190 | "libraries": { 191 | "pinned_footprint_libs": [], 192 | "pinned_symbol_libs": [] 193 | }, 194 | "meta": { 195 | "filename": "_autosave-POV LED.kicad_pro", 196 | "version": 1 197 | }, 198 | "net_settings": { 199 | "classes": [ 200 | { 201 | "bus_width": 12, 202 | "clearance": 0.2, 203 | "diff_pair_gap": 0.25, 204 | "diff_pair_via_gap": 0.25, 205 | "diff_pair_width": 0.2, 206 | "line_style": 0, 207 | "microvia_diameter": 0.3, 208 | "microvia_drill": 0.1, 209 | "name": "Default", 210 | "pcb_color": "rgba(0, 0, 0, 0.000)", 211 | "schematic_color": "rgba(0, 0, 0, 0.000)", 212 | "track_width": 0.2, 213 | "via_diameter": 0.6, 214 | "via_drill": 0.3, 215 | "wire_width": 6 216 | } 217 | ], 218 | "meta": { 219 | "version": 3 220 | }, 221 | "net_colors": null, 222 | "netclass_assignments": null, 223 | "netclass_patterns": [] 224 | }, 225 | "pcbnew": { 226 | "last_paths": { 227 | "gencad": "", 228 | "idf": "", 229 | "netlist": "", 230 | "specctra_dsn": "", 231 | "step": "", 232 | "vrml": "" 233 | }, 234 | "page_layout_descr_file": "" 235 | }, 236 | "schematic": { 237 | "legacy_lib_dir": "", 238 | "legacy_lib_list": [] 239 | }, 240 | "sheets": [], 241 | "text_variables": {} 242 | } 243 | -------------------------------------------------------------------------------- /PCB/fp-info-cache: -------------------------------------------------------------------------------- 1 | 467478832043602 2 | Connector_PinHeader_2.54mm 3 | PinHeader_1x01_P2.54mm_Horizontal 4 | Through hole angled pin header, 1x01, 2.54mm pitch, 6mm pin length, single row 5 | Through hole angled pin header THT 1x01 2.54mm single row 6 | 0 7 | 1 8 | 1 9 | Connector_PinHeader_2.54mm 10 | PinHeader_1x01_P2.54mm_Vertical 11 | Through hole straight pin header, 1x01, 2.54mm pitch, single row 12 | Through hole pin header THT 1x01 2.54mm single row 13 | 0 14 | 1 15 | 1 16 | Connector_PinHeader_2.54mm 17 | PinHeader_1x02_P2.54mm_Horizontal 18 | Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row 19 | Through hole angled pin header THT 1x02 2.54mm single row 20 | 0 21 | 2 22 | 2 23 | Connector_PinHeader_2.54mm 24 | PinHeader_1x02_P2.54mm_Vertical 25 | Through hole straight pin header, 1x02, 2.54mm pitch, single row 26 | Through hole pin header THT 1x02 2.54mm single row 27 | 0 28 | 2 29 | 2 30 | Connector_PinHeader_2.54mm 31 | PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left 32 | surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) 33 | Surface mounted pin header SMD 1x02 2.54mm single row style1 pin1 left 34 | 0 35 | 2 36 | 2 37 | Connector_PinHeader_2.54mm 38 | PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right 39 | surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) 40 | Surface mounted pin header SMD 1x02 2.54mm single row style2 pin1 right 41 | 0 42 | 2 43 | 2 44 | Connector_PinHeader_2.54mm 45 | PinHeader_1x03_P2.54mm_Horizontal 46 | Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row 47 | Through hole angled pin header THT 1x03 2.54mm single row 48 | 0 49 | 3 50 | 3 51 | Connector_PinHeader_2.54mm 52 | PinHeader_1x03_P2.54mm_Vertical 53 | Through hole straight pin header, 1x03, 2.54mm pitch, single row 54 | Through hole pin header THT 1x03 2.54mm single row 55 | 0 56 | 3 57 | 3 58 | Connector_PinHeader_2.54mm 59 | PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left 60 | surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) 61 | Surface mounted pin header SMD 1x03 2.54mm single row style1 pin1 left 62 | 0 63 | 3 64 | 3 65 | Connector_PinHeader_2.54mm 66 | PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right 67 | surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) 68 | Surface mounted pin header SMD 1x03 2.54mm single row style2 pin1 right 69 | 0 70 | 3 71 | 3 72 | Connector_PinHeader_2.54mm 73 | PinHeader_1x04_P2.54mm_Horizontal 74 | Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row 75 | Through hole angled pin header THT 1x04 2.54mm single row 76 | 0 77 | 4 78 | 4 79 | Connector_PinHeader_2.54mm 80 | PinHeader_1x04_P2.54mm_Vertical 81 | Through hole straight pin header, 1x04, 2.54mm pitch, single row 82 | Through hole pin header THT 1x04 2.54mm single row 83 | 0 84 | 4 85 | 4 86 | Connector_PinHeader_2.54mm 87 | PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left 88 | surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) 89 | Surface mounted pin header SMD 1x04 2.54mm single row style1 pin1 left 90 | 0 91 | 4 92 | 4 93 | Connector_PinHeader_2.54mm 94 | PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right 95 | surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) 96 | Surface mounted pin header SMD 1x04 2.54mm single row style2 pin1 right 97 | 0 98 | 4 99 | 4 100 | Connector_PinHeader_2.54mm 101 | PinHeader_1x05_P2.54mm_Horizontal 102 | Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row 103 | Through hole angled pin header THT 1x05 2.54mm single row 104 | 0 105 | 5 106 | 5 107 | Connector_PinHeader_2.54mm 108 | PinHeader_1x05_P2.54mm_Vertical 109 | Through hole straight pin header, 1x05, 2.54mm pitch, single row 110 | Through hole pin header THT 1x05 2.54mm single row 111 | 0 112 | 5 113 | 5 114 | Connector_PinHeader_2.54mm 115 | PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left 116 | surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) 117 | Surface mounted pin header SMD 1x05 2.54mm single row style1 pin1 left 118 | 0 119 | 5 120 | 5 121 | Connector_PinHeader_2.54mm 122 | PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right 123 | surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) 124 | Surface mounted pin header SMD 1x05 2.54mm single row style2 pin1 right 125 | 0 126 | 5 127 | 5 128 | Connector_PinHeader_2.54mm 129 | PinHeader_1x06_P2.54mm_Horizontal 130 | Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row 131 | Through hole angled pin header THT 1x06 2.54mm single row 132 | 0 133 | 6 134 | 6 135 | Connector_PinHeader_2.54mm 136 | PinHeader_1x06_P2.54mm_Vertical 137 | Through hole straight pin header, 1x06, 2.54mm pitch, single row 138 | Through hole pin header THT 1x06 2.54mm single row 139 | 0 140 | 6 141 | 6 142 | Connector_PinHeader_2.54mm 143 | PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left 144 | surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) 145 | Surface mounted pin header SMD 1x06 2.54mm single row style1 pin1 left 146 | 0 147 | 6 148 | 6 149 | Connector_PinHeader_2.54mm 150 | PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right 151 | surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) 152 | Surface mounted pin header SMD 1x06 2.54mm single row style2 pin1 right 153 | 0 154 | 6 155 | 6 156 | Connector_PinHeader_2.54mm 157 | PinHeader_1x07_P2.54mm_Horizontal 158 | Through hole angled pin header, 1x07, 2.54mm pitch, 6mm pin length, single row 159 | Through hole angled pin header THT 1x07 2.54mm single row 160 | 0 161 | 7 162 | 7 163 | Connector_PinHeader_2.54mm 164 | PinHeader_1x07_P2.54mm_Vertical 165 | Through hole straight pin header, 1x07, 2.54mm pitch, single row 166 | Through hole pin header THT 1x07 2.54mm single row 167 | 0 168 | 7 169 | 7 170 | Connector_PinHeader_2.54mm 171 | PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left 172 | surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) 173 | Surface mounted pin header SMD 1x07 2.54mm single row style1 pin1 left 174 | 0 175 | 7 176 | 7 177 | Connector_PinHeader_2.54mm 178 | PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right 179 | surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) 180 | Surface mounted pin header SMD 1x07 2.54mm single row style2 pin1 right 181 | 0 182 | 7 183 | 7 184 | Connector_PinHeader_2.54mm 185 | PinHeader_1x08_P2.54mm_Horizontal 186 | Through hole angled pin header, 1x08, 2.54mm pitch, 6mm pin length, single row 187 | Through hole angled pin header THT 1x08 2.54mm single row 188 | 0 189 | 8 190 | 8 191 | Connector_PinHeader_2.54mm 192 | PinHeader_1x08_P2.54mm_Vertical 193 | Through hole straight pin header, 1x08, 2.54mm pitch, single row 194 | Through hole pin header THT 1x08 2.54mm single row 195 | 0 196 | 8 197 | 8 198 | Connector_PinHeader_2.54mm 199 | PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left 200 | surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) 201 | Surface mounted pin header SMD 1x08 2.54mm single row style1 pin1 left 202 | 0 203 | 8 204 | 8 205 | Connector_PinHeader_2.54mm 206 | PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right 207 | surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) 208 | Surface mounted pin header SMD 1x08 2.54mm single row style2 pin1 right 209 | 0 210 | 8 211 | 8 212 | Connector_PinHeader_2.54mm 213 | PinHeader_1x09_P2.54mm_Horizontal 214 | Through hole angled pin header, 1x09, 2.54mm pitch, 6mm pin length, single row 215 | Through hole angled pin header THT 1x09 2.54mm single row 216 | 0 217 | 9 218 | 9 219 | Connector_PinHeader_2.54mm 220 | PinHeader_1x09_P2.54mm_Vertical 221 | Through hole straight pin header, 1x09, 2.54mm pitch, single row 222 | Through hole pin header THT 1x09 2.54mm single row 223 | 0 224 | 9 225 | 9 226 | Connector_PinHeader_2.54mm 227 | PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left 228 | surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) 229 | Surface mounted pin header SMD 1x09 2.54mm single row style1 pin1 left 230 | 0 231 | 9 232 | 9 233 | Connector_PinHeader_2.54mm 234 | PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right 235 | surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) 236 | Surface mounted pin header SMD 1x09 2.54mm single row style2 pin1 right 237 | 0 238 | 9 239 | 9 240 | Connector_PinHeader_2.54mm 241 | PinHeader_1x10_P2.54mm_Horizontal 242 | Through hole angled pin header, 1x10, 2.54mm pitch, 6mm pin length, single row 243 | Through hole angled pin header THT 1x10 2.54mm single row 244 | 0 245 | 10 246 | 10 247 | Connector_PinHeader_2.54mm 248 | PinHeader_1x10_P2.54mm_Vertical 249 | Through hole straight pin header, 1x10, 2.54mm pitch, single row 250 | Through hole pin header THT 1x10 2.54mm single row 251 | 0 252 | 10 253 | 10 254 | Connector_PinHeader_2.54mm 255 | PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left 256 | surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) 257 | Surface mounted pin header SMD 1x10 2.54mm single row style1 pin1 left 258 | 0 259 | 10 260 | 10 261 | Connector_PinHeader_2.54mm 262 | PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right 263 | surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) 264 | Surface mounted pin header SMD 1x10 2.54mm single row style2 pin1 right 265 | 0 266 | 10 267 | 10 268 | Connector_PinHeader_2.54mm 269 | PinHeader_1x11_P2.54mm_Horizontal 270 | Through hole angled pin header, 1x11, 2.54mm pitch, 6mm pin length, single row 271 | Through hole angled pin header THT 1x11 2.54mm single row 272 | 0 273 | 11 274 | 11 275 | Connector_PinHeader_2.54mm 276 | PinHeader_1x11_P2.54mm_Vertical 277 | Through hole straight pin header, 1x11, 2.54mm pitch, single row 278 | Through hole pin header THT 1x11 2.54mm single row 279 | 0 280 | 11 281 | 11 282 | Connector_PinHeader_2.54mm 283 | PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left 284 | surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) 285 | Surface mounted pin header SMD 1x11 2.54mm single row style1 pin1 left 286 | 0 287 | 11 288 | 11 289 | Connector_PinHeader_2.54mm 290 | PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Right 291 | surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) 292 | Surface mounted pin header SMD 1x11 2.54mm single row style2 pin1 right 293 | 0 294 | 11 295 | 11 296 | Connector_PinHeader_2.54mm 297 | PinHeader_1x12_P2.54mm_Horizontal 298 | Through hole angled pin header, 1x12, 2.54mm pitch, 6mm pin length, single row 299 | Through hole angled pin header THT 1x12 2.54mm single row 300 | 0 301 | 12 302 | 12 303 | Connector_PinHeader_2.54mm 304 | PinHeader_1x12_P2.54mm_Vertical 305 | Through hole straight pin header, 1x12, 2.54mm pitch, single row 306 | Through hole pin header THT 1x12 2.54mm single row 307 | 0 308 | 12 309 | 12 310 | Connector_PinHeader_2.54mm 311 | PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Left 312 | surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) 313 | Surface mounted pin header SMD 1x12 2.54mm single row style1 pin1 left 314 | 0 315 | 12 316 | 12 317 | Connector_PinHeader_2.54mm 318 | PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Right 319 | surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) 320 | Surface mounted pin header SMD 1x12 2.54mm single row style2 pin1 right 321 | 0 322 | 12 323 | 12 324 | Connector_PinHeader_2.54mm 325 | PinHeader_1x13_P2.54mm_Horizontal 326 | Through hole angled pin header, 1x13, 2.54mm pitch, 6mm pin length, single row 327 | Through hole angled pin header THT 1x13 2.54mm single row 328 | 0 329 | 13 330 | 13 331 | Connector_PinHeader_2.54mm 332 | PinHeader_1x13_P2.54mm_Vertical 333 | Through hole straight pin header, 1x13, 2.54mm pitch, single row 334 | Through hole pin header THT 1x13 2.54mm single row 335 | 0 336 | 13 337 | 13 338 | Connector_PinHeader_2.54mm 339 | PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Left 340 | surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) 341 | Surface mounted pin header SMD 1x13 2.54mm single row style1 pin1 left 342 | 0 343 | 13 344 | 13 345 | Connector_PinHeader_2.54mm 346 | PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Right 347 | surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) 348 | Surface mounted pin header SMD 1x13 2.54mm single row style2 pin1 right 349 | 0 350 | 13 351 | 13 352 | Connector_PinHeader_2.54mm 353 | PinHeader_1x14_P2.54mm_Horizontal 354 | Through hole angled pin header, 1x14, 2.54mm pitch, 6mm pin length, single row 355 | Through hole angled pin header THT 1x14 2.54mm single row 356 | 0 357 | 14 358 | 14 359 | Connector_PinHeader_2.54mm 360 | PinHeader_1x14_P2.54mm_Vertical 361 | Through hole straight pin header, 1x14, 2.54mm pitch, single row 362 | Through hole pin header THT 1x14 2.54mm single row 363 | 0 364 | 14 365 | 14 366 | Connector_PinHeader_2.54mm 367 | PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Left 368 | surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) 369 | Surface mounted pin header SMD 1x14 2.54mm single row style1 pin1 left 370 | 0 371 | 14 372 | 14 373 | Connector_PinHeader_2.54mm 374 | PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Right 375 | surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) 376 | Surface mounted pin header SMD 1x14 2.54mm single row style2 pin1 right 377 | 0 378 | 14 379 | 14 380 | Connector_PinHeader_2.54mm 381 | PinHeader_1x15_P2.54mm_Horizontal 382 | Through hole angled pin header, 1x15, 2.54mm pitch, 6mm pin length, single row 383 | Through hole angled pin header THT 1x15 2.54mm single row 384 | 0 385 | 15 386 | 15 387 | Connector_PinHeader_2.54mm 388 | PinHeader_1x15_P2.54mm_Vertical 389 | Through hole straight pin header, 1x15, 2.54mm pitch, single row 390 | Through hole pin header THT 1x15 2.54mm single row 391 | 0 392 | 15 393 | 15 394 | Connector_PinHeader_2.54mm 395 | PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Left 396 | surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) 397 | Surface mounted pin header SMD 1x15 2.54mm single row style1 pin1 left 398 | 0 399 | 15 400 | 15 401 | Connector_PinHeader_2.54mm 402 | PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Right 403 | surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) 404 | Surface mounted pin header SMD 1x15 2.54mm single row style2 pin1 right 405 | 0 406 | 15 407 | 15 408 | Connector_PinHeader_2.54mm 409 | PinHeader_1x16_P2.54mm_Horizontal 410 | Through hole angled pin header, 1x16, 2.54mm pitch, 6mm pin length, single row 411 | Through hole angled pin header THT 1x16 2.54mm single row 412 | 0 413 | 16 414 | 16 415 | Connector_PinHeader_2.54mm 416 | PinHeader_1x16_P2.54mm_Vertical 417 | Through hole straight pin header, 1x16, 2.54mm pitch, single row 418 | Through hole pin header THT 1x16 2.54mm single row 419 | 0 420 | 16 421 | 16 422 | Connector_PinHeader_2.54mm 423 | PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Left 424 | surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) 425 | Surface mounted pin header SMD 1x16 2.54mm single row style1 pin1 left 426 | 0 427 | 16 428 | 16 429 | Connector_PinHeader_2.54mm 430 | PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Right 431 | surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) 432 | Surface mounted pin header SMD 1x16 2.54mm single row style2 pin1 right 433 | 0 434 | 16 435 | 16 436 | Connector_PinHeader_2.54mm 437 | PinHeader_1x17_P2.54mm_Horizontal 438 | Through hole angled pin header, 1x17, 2.54mm pitch, 6mm pin length, single row 439 | Through hole angled pin header THT 1x17 2.54mm single row 440 | 0 441 | 17 442 | 17 443 | Connector_PinHeader_2.54mm 444 | PinHeader_1x17_P2.54mm_Vertical 445 | Through hole straight pin header, 1x17, 2.54mm pitch, single row 446 | Through hole pin header THT 1x17 2.54mm single row 447 | 0 448 | 17 449 | 17 450 | Connector_PinHeader_2.54mm 451 | PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Left 452 | surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) 453 | Surface mounted pin header SMD 1x17 2.54mm single row style1 pin1 left 454 | 0 455 | 17 456 | 17 457 | Connector_PinHeader_2.54mm 458 | PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Right 459 | surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) 460 | Surface mounted pin header SMD 1x17 2.54mm single row style2 pin1 right 461 | 0 462 | 17 463 | 17 464 | Connector_PinHeader_2.54mm 465 | PinHeader_1x18_P2.54mm_Horizontal 466 | Through hole angled pin header, 1x18, 2.54mm pitch, 6mm pin length, single row 467 | Through hole angled pin header THT 1x18 2.54mm single row 468 | 0 469 | 18 470 | 18 471 | Connector_PinHeader_2.54mm 472 | PinHeader_1x18_P2.54mm_Vertical 473 | Through hole straight pin header, 1x18, 2.54mm pitch, single row 474 | Through hole pin header THT 1x18 2.54mm single row 475 | 0 476 | 18 477 | 18 478 | Connector_PinHeader_2.54mm 479 | PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Left 480 | surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) 481 | Surface mounted pin header SMD 1x18 2.54mm single row style1 pin1 left 482 | 0 483 | 18 484 | 18 485 | Connector_PinHeader_2.54mm 486 | PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Right 487 | surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) 488 | Surface mounted pin header SMD 1x18 2.54mm single row style2 pin1 right 489 | 0 490 | 18 491 | 18 492 | Connector_PinHeader_2.54mm 493 | PinHeader_1x19_P2.54mm_Horizontal 494 | Through hole angled pin header, 1x19, 2.54mm pitch, 6mm pin length, single row 495 | Through hole angled pin header THT 1x19 2.54mm single row 496 | 0 497 | 19 498 | 19 499 | Connector_PinHeader_2.54mm 500 | PinHeader_1x19_P2.54mm_Vertical 501 | Through hole straight pin header, 1x19, 2.54mm pitch, single row 502 | Through hole pin header THT 1x19 2.54mm single row 503 | 0 504 | 19 505 | 19 506 | Connector_PinHeader_2.54mm 507 | PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Left 508 | surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) 509 | Surface mounted pin header SMD 1x19 2.54mm single row style1 pin1 left 510 | 0 511 | 19 512 | 19 513 | Connector_PinHeader_2.54mm 514 | PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Right 515 | surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) 516 | Surface mounted pin header SMD 1x19 2.54mm single row style2 pin1 right 517 | 0 518 | 19 519 | 19 520 | Connector_PinHeader_2.54mm 521 | PinHeader_1x20_P2.54mm_Horizontal 522 | Through hole angled pin header, 1x20, 2.54mm pitch, 6mm pin length, single row 523 | Through hole angled pin header THT 1x20 2.54mm single row 524 | 0 525 | 20 526 | 20 527 | Connector_PinHeader_2.54mm 528 | PinHeader_1x20_P2.54mm_Vertical 529 | Through hole straight pin header, 1x20, 2.54mm pitch, single row 530 | Through hole pin header THT 1x20 2.54mm single row 531 | 0 532 | 20 533 | 20 534 | Connector_PinHeader_2.54mm 535 | PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Left 536 | surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) 537 | Surface mounted pin header SMD 1x20 2.54mm single row style1 pin1 left 538 | 0 539 | 20 540 | 20 541 | Connector_PinHeader_2.54mm 542 | PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Right 543 | surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) 544 | Surface mounted pin header SMD 1x20 2.54mm single row style2 pin1 right 545 | 0 546 | 20 547 | 20 548 | Connector_PinHeader_2.54mm 549 | PinHeader_1x21_P2.54mm_Horizontal 550 | Through hole angled pin header, 1x21, 2.54mm pitch, 6mm pin length, single row 551 | Through hole angled pin header THT 1x21 2.54mm single row 552 | 0 553 | 21 554 | 21 555 | Connector_PinHeader_2.54mm 556 | PinHeader_1x21_P2.54mm_Vertical 557 | Through hole straight pin header, 1x21, 2.54mm pitch, single row 558 | Through hole pin header THT 1x21 2.54mm single row 559 | 0 560 | 21 561 | 21 562 | Connector_PinHeader_2.54mm 563 | PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Left 564 | surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) 565 | Surface mounted pin header SMD 1x21 2.54mm single row style1 pin1 left 566 | 0 567 | 21 568 | 21 569 | Connector_PinHeader_2.54mm 570 | PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Right 571 | surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) 572 | Surface mounted pin header SMD 1x21 2.54mm single row style2 pin1 right 573 | 0 574 | 21 575 | 21 576 | Connector_PinHeader_2.54mm 577 | PinHeader_1x22_P2.54mm_Horizontal 578 | Through hole angled pin header, 1x22, 2.54mm pitch, 6mm pin length, single row 579 | Through hole angled pin header THT 1x22 2.54mm single row 580 | 0 581 | 22 582 | 22 583 | Connector_PinHeader_2.54mm 584 | PinHeader_1x22_P2.54mm_Vertical 585 | Through hole straight pin header, 1x22, 2.54mm pitch, single row 586 | Through hole pin header THT 1x22 2.54mm single row 587 | 0 588 | 22 589 | 22 590 | Connector_PinHeader_2.54mm 591 | PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Left 592 | surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) 593 | Surface mounted pin header SMD 1x22 2.54mm single row style1 pin1 left 594 | 0 595 | 22 596 | 22 597 | Connector_PinHeader_2.54mm 598 | PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Right 599 | surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) 600 | Surface mounted pin header SMD 1x22 2.54mm single row style2 pin1 right 601 | 0 602 | 22 603 | 22 604 | Connector_PinHeader_2.54mm 605 | PinHeader_1x23_P2.54mm_Horizontal 606 | Through hole angled pin header, 1x23, 2.54mm pitch, 6mm pin length, single row 607 | Through hole angled pin header THT 1x23 2.54mm single row 608 | 0 609 | 23 610 | 23 611 | Connector_PinHeader_2.54mm 612 | PinHeader_1x23_P2.54mm_Vertical 613 | Through hole straight pin header, 1x23, 2.54mm pitch, single row 614 | Through hole pin header THT 1x23 2.54mm single row 615 | 0 616 | 23 617 | 23 618 | Connector_PinHeader_2.54mm 619 | PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Left 620 | surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) 621 | Surface mounted pin header SMD 1x23 2.54mm single row style1 pin1 left 622 | 0 623 | 23 624 | 23 625 | Connector_PinHeader_2.54mm 626 | PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Right 627 | surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) 628 | Surface mounted pin header SMD 1x23 2.54mm single row style2 pin1 right 629 | 0 630 | 23 631 | 23 632 | Connector_PinHeader_2.54mm 633 | PinHeader_1x24_P2.54mm_Horizontal 634 | Through hole angled pin header, 1x24, 2.54mm pitch, 6mm pin length, single row 635 | Through hole angled pin header THT 1x24 2.54mm single row 636 | 0 637 | 24 638 | 24 639 | Connector_PinHeader_2.54mm 640 | PinHeader_1x24_P2.54mm_Vertical 641 | Through hole straight pin header, 1x24, 2.54mm pitch, single row 642 | Through hole pin header THT 1x24 2.54mm single row 643 | 0 644 | 24 645 | 24 646 | Connector_PinHeader_2.54mm 647 | PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Left 648 | surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) 649 | Surface mounted pin header SMD 1x24 2.54mm single row style1 pin1 left 650 | 0 651 | 24 652 | 24 653 | Connector_PinHeader_2.54mm 654 | PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Right 655 | surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) 656 | Surface mounted pin header SMD 1x24 2.54mm single row style2 pin1 right 657 | 0 658 | 24 659 | 24 660 | Connector_PinHeader_2.54mm 661 | PinHeader_1x25_P2.54mm_Horizontal 662 | Through hole angled pin header, 1x25, 2.54mm pitch, 6mm pin length, single row 663 | Through hole angled pin header THT 1x25 2.54mm single row 664 | 0 665 | 25 666 | 25 667 | Connector_PinHeader_2.54mm 668 | PinHeader_1x25_P2.54mm_Vertical 669 | Through hole straight pin header, 1x25, 2.54mm pitch, single row 670 | Through hole pin header THT 1x25 2.54mm single row 671 | 0 672 | 25 673 | 25 674 | Connector_PinHeader_2.54mm 675 | PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Left 676 | surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) 677 | Surface mounted pin header SMD 1x25 2.54mm single row style1 pin1 left 678 | 0 679 | 25 680 | 25 681 | Connector_PinHeader_2.54mm 682 | PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Right 683 | surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) 684 | Surface mounted pin header SMD 1x25 2.54mm single row style2 pin1 right 685 | 0 686 | 25 687 | 25 688 | Connector_PinHeader_2.54mm 689 | PinHeader_1x26_P2.54mm_Horizontal 690 | Through hole angled pin header, 1x26, 2.54mm pitch, 6mm pin length, single row 691 | Through hole angled pin header THT 1x26 2.54mm single row 692 | 0 693 | 26 694 | 26 695 | Connector_PinHeader_2.54mm 696 | PinHeader_1x26_P2.54mm_Vertical 697 | Through hole straight pin header, 1x26, 2.54mm pitch, single row 698 | Through hole pin header THT 1x26 2.54mm single row 699 | 0 700 | 26 701 | 26 702 | Connector_PinHeader_2.54mm 703 | PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Left 704 | surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) 705 | Surface mounted pin header SMD 1x26 2.54mm single row style1 pin1 left 706 | 0 707 | 26 708 | 26 709 | Connector_PinHeader_2.54mm 710 | PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Right 711 | surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) 712 | Surface mounted pin header SMD 1x26 2.54mm single row style2 pin1 right 713 | 0 714 | 26 715 | 26 716 | Connector_PinHeader_2.54mm 717 | PinHeader_1x27_P2.54mm_Horizontal 718 | Through hole angled pin header, 1x27, 2.54mm pitch, 6mm pin length, single row 719 | Through hole angled pin header THT 1x27 2.54mm single row 720 | 0 721 | 27 722 | 27 723 | Connector_PinHeader_2.54mm 724 | PinHeader_1x27_P2.54mm_Vertical 725 | Through hole straight pin header, 1x27, 2.54mm pitch, single row 726 | Through hole pin header THT 1x27 2.54mm single row 727 | 0 728 | 27 729 | 27 730 | Connector_PinHeader_2.54mm 731 | PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Left 732 | surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) 733 | Surface mounted pin header SMD 1x27 2.54mm single row style1 pin1 left 734 | 0 735 | 27 736 | 27 737 | Connector_PinHeader_2.54mm 738 | PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Right 739 | surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) 740 | Surface mounted pin header SMD 1x27 2.54mm single row style2 pin1 right 741 | 0 742 | 27 743 | 27 744 | Connector_PinHeader_2.54mm 745 | PinHeader_1x28_P2.54mm_Horizontal 746 | Through hole angled pin header, 1x28, 2.54mm pitch, 6mm pin length, single row 747 | Through hole angled pin header THT 1x28 2.54mm single row 748 | 0 749 | 28 750 | 28 751 | Connector_PinHeader_2.54mm 752 | PinHeader_1x28_P2.54mm_Vertical 753 | Through hole straight pin header, 1x28, 2.54mm pitch, single row 754 | Through hole pin header THT 1x28 2.54mm single row 755 | 0 756 | 28 757 | 28 758 | Connector_PinHeader_2.54mm 759 | PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Left 760 | surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) 761 | Surface mounted pin header SMD 1x28 2.54mm single row style1 pin1 left 762 | 0 763 | 28 764 | 28 765 | Connector_PinHeader_2.54mm 766 | PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Right 767 | surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) 768 | Surface mounted pin header SMD 1x28 2.54mm single row style2 pin1 right 769 | 0 770 | 28 771 | 28 772 | Connector_PinHeader_2.54mm 773 | PinHeader_1x29_P2.54mm_Horizontal 774 | Through hole angled pin header, 1x29, 2.54mm pitch, 6mm pin length, single row 775 | Through hole angled pin header THT 1x29 2.54mm single row 776 | 0 777 | 29 778 | 29 779 | Connector_PinHeader_2.54mm 780 | PinHeader_1x29_P2.54mm_Vertical 781 | Through hole straight pin header, 1x29, 2.54mm pitch, single row 782 | Through hole pin header THT 1x29 2.54mm single row 783 | 0 784 | 29 785 | 29 786 | Connector_PinHeader_2.54mm 787 | PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Left 788 | surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) 789 | Surface mounted pin header SMD 1x29 2.54mm single row style1 pin1 left 790 | 0 791 | 29 792 | 29 793 | Connector_PinHeader_2.54mm 794 | PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Right 795 | surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) 796 | Surface mounted pin header SMD 1x29 2.54mm single row style2 pin1 right 797 | 0 798 | 29 799 | 29 800 | Connector_PinHeader_2.54mm 801 | PinHeader_1x30_P2.54mm_Horizontal 802 | Through hole angled pin header, 1x30, 2.54mm pitch, 6mm pin length, single row 803 | Through hole angled pin header THT 1x30 2.54mm single row 804 | 0 805 | 30 806 | 30 807 | Connector_PinHeader_2.54mm 808 | PinHeader_1x30_P2.54mm_Vertical 809 | Through hole straight pin header, 1x30, 2.54mm pitch, single row 810 | Through hole pin header THT 1x30 2.54mm single row 811 | 0 812 | 30 813 | 30 814 | Connector_PinHeader_2.54mm 815 | PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Left 816 | surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) 817 | Surface mounted pin header SMD 1x30 2.54mm single row style1 pin1 left 818 | 0 819 | 30 820 | 30 821 | Connector_PinHeader_2.54mm 822 | PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Right 823 | surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) 824 | Surface mounted pin header SMD 1x30 2.54mm single row style2 pin1 right 825 | 0 826 | 30 827 | 30 828 | Connector_PinHeader_2.54mm 829 | PinHeader_1x31_P2.54mm_Horizontal 830 | Through hole angled pin header, 1x31, 2.54mm pitch, 6mm pin length, single row 831 | Through hole angled pin header THT 1x31 2.54mm single row 832 | 0 833 | 31 834 | 31 835 | Connector_PinHeader_2.54mm 836 | PinHeader_1x31_P2.54mm_Vertical 837 | Through hole straight pin header, 1x31, 2.54mm pitch, single row 838 | Through hole pin header THT 1x31 2.54mm single row 839 | 0 840 | 31 841 | 31 842 | Connector_PinHeader_2.54mm 843 | PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Left 844 | surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) 845 | Surface mounted pin header SMD 1x31 2.54mm single row style1 pin1 left 846 | 0 847 | 31 848 | 31 849 | Connector_PinHeader_2.54mm 850 | PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Right 851 | surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) 852 | Surface mounted pin header SMD 1x31 2.54mm single row style2 pin1 right 853 | 0 854 | 31 855 | 31 856 | Connector_PinHeader_2.54mm 857 | PinHeader_1x32_P2.54mm_Horizontal 858 | Through hole angled pin header, 1x32, 2.54mm pitch, 6mm pin length, single row 859 | Through hole angled pin header THT 1x32 2.54mm single row 860 | 0 861 | 32 862 | 32 863 | Connector_PinHeader_2.54mm 864 | PinHeader_1x32_P2.54mm_Vertical 865 | Through hole straight pin header, 1x32, 2.54mm pitch, single row 866 | Through hole pin header THT 1x32 2.54mm single row 867 | 0 868 | 32 869 | 32 870 | Connector_PinHeader_2.54mm 871 | PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Left 872 | surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) 873 | Surface mounted pin header SMD 1x32 2.54mm single row style1 pin1 left 874 | 0 875 | 32 876 | 32 877 | Connector_PinHeader_2.54mm 878 | PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Right 879 | surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) 880 | Surface mounted pin header SMD 1x32 2.54mm single row style2 pin1 right 881 | 0 882 | 32 883 | 32 884 | Connector_PinHeader_2.54mm 885 | PinHeader_1x33_P2.54mm_Horizontal 886 | Through hole angled pin header, 1x33, 2.54mm pitch, 6mm pin length, single row 887 | Through hole angled pin header THT 1x33 2.54mm single row 888 | 0 889 | 33 890 | 33 891 | Connector_PinHeader_2.54mm 892 | PinHeader_1x33_P2.54mm_Vertical 893 | Through hole straight pin header, 1x33, 2.54mm pitch, single row 894 | Through hole pin header THT 1x33 2.54mm single row 895 | 0 896 | 33 897 | 33 898 | Connector_PinHeader_2.54mm 899 | PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Left 900 | surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) 901 | Surface mounted pin header SMD 1x33 2.54mm single row style1 pin1 left 902 | 0 903 | 33 904 | 33 905 | Connector_PinHeader_2.54mm 906 | PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Right 907 | surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) 908 | Surface mounted pin header SMD 1x33 2.54mm single row style2 pin1 right 909 | 0 910 | 33 911 | 33 912 | Connector_PinHeader_2.54mm 913 | PinHeader_1x34_P2.54mm_Horizontal 914 | Through hole angled pin header, 1x34, 2.54mm pitch, 6mm pin length, single row 915 | Through hole angled pin header THT 1x34 2.54mm single row 916 | 0 917 | 34 918 | 34 919 | Connector_PinHeader_2.54mm 920 | PinHeader_1x34_P2.54mm_Vertical 921 | Through hole straight pin header, 1x34, 2.54mm pitch, single row 922 | Through hole pin header THT 1x34 2.54mm single row 923 | 0 924 | 34 925 | 34 926 | Connector_PinHeader_2.54mm 927 | PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Left 928 | surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) 929 | Surface mounted pin header SMD 1x34 2.54mm single row style1 pin1 left 930 | 0 931 | 34 932 | 34 933 | Connector_PinHeader_2.54mm 934 | PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Right 935 | surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) 936 | Surface mounted pin header SMD 1x34 2.54mm single row style2 pin1 right 937 | 0 938 | 34 939 | 34 940 | Connector_PinHeader_2.54mm 941 | PinHeader_1x35_P2.54mm_Horizontal 942 | Through hole angled pin header, 1x35, 2.54mm pitch, 6mm pin length, single row 943 | Through hole angled pin header THT 1x35 2.54mm single row 944 | 0 945 | 35 946 | 35 947 | Connector_PinHeader_2.54mm 948 | PinHeader_1x35_P2.54mm_Vertical 949 | Through hole straight pin header, 1x35, 2.54mm pitch, single row 950 | Through hole pin header THT 1x35 2.54mm single row 951 | 0 952 | 35 953 | 35 954 | Connector_PinHeader_2.54mm 955 | PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Left 956 | surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) 957 | Surface mounted pin header SMD 1x35 2.54mm single row style1 pin1 left 958 | 0 959 | 35 960 | 35 961 | Connector_PinHeader_2.54mm 962 | PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Right 963 | surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) 964 | Surface mounted pin header SMD 1x35 2.54mm single row style2 pin1 right 965 | 0 966 | 35 967 | 35 968 | Connector_PinHeader_2.54mm 969 | PinHeader_1x36_P2.54mm_Horizontal 970 | Through hole angled pin header, 1x36, 2.54mm pitch, 6mm pin length, single row 971 | Through hole angled pin header THT 1x36 2.54mm single row 972 | 0 973 | 36 974 | 36 975 | Connector_PinHeader_2.54mm 976 | PinHeader_1x36_P2.54mm_Vertical 977 | Through hole straight pin header, 1x36, 2.54mm pitch, single row 978 | Through hole pin header THT 1x36 2.54mm single row 979 | 0 980 | 36 981 | 36 982 | Connector_PinHeader_2.54mm 983 | PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Left 984 | surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) 985 | Surface mounted pin header SMD 1x36 2.54mm single row style1 pin1 left 986 | 0 987 | 36 988 | 36 989 | Connector_PinHeader_2.54mm 990 | PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Right 991 | surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) 992 | Surface mounted pin header SMD 1x36 2.54mm single row style2 pin1 right 993 | 0 994 | 36 995 | 36 996 | Connector_PinHeader_2.54mm 997 | PinHeader_1x37_P2.54mm_Horizontal 998 | Through hole angled pin header, 1x37, 2.54mm pitch, 6mm pin length, single row 999 | Through hole angled pin header THT 1x37 2.54mm single row 1000 | 0 1001 | 37 1002 | 37 1003 | Connector_PinHeader_2.54mm 1004 | PinHeader_1x37_P2.54mm_Vertical 1005 | Through hole straight pin header, 1x37, 2.54mm pitch, single row 1006 | Through hole pin header THT 1x37 2.54mm single row 1007 | 0 1008 | 37 1009 | 37 1010 | Connector_PinHeader_2.54mm 1011 | PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Left 1012 | surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) 1013 | Surface mounted pin header SMD 1x37 2.54mm single row style1 pin1 left 1014 | 0 1015 | 37 1016 | 37 1017 | Connector_PinHeader_2.54mm 1018 | PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Right 1019 | surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) 1020 | Surface mounted pin header SMD 1x37 2.54mm single row style2 pin1 right 1021 | 0 1022 | 37 1023 | 37 1024 | Connector_PinHeader_2.54mm 1025 | PinHeader_1x38_P2.54mm_Horizontal 1026 | Through hole angled pin header, 1x38, 2.54mm pitch, 6mm pin length, single row 1027 | Through hole angled pin header THT 1x38 2.54mm single row 1028 | 0 1029 | 38 1030 | 38 1031 | Connector_PinHeader_2.54mm 1032 | PinHeader_1x38_P2.54mm_Vertical 1033 | Through hole straight pin header, 1x38, 2.54mm pitch, single row 1034 | Through hole pin header THT 1x38 2.54mm single row 1035 | 0 1036 | 38 1037 | 38 1038 | Connector_PinHeader_2.54mm 1039 | PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Left 1040 | surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) 1041 | Surface mounted pin header SMD 1x38 2.54mm single row style1 pin1 left 1042 | 0 1043 | 38 1044 | 38 1045 | Connector_PinHeader_2.54mm 1046 | PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Right 1047 | surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) 1048 | Surface mounted pin header SMD 1x38 2.54mm single row style2 pin1 right 1049 | 0 1050 | 38 1051 | 38 1052 | Connector_PinHeader_2.54mm 1053 | PinHeader_1x39_P2.54mm_Horizontal 1054 | Through hole angled pin header, 1x39, 2.54mm pitch, 6mm pin length, single row 1055 | Through hole angled pin header THT 1x39 2.54mm single row 1056 | 0 1057 | 39 1058 | 39 1059 | Connector_PinHeader_2.54mm 1060 | PinHeader_1x39_P2.54mm_Vertical 1061 | Through hole straight pin header, 1x39, 2.54mm pitch, single row 1062 | Through hole pin header THT 1x39 2.54mm single row 1063 | 0 1064 | 39 1065 | 39 1066 | Connector_PinHeader_2.54mm 1067 | PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Left 1068 | surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) 1069 | Surface mounted pin header SMD 1x39 2.54mm single row style1 pin1 left 1070 | 0 1071 | 39 1072 | 39 1073 | Connector_PinHeader_2.54mm 1074 | PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Right 1075 | surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) 1076 | Surface mounted pin header SMD 1x39 2.54mm single row style2 pin1 right 1077 | 0 1078 | 39 1079 | 39 1080 | Connector_PinHeader_2.54mm 1081 | PinHeader_1x40_P2.54mm_Horizontal 1082 | Through hole angled pin header, 1x40, 2.54mm pitch, 6mm pin length, single row 1083 | Through hole angled pin header THT 1x40 2.54mm single row 1084 | 0 1085 | 40 1086 | 40 1087 | Connector_PinHeader_2.54mm 1088 | PinHeader_1x40_P2.54mm_Vertical 1089 | Through hole straight pin header, 1x40, 2.54mm pitch, single row 1090 | Through hole pin header THT 1x40 2.54mm single row 1091 | 0 1092 | 40 1093 | 40 1094 | Connector_PinHeader_2.54mm 1095 | PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Left 1096 | surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) 1097 | Surface mounted pin header SMD 1x40 2.54mm single row style1 pin1 left 1098 | 0 1099 | 40 1100 | 40 1101 | Connector_PinHeader_2.54mm 1102 | PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Right 1103 | surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) 1104 | Surface mounted pin header SMD 1x40 2.54mm single row style2 pin1 right 1105 | 0 1106 | 40 1107 | 40 1108 | Connector_PinHeader_2.54mm 1109 | PinHeader_2x01_P2.54mm_Horizontal 1110 | Through hole angled pin header, 2x01, 2.54mm pitch, 6mm pin length, double rows 1111 | Through hole angled pin header THT 2x01 2.54mm double row 1112 | 0 1113 | 2 1114 | 2 1115 | Connector_PinHeader_2.54mm 1116 | PinHeader_2x01_P2.54mm_Vertical 1117 | Through hole straight pin header, 2x01, 2.54mm pitch, double rows 1118 | Through hole pin header THT 2x01 2.54mm double row 1119 | 0 1120 | 2 1121 | 2 1122 | Connector_PinHeader_2.54mm 1123 | PinHeader_2x01_P2.54mm_Vertical_SMD 1124 | surface-mounted straight pin header, 2x01, 2.54mm pitch, double rows 1125 | Surface mounted pin header SMD 2x01 2.54mm double row 1126 | 0 1127 | 2 1128 | 2 1129 | Connector_PinHeader_2.54mm 1130 | PinHeader_2x02_P2.54mm_Horizontal 1131 | Through hole angled pin header, 2x02, 2.54mm pitch, 6mm pin length, double rows 1132 | Through hole angled pin header THT 2x02 2.54mm double row 1133 | 0 1134 | 4 1135 | 4 1136 | Connector_PinHeader_2.54mm 1137 | PinHeader_2x02_P2.54mm_Vertical 1138 | Through hole straight pin header, 2x02, 2.54mm pitch, double rows 1139 | Through hole pin header THT 2x02 2.54mm double row 1140 | 0 1141 | 4 1142 | 4 1143 | Connector_PinHeader_2.54mm 1144 | PinHeader_2x02_P2.54mm_Vertical_SMD 1145 | surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows 1146 | Surface mounted pin header SMD 2x02 2.54mm double row 1147 | 0 1148 | 4 1149 | 4 1150 | Connector_PinHeader_2.54mm 1151 | PinHeader_2x03_P2.54mm_Horizontal 1152 | Through hole angled pin header, 2x03, 2.54mm pitch, 6mm pin length, double rows 1153 | Through hole angled pin header THT 2x03 2.54mm double row 1154 | 0 1155 | 6 1156 | 6 1157 | Connector_PinHeader_2.54mm 1158 | PinHeader_2x03_P2.54mm_Vertical 1159 | Through hole straight pin header, 2x03, 2.54mm pitch, double rows 1160 | Through hole pin header THT 2x03 2.54mm double row 1161 | 0 1162 | 6 1163 | 6 1164 | Connector_PinHeader_2.54mm 1165 | PinHeader_2x03_P2.54mm_Vertical_SMD 1166 | surface-mounted straight pin header, 2x03, 2.54mm pitch, double rows 1167 | Surface mounted pin header SMD 2x03 2.54mm double row 1168 | 0 1169 | 6 1170 | 6 1171 | Connector_PinHeader_2.54mm 1172 | PinHeader_2x04_P2.54mm_Horizontal 1173 | Through hole angled pin header, 2x04, 2.54mm pitch, 6mm pin length, double rows 1174 | Through hole angled pin header THT 2x04 2.54mm double row 1175 | 0 1176 | 8 1177 | 8 1178 | Connector_PinHeader_2.54mm 1179 | PinHeader_2x04_P2.54mm_Vertical 1180 | Through hole straight pin header, 2x04, 2.54mm pitch, double rows 1181 | Through hole pin header THT 2x04 2.54mm double row 1182 | 0 1183 | 8 1184 | 8 1185 | Connector_PinHeader_2.54mm 1186 | PinHeader_2x04_P2.54mm_Vertical_SMD 1187 | surface-mounted straight pin header, 2x04, 2.54mm pitch, double rows 1188 | Surface mounted pin header SMD 2x04 2.54mm double row 1189 | 0 1190 | 8 1191 | 8 1192 | Connector_PinHeader_2.54mm 1193 | PinHeader_2x05_P2.54mm_Horizontal 1194 | Through hole angled pin header, 2x05, 2.54mm pitch, 6mm pin length, double rows 1195 | Through hole angled pin header THT 2x05 2.54mm double row 1196 | 0 1197 | 10 1198 | 10 1199 | Connector_PinHeader_2.54mm 1200 | PinHeader_2x05_P2.54mm_Vertical 1201 | Through hole straight pin header, 2x05, 2.54mm pitch, double rows 1202 | Through hole pin header THT 2x05 2.54mm double row 1203 | 0 1204 | 10 1205 | 10 1206 | Connector_PinHeader_2.54mm 1207 | PinHeader_2x05_P2.54mm_Vertical_SMD 1208 | surface-mounted straight pin header, 2x05, 2.54mm pitch, double rows 1209 | Surface mounted pin header SMD 2x05 2.54mm double row 1210 | 0 1211 | 10 1212 | 10 1213 | Connector_PinHeader_2.54mm 1214 | PinHeader_2x06_P2.54mm_Horizontal 1215 | Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows 1216 | Through hole angled pin header THT 2x06 2.54mm double row 1217 | 0 1218 | 12 1219 | 12 1220 | Connector_PinHeader_2.54mm 1221 | PinHeader_2x06_P2.54mm_Vertical 1222 | Through hole straight pin header, 2x06, 2.54mm pitch, double rows 1223 | Through hole pin header THT 2x06 2.54mm double row 1224 | 0 1225 | 12 1226 | 12 1227 | Connector_PinHeader_2.54mm 1228 | PinHeader_2x06_P2.54mm_Vertical_SMD 1229 | surface-mounted straight pin header, 2x06, 2.54mm pitch, double rows 1230 | Surface mounted pin header SMD 2x06 2.54mm double row 1231 | 0 1232 | 12 1233 | 12 1234 | Connector_PinHeader_2.54mm 1235 | PinHeader_2x07_P2.54mm_Horizontal 1236 | Through hole angled pin header, 2x07, 2.54mm pitch, 6mm pin length, double rows 1237 | Through hole angled pin header THT 2x07 2.54mm double row 1238 | 0 1239 | 14 1240 | 14 1241 | Connector_PinHeader_2.54mm 1242 | PinHeader_2x07_P2.54mm_Vertical 1243 | Through hole straight pin header, 2x07, 2.54mm pitch, double rows 1244 | Through hole pin header THT 2x07 2.54mm double row 1245 | 0 1246 | 14 1247 | 14 1248 | Connector_PinHeader_2.54mm 1249 | PinHeader_2x07_P2.54mm_Vertical_SMD 1250 | surface-mounted straight pin header, 2x07, 2.54mm pitch, double rows 1251 | Surface mounted pin header SMD 2x07 2.54mm double row 1252 | 0 1253 | 14 1254 | 14 1255 | Connector_PinHeader_2.54mm 1256 | PinHeader_2x08_P2.54mm_Horizontal 1257 | Through hole angled pin header, 2x08, 2.54mm pitch, 6mm pin length, double rows 1258 | Through hole angled pin header THT 2x08 2.54mm double row 1259 | 0 1260 | 16 1261 | 16 1262 | Connector_PinHeader_2.54mm 1263 | PinHeader_2x08_P2.54mm_Vertical 1264 | Through hole straight pin header, 2x08, 2.54mm pitch, double rows 1265 | Through hole pin header THT 2x08 2.54mm double row 1266 | 0 1267 | 16 1268 | 16 1269 | Connector_PinHeader_2.54mm 1270 | PinHeader_2x08_P2.54mm_Vertical_SMD 1271 | surface-mounted straight pin header, 2x08, 2.54mm pitch, double rows 1272 | Surface mounted pin header SMD 2x08 2.54mm double row 1273 | 0 1274 | 16 1275 | 16 1276 | Connector_PinHeader_2.54mm 1277 | PinHeader_2x09_P2.54mm_Horizontal 1278 | Through hole angled pin header, 2x09, 2.54mm pitch, 6mm pin length, double rows 1279 | Through hole angled pin header THT 2x09 2.54mm double row 1280 | 0 1281 | 18 1282 | 18 1283 | Connector_PinHeader_2.54mm 1284 | PinHeader_2x09_P2.54mm_Vertical 1285 | Through hole straight pin header, 2x09, 2.54mm pitch, double rows 1286 | Through hole pin header THT 2x09 2.54mm double row 1287 | 0 1288 | 18 1289 | 18 1290 | Connector_PinHeader_2.54mm 1291 | PinHeader_2x09_P2.54mm_Vertical_SMD 1292 | surface-mounted straight pin header, 2x09, 2.54mm pitch, double rows 1293 | Surface mounted pin header SMD 2x09 2.54mm double row 1294 | 0 1295 | 18 1296 | 18 1297 | Connector_PinHeader_2.54mm 1298 | PinHeader_2x10_P2.54mm_Horizontal 1299 | Through hole angled pin header, 2x10, 2.54mm pitch, 6mm pin length, double rows 1300 | Through hole angled pin header THT 2x10 2.54mm double row 1301 | 0 1302 | 20 1303 | 20 1304 | Connector_PinHeader_2.54mm 1305 | PinHeader_2x10_P2.54mm_Vertical 1306 | Through hole straight pin header, 2x10, 2.54mm pitch, double rows 1307 | Through hole pin header THT 2x10 2.54mm double row 1308 | 0 1309 | 20 1310 | 20 1311 | Connector_PinHeader_2.54mm 1312 | PinHeader_2x10_P2.54mm_Vertical_SMD 1313 | surface-mounted straight pin header, 2x10, 2.54mm pitch, double rows 1314 | Surface mounted pin header SMD 2x10 2.54mm double row 1315 | 0 1316 | 20 1317 | 20 1318 | Connector_PinHeader_2.54mm 1319 | PinHeader_2x11_P2.54mm_Horizontal 1320 | Through hole angled pin header, 2x11, 2.54mm pitch, 6mm pin length, double rows 1321 | Through hole angled pin header THT 2x11 2.54mm double row 1322 | 0 1323 | 22 1324 | 22 1325 | Connector_PinHeader_2.54mm 1326 | PinHeader_2x11_P2.54mm_Vertical 1327 | Through hole straight pin header, 2x11, 2.54mm pitch, double rows 1328 | Through hole pin header THT 2x11 2.54mm double row 1329 | 0 1330 | 22 1331 | 22 1332 | Connector_PinHeader_2.54mm 1333 | PinHeader_2x11_P2.54mm_Vertical_SMD 1334 | surface-mounted straight pin header, 2x11, 2.54mm pitch, double rows 1335 | Surface mounted pin header SMD 2x11 2.54mm double row 1336 | 0 1337 | 22 1338 | 22 1339 | Connector_PinHeader_2.54mm 1340 | PinHeader_2x12_P2.54mm_Horizontal 1341 | Through hole angled pin header, 2x12, 2.54mm pitch, 6mm pin length, double rows 1342 | Through hole angled pin header THT 2x12 2.54mm double row 1343 | 0 1344 | 24 1345 | 24 1346 | Connector_PinHeader_2.54mm 1347 | PinHeader_2x12_P2.54mm_Vertical 1348 | Through hole straight pin header, 2x12, 2.54mm pitch, double rows 1349 | Through hole pin header THT 2x12 2.54mm double row 1350 | 0 1351 | 24 1352 | 24 1353 | Connector_PinHeader_2.54mm 1354 | PinHeader_2x12_P2.54mm_Vertical_SMD 1355 | surface-mounted straight pin header, 2x12, 2.54mm pitch, double rows 1356 | Surface mounted pin header SMD 2x12 2.54mm double row 1357 | 0 1358 | 24 1359 | 24 1360 | Connector_PinHeader_2.54mm 1361 | PinHeader_2x13_P2.54mm_Horizontal 1362 | Through hole angled pin header, 2x13, 2.54mm pitch, 6mm pin length, double rows 1363 | Through hole angled pin header THT 2x13 2.54mm double row 1364 | 0 1365 | 26 1366 | 26 1367 | Connector_PinHeader_2.54mm 1368 | PinHeader_2x13_P2.54mm_Vertical 1369 | Through hole straight pin header, 2x13, 2.54mm pitch, double rows 1370 | Through hole pin header THT 2x13 2.54mm double row 1371 | 0 1372 | 26 1373 | 26 1374 | Connector_PinHeader_2.54mm 1375 | PinHeader_2x13_P2.54mm_Vertical_SMD 1376 | surface-mounted straight pin header, 2x13, 2.54mm pitch, double rows 1377 | Surface mounted pin header SMD 2x13 2.54mm double row 1378 | 0 1379 | 26 1380 | 26 1381 | Connector_PinHeader_2.54mm 1382 | PinHeader_2x14_P2.54mm_Horizontal 1383 | Through hole angled pin header, 2x14, 2.54mm pitch, 6mm pin length, double rows 1384 | Through hole angled pin header THT 2x14 2.54mm double row 1385 | 0 1386 | 28 1387 | 28 1388 | Connector_PinHeader_2.54mm 1389 | PinHeader_2x14_P2.54mm_Vertical 1390 | Through hole straight pin header, 2x14, 2.54mm pitch, double rows 1391 | Through hole pin header THT 2x14 2.54mm double row 1392 | 0 1393 | 28 1394 | 28 1395 | Connector_PinHeader_2.54mm 1396 | PinHeader_2x14_P2.54mm_Vertical_SMD 1397 | surface-mounted straight pin header, 2x14, 2.54mm pitch, double rows 1398 | Surface mounted pin header SMD 2x14 2.54mm double row 1399 | 0 1400 | 28 1401 | 28 1402 | Connector_PinHeader_2.54mm 1403 | PinHeader_2x15_P2.54mm_Horizontal 1404 | Through hole angled pin header, 2x15, 2.54mm pitch, 6mm pin length, double rows 1405 | Through hole angled pin header THT 2x15 2.54mm double row 1406 | 0 1407 | 30 1408 | 30 1409 | Connector_PinHeader_2.54mm 1410 | PinHeader_2x15_P2.54mm_Vertical 1411 | Through hole straight pin header, 2x15, 2.54mm pitch, double rows 1412 | Through hole pin header THT 2x15 2.54mm double row 1413 | 0 1414 | 30 1415 | 30 1416 | Connector_PinHeader_2.54mm 1417 | PinHeader_2x15_P2.54mm_Vertical_SMD 1418 | surface-mounted straight pin header, 2x15, 2.54mm pitch, double rows 1419 | Surface mounted pin header SMD 2x15 2.54mm double row 1420 | 0 1421 | 30 1422 | 30 1423 | Connector_PinHeader_2.54mm 1424 | PinHeader_2x16_P2.54mm_Horizontal 1425 | Through hole angled pin header, 2x16, 2.54mm pitch, 6mm pin length, double rows 1426 | Through hole angled pin header THT 2x16 2.54mm double row 1427 | 0 1428 | 32 1429 | 32 1430 | Connector_PinHeader_2.54mm 1431 | PinHeader_2x16_P2.54mm_Vertical 1432 | Through hole straight pin header, 2x16, 2.54mm pitch, double rows 1433 | Through hole pin header THT 2x16 2.54mm double row 1434 | 0 1435 | 32 1436 | 32 1437 | Connector_PinHeader_2.54mm 1438 | PinHeader_2x16_P2.54mm_Vertical_SMD 1439 | surface-mounted straight pin header, 2x16, 2.54mm pitch, double rows 1440 | Surface mounted pin header SMD 2x16 2.54mm double row 1441 | 0 1442 | 32 1443 | 32 1444 | Connector_PinHeader_2.54mm 1445 | PinHeader_2x17_P2.54mm_Horizontal 1446 | Through hole angled pin header, 2x17, 2.54mm pitch, 6mm pin length, double rows 1447 | Through hole angled pin header THT 2x17 2.54mm double row 1448 | 0 1449 | 34 1450 | 34 1451 | Connector_PinHeader_2.54mm 1452 | PinHeader_2x17_P2.54mm_Vertical 1453 | Through hole straight pin header, 2x17, 2.54mm pitch, double rows 1454 | Through hole pin header THT 2x17 2.54mm double row 1455 | 0 1456 | 34 1457 | 34 1458 | Connector_PinHeader_2.54mm 1459 | PinHeader_2x17_P2.54mm_Vertical_SMD 1460 | surface-mounted straight pin header, 2x17, 2.54mm pitch, double rows 1461 | Surface mounted pin header SMD 2x17 2.54mm double row 1462 | 0 1463 | 34 1464 | 34 1465 | Connector_PinHeader_2.54mm 1466 | PinHeader_2x18_P2.54mm_Horizontal 1467 | Through hole angled pin header, 2x18, 2.54mm pitch, 6mm pin length, double rows 1468 | Through hole angled pin header THT 2x18 2.54mm double row 1469 | 0 1470 | 36 1471 | 36 1472 | Connector_PinHeader_2.54mm 1473 | PinHeader_2x18_P2.54mm_Vertical 1474 | Through hole straight pin header, 2x18, 2.54mm pitch, double rows 1475 | Through hole pin header THT 2x18 2.54mm double row 1476 | 0 1477 | 36 1478 | 36 1479 | Connector_PinHeader_2.54mm 1480 | PinHeader_2x18_P2.54mm_Vertical_SMD 1481 | surface-mounted straight pin header, 2x18, 2.54mm pitch, double rows 1482 | Surface mounted pin header SMD 2x18 2.54mm double row 1483 | 0 1484 | 36 1485 | 36 1486 | Connector_PinHeader_2.54mm 1487 | PinHeader_2x19_P2.54mm_Horizontal 1488 | Through hole angled pin header, 2x19, 2.54mm pitch, 6mm pin length, double rows 1489 | Through hole angled pin header THT 2x19 2.54mm double row 1490 | 0 1491 | 38 1492 | 38 1493 | Connector_PinHeader_2.54mm 1494 | PinHeader_2x19_P2.54mm_Vertical 1495 | Through hole straight pin header, 2x19, 2.54mm pitch, double rows 1496 | Through hole pin header THT 2x19 2.54mm double row 1497 | 0 1498 | 38 1499 | 38 1500 | Connector_PinHeader_2.54mm 1501 | PinHeader_2x19_P2.54mm_Vertical_SMD 1502 | surface-mounted straight pin header, 2x19, 2.54mm pitch, double rows 1503 | Surface mounted pin header SMD 2x19 2.54mm double row 1504 | 0 1505 | 38 1506 | 38 1507 | Connector_PinHeader_2.54mm 1508 | PinHeader_2x20_P2.54mm_Horizontal 1509 | Through hole angled pin header, 2x20, 2.54mm pitch, 6mm pin length, double rows 1510 | Through hole angled pin header THT 2x20 2.54mm double row 1511 | 0 1512 | 40 1513 | 40 1514 | Connector_PinHeader_2.54mm 1515 | PinHeader_2x20_P2.54mm_Vertical 1516 | Through hole straight pin header, 2x20, 2.54mm pitch, double rows 1517 | Through hole pin header THT 2x20 2.54mm double row 1518 | 0 1519 | 40 1520 | 40 1521 | Connector_PinHeader_2.54mm 1522 | PinHeader_2x20_P2.54mm_Vertical_SMD 1523 | surface-mounted straight pin header, 2x20, 2.54mm pitch, double rows 1524 | Surface mounted pin header SMD 2x20 2.54mm double row 1525 | 0 1526 | 40 1527 | 40 1528 | Connector_PinHeader_2.54mm 1529 | PinHeader_2x21_P2.54mm_Horizontal 1530 | Through hole angled pin header, 2x21, 2.54mm pitch, 6mm pin length, double rows 1531 | Through hole angled pin header THT 2x21 2.54mm double row 1532 | 0 1533 | 42 1534 | 42 1535 | Connector_PinHeader_2.54mm 1536 | PinHeader_2x21_P2.54mm_Vertical 1537 | Through hole straight pin header, 2x21, 2.54mm pitch, double rows 1538 | Through hole pin header THT 2x21 2.54mm double row 1539 | 0 1540 | 42 1541 | 42 1542 | Connector_PinHeader_2.54mm 1543 | PinHeader_2x21_P2.54mm_Vertical_SMD 1544 | surface-mounted straight pin header, 2x21, 2.54mm pitch, double rows 1545 | Surface mounted pin header SMD 2x21 2.54mm double row 1546 | 0 1547 | 42 1548 | 42 1549 | Connector_PinHeader_2.54mm 1550 | PinHeader_2x22_P2.54mm_Horizontal 1551 | Through hole angled pin header, 2x22, 2.54mm pitch, 6mm pin length, double rows 1552 | Through hole angled pin header THT 2x22 2.54mm double row 1553 | 0 1554 | 44 1555 | 44 1556 | Connector_PinHeader_2.54mm 1557 | PinHeader_2x22_P2.54mm_Vertical 1558 | Through hole straight pin header, 2x22, 2.54mm pitch, double rows 1559 | Through hole pin header THT 2x22 2.54mm double row 1560 | 0 1561 | 44 1562 | 44 1563 | Connector_PinHeader_2.54mm 1564 | PinHeader_2x22_P2.54mm_Vertical_SMD 1565 | surface-mounted straight pin header, 2x22, 2.54mm pitch, double rows 1566 | Surface mounted pin header SMD 2x22 2.54mm double row 1567 | 0 1568 | 44 1569 | 44 1570 | Connector_PinHeader_2.54mm 1571 | PinHeader_2x23_P2.54mm_Horizontal 1572 | Through hole angled pin header, 2x23, 2.54mm pitch, 6mm pin length, double rows 1573 | Through hole angled pin header THT 2x23 2.54mm double row 1574 | 0 1575 | 46 1576 | 46 1577 | Connector_PinHeader_2.54mm 1578 | PinHeader_2x23_P2.54mm_Vertical 1579 | Through hole straight pin header, 2x23, 2.54mm pitch, double rows 1580 | Through hole pin header THT 2x23 2.54mm double row 1581 | 0 1582 | 46 1583 | 46 1584 | Connector_PinHeader_2.54mm 1585 | PinHeader_2x23_P2.54mm_Vertical_SMD 1586 | surface-mounted straight pin header, 2x23, 2.54mm pitch, double rows 1587 | Surface mounted pin header SMD 2x23 2.54mm double row 1588 | 0 1589 | 46 1590 | 46 1591 | Connector_PinHeader_2.54mm 1592 | PinHeader_2x24_P2.54mm_Horizontal 1593 | Through hole angled pin header, 2x24, 2.54mm pitch, 6mm pin length, double rows 1594 | Through hole angled pin header THT 2x24 2.54mm double row 1595 | 0 1596 | 48 1597 | 48 1598 | Connector_PinHeader_2.54mm 1599 | PinHeader_2x24_P2.54mm_Vertical 1600 | Through hole straight pin header, 2x24, 2.54mm pitch, double rows 1601 | Through hole pin header THT 2x24 2.54mm double row 1602 | 0 1603 | 48 1604 | 48 1605 | Connector_PinHeader_2.54mm 1606 | PinHeader_2x24_P2.54mm_Vertical_SMD 1607 | surface-mounted straight pin header, 2x24, 2.54mm pitch, double rows 1608 | Surface mounted pin header SMD 2x24 2.54mm double row 1609 | 0 1610 | 48 1611 | 48 1612 | Connector_PinHeader_2.54mm 1613 | PinHeader_2x25_P2.54mm_Horizontal 1614 | Through hole angled pin header, 2x25, 2.54mm pitch, 6mm pin length, double rows 1615 | Through hole angled pin header THT 2x25 2.54mm double row 1616 | 0 1617 | 50 1618 | 50 1619 | Connector_PinHeader_2.54mm 1620 | PinHeader_2x25_P2.54mm_Vertical 1621 | Through hole straight pin header, 2x25, 2.54mm pitch, double rows 1622 | Through hole pin header THT 2x25 2.54mm double row 1623 | 0 1624 | 50 1625 | 50 1626 | Connector_PinHeader_2.54mm 1627 | PinHeader_2x25_P2.54mm_Vertical_SMD 1628 | surface-mounted straight pin header, 2x25, 2.54mm pitch, double rows 1629 | Surface mounted pin header SMD 2x25 2.54mm double row 1630 | 0 1631 | 50 1632 | 50 1633 | Connector_PinHeader_2.54mm 1634 | PinHeader_2x26_P2.54mm_Horizontal 1635 | Through hole angled pin header, 2x26, 2.54mm pitch, 6mm pin length, double rows 1636 | Through hole angled pin header THT 2x26 2.54mm double row 1637 | 0 1638 | 52 1639 | 52 1640 | Connector_PinHeader_2.54mm 1641 | PinHeader_2x26_P2.54mm_Vertical 1642 | Through hole straight pin header, 2x26, 2.54mm pitch, double rows 1643 | Through hole pin header THT 2x26 2.54mm double row 1644 | 0 1645 | 52 1646 | 52 1647 | Connector_PinHeader_2.54mm 1648 | PinHeader_2x26_P2.54mm_Vertical_SMD 1649 | surface-mounted straight pin header, 2x26, 2.54mm pitch, double rows 1650 | Surface mounted pin header SMD 2x26 2.54mm double row 1651 | 0 1652 | 52 1653 | 52 1654 | Connector_PinHeader_2.54mm 1655 | PinHeader_2x27_P2.54mm_Horizontal 1656 | Through hole angled pin header, 2x27, 2.54mm pitch, 6mm pin length, double rows 1657 | Through hole angled pin header THT 2x27 2.54mm double row 1658 | 0 1659 | 54 1660 | 54 1661 | Connector_PinHeader_2.54mm 1662 | PinHeader_2x27_P2.54mm_Vertical 1663 | Through hole straight pin header, 2x27, 2.54mm pitch, double rows 1664 | Through hole pin header THT 2x27 2.54mm double row 1665 | 0 1666 | 54 1667 | 54 1668 | Connector_PinHeader_2.54mm 1669 | PinHeader_2x27_P2.54mm_Vertical_SMD 1670 | surface-mounted straight pin header, 2x27, 2.54mm pitch, double rows 1671 | Surface mounted pin header SMD 2x27 2.54mm double row 1672 | 0 1673 | 54 1674 | 54 1675 | Connector_PinHeader_2.54mm 1676 | PinHeader_2x28_P2.54mm_Horizontal 1677 | Through hole angled pin header, 2x28, 2.54mm pitch, 6mm pin length, double rows 1678 | Through hole angled pin header THT 2x28 2.54mm double row 1679 | 0 1680 | 56 1681 | 56 1682 | Connector_PinHeader_2.54mm 1683 | PinHeader_2x28_P2.54mm_Vertical 1684 | Through hole straight pin header, 2x28, 2.54mm pitch, double rows 1685 | Through hole pin header THT 2x28 2.54mm double row 1686 | 0 1687 | 56 1688 | 56 1689 | Connector_PinHeader_2.54mm 1690 | PinHeader_2x28_P2.54mm_Vertical_SMD 1691 | surface-mounted straight pin header, 2x28, 2.54mm pitch, double rows 1692 | Surface mounted pin header SMD 2x28 2.54mm double row 1693 | 0 1694 | 56 1695 | 56 1696 | Connector_PinHeader_2.54mm 1697 | PinHeader_2x29_P2.54mm_Horizontal 1698 | Through hole angled pin header, 2x29, 2.54mm pitch, 6mm pin length, double rows 1699 | Through hole angled pin header THT 2x29 2.54mm double row 1700 | 0 1701 | 58 1702 | 58 1703 | Connector_PinHeader_2.54mm 1704 | PinHeader_2x29_P2.54mm_Vertical 1705 | Through hole straight pin header, 2x29, 2.54mm pitch, double rows 1706 | Through hole pin header THT 2x29 2.54mm double row 1707 | 0 1708 | 58 1709 | 58 1710 | Connector_PinHeader_2.54mm 1711 | PinHeader_2x29_P2.54mm_Vertical_SMD 1712 | surface-mounted straight pin header, 2x29, 2.54mm pitch, double rows 1713 | Surface mounted pin header SMD 2x29 2.54mm double row 1714 | 0 1715 | 58 1716 | 58 1717 | Connector_PinHeader_2.54mm 1718 | PinHeader_2x30_P2.54mm_Horizontal 1719 | Through hole angled pin header, 2x30, 2.54mm pitch, 6mm pin length, double rows 1720 | Through hole angled pin header THT 2x30 2.54mm double row 1721 | 0 1722 | 60 1723 | 60 1724 | Connector_PinHeader_2.54mm 1725 | PinHeader_2x30_P2.54mm_Vertical 1726 | Through hole straight pin header, 2x30, 2.54mm pitch, double rows 1727 | Through hole pin header THT 2x30 2.54mm double row 1728 | 0 1729 | 60 1730 | 60 1731 | Connector_PinHeader_2.54mm 1732 | PinHeader_2x30_P2.54mm_Vertical_SMD 1733 | surface-mounted straight pin header, 2x30, 2.54mm pitch, double rows 1734 | Surface mounted pin header SMD 2x30 2.54mm double row 1735 | 0 1736 | 60 1737 | 60 1738 | Connector_PinHeader_2.54mm 1739 | PinHeader_2x31_P2.54mm_Horizontal 1740 | Through hole angled pin header, 2x31, 2.54mm pitch, 6mm pin length, double rows 1741 | Through hole angled pin header THT 2x31 2.54mm double row 1742 | 0 1743 | 62 1744 | 62 1745 | Connector_PinHeader_2.54mm 1746 | PinHeader_2x31_P2.54mm_Vertical 1747 | Through hole straight pin header, 2x31, 2.54mm pitch, double rows 1748 | Through hole pin header THT 2x31 2.54mm double row 1749 | 0 1750 | 62 1751 | 62 1752 | Connector_PinHeader_2.54mm 1753 | PinHeader_2x31_P2.54mm_Vertical_SMD 1754 | surface-mounted straight pin header, 2x31, 2.54mm pitch, double rows 1755 | Surface mounted pin header SMD 2x31 2.54mm double row 1756 | 0 1757 | 62 1758 | 62 1759 | Connector_PinHeader_2.54mm 1760 | PinHeader_2x32_P2.54mm_Horizontal 1761 | Through hole angled pin header, 2x32, 2.54mm pitch, 6mm pin length, double rows 1762 | Through hole angled pin header THT 2x32 2.54mm double row 1763 | 0 1764 | 64 1765 | 64 1766 | Connector_PinHeader_2.54mm 1767 | PinHeader_2x32_P2.54mm_Vertical 1768 | Through hole straight pin header, 2x32, 2.54mm pitch, double rows 1769 | Through hole pin header THT 2x32 2.54mm double row 1770 | 0 1771 | 64 1772 | 64 1773 | Connector_PinHeader_2.54mm 1774 | PinHeader_2x32_P2.54mm_Vertical_SMD 1775 | surface-mounted straight pin header, 2x32, 2.54mm pitch, double rows 1776 | Surface mounted pin header SMD 2x32 2.54mm double row 1777 | 0 1778 | 64 1779 | 64 1780 | Connector_PinHeader_2.54mm 1781 | PinHeader_2x33_P2.54mm_Horizontal 1782 | Through hole angled pin header, 2x33, 2.54mm pitch, 6mm pin length, double rows 1783 | Through hole angled pin header THT 2x33 2.54mm double row 1784 | 0 1785 | 66 1786 | 66 1787 | Connector_PinHeader_2.54mm 1788 | PinHeader_2x33_P2.54mm_Vertical 1789 | Through hole straight pin header, 2x33, 2.54mm pitch, double rows 1790 | Through hole pin header THT 2x33 2.54mm double row 1791 | 0 1792 | 66 1793 | 66 1794 | Connector_PinHeader_2.54mm 1795 | PinHeader_2x33_P2.54mm_Vertical_SMD 1796 | surface-mounted straight pin header, 2x33, 2.54mm pitch, double rows 1797 | Surface mounted pin header SMD 2x33 2.54mm double row 1798 | 0 1799 | 66 1800 | 66 1801 | Connector_PinHeader_2.54mm 1802 | PinHeader_2x34_P2.54mm_Horizontal 1803 | Through hole angled pin header, 2x34, 2.54mm pitch, 6mm pin length, double rows 1804 | Through hole angled pin header THT 2x34 2.54mm double row 1805 | 0 1806 | 68 1807 | 68 1808 | Connector_PinHeader_2.54mm 1809 | PinHeader_2x34_P2.54mm_Vertical 1810 | Through hole straight pin header, 2x34, 2.54mm pitch, double rows 1811 | Through hole pin header THT 2x34 2.54mm double row 1812 | 0 1813 | 68 1814 | 68 1815 | Connector_PinHeader_2.54mm 1816 | PinHeader_2x34_P2.54mm_Vertical_SMD 1817 | surface-mounted straight pin header, 2x34, 2.54mm pitch, double rows 1818 | Surface mounted pin header SMD 2x34 2.54mm double row 1819 | 0 1820 | 68 1821 | 68 1822 | Connector_PinHeader_2.54mm 1823 | PinHeader_2x35_P2.54mm_Horizontal 1824 | Through hole angled pin header, 2x35, 2.54mm pitch, 6mm pin length, double rows 1825 | Through hole angled pin header THT 2x35 2.54mm double row 1826 | 0 1827 | 70 1828 | 70 1829 | Connector_PinHeader_2.54mm 1830 | PinHeader_2x35_P2.54mm_Vertical 1831 | Through hole straight pin header, 2x35, 2.54mm pitch, double rows 1832 | Through hole pin header THT 2x35 2.54mm double row 1833 | 0 1834 | 70 1835 | 70 1836 | Connector_PinHeader_2.54mm 1837 | PinHeader_2x35_P2.54mm_Vertical_SMD 1838 | surface-mounted straight pin header, 2x35, 2.54mm pitch, double rows 1839 | Surface mounted pin header SMD 2x35 2.54mm double row 1840 | 0 1841 | 70 1842 | 70 1843 | Connector_PinHeader_2.54mm 1844 | PinHeader_2x36_P2.54mm_Horizontal 1845 | Through hole angled pin header, 2x36, 2.54mm pitch, 6mm pin length, double rows 1846 | Through hole angled pin header THT 2x36 2.54mm double row 1847 | 0 1848 | 72 1849 | 72 1850 | Connector_PinHeader_2.54mm 1851 | PinHeader_2x36_P2.54mm_Vertical 1852 | Through hole straight pin header, 2x36, 2.54mm pitch, double rows 1853 | Through hole pin header THT 2x36 2.54mm double row 1854 | 0 1855 | 72 1856 | 72 1857 | Connector_PinHeader_2.54mm 1858 | PinHeader_2x36_P2.54mm_Vertical_SMD 1859 | surface-mounted straight pin header, 2x36, 2.54mm pitch, double rows 1860 | Surface mounted pin header SMD 2x36 2.54mm double row 1861 | 0 1862 | 72 1863 | 72 1864 | Connector_PinHeader_2.54mm 1865 | PinHeader_2x37_P2.54mm_Horizontal 1866 | Through hole angled pin header, 2x37, 2.54mm pitch, 6mm pin length, double rows 1867 | Through hole angled pin header THT 2x37 2.54mm double row 1868 | 0 1869 | 74 1870 | 74 1871 | Connector_PinHeader_2.54mm 1872 | PinHeader_2x37_P2.54mm_Vertical 1873 | Through hole straight pin header, 2x37, 2.54mm pitch, double rows 1874 | Through hole pin header THT 2x37 2.54mm double row 1875 | 0 1876 | 74 1877 | 74 1878 | Connector_PinHeader_2.54mm 1879 | PinHeader_2x37_P2.54mm_Vertical_SMD 1880 | surface-mounted straight pin header, 2x37, 2.54mm pitch, double rows 1881 | Surface mounted pin header SMD 2x37 2.54mm double row 1882 | 0 1883 | 74 1884 | 74 1885 | Connector_PinHeader_2.54mm 1886 | PinHeader_2x38_P2.54mm_Horizontal 1887 | Through hole angled pin header, 2x38, 2.54mm pitch, 6mm pin length, double rows 1888 | Through hole angled pin header THT 2x38 2.54mm double row 1889 | 0 1890 | 76 1891 | 76 1892 | Connector_PinHeader_2.54mm 1893 | PinHeader_2x38_P2.54mm_Vertical 1894 | Through hole straight pin header, 2x38, 2.54mm pitch, double rows 1895 | Through hole pin header THT 2x38 2.54mm double row 1896 | 0 1897 | 76 1898 | 76 1899 | Connector_PinHeader_2.54mm 1900 | PinHeader_2x38_P2.54mm_Vertical_SMD 1901 | surface-mounted straight pin header, 2x38, 2.54mm pitch, double rows 1902 | Surface mounted pin header SMD 2x38 2.54mm double row 1903 | 0 1904 | 76 1905 | 76 1906 | Connector_PinHeader_2.54mm 1907 | PinHeader_2x39_P2.54mm_Horizontal 1908 | Through hole angled pin header, 2x39, 2.54mm pitch, 6mm pin length, double rows 1909 | Through hole angled pin header THT 2x39 2.54mm double row 1910 | 0 1911 | 78 1912 | 78 1913 | Connector_PinHeader_2.54mm 1914 | PinHeader_2x39_P2.54mm_Vertical 1915 | Through hole straight pin header, 2x39, 2.54mm pitch, double rows 1916 | Through hole pin header THT 2x39 2.54mm double row 1917 | 0 1918 | 78 1919 | 78 1920 | Connector_PinHeader_2.54mm 1921 | PinHeader_2x39_P2.54mm_Vertical_SMD 1922 | surface-mounted straight pin header, 2x39, 2.54mm pitch, double rows 1923 | Surface mounted pin header SMD 2x39 2.54mm double row 1924 | 0 1925 | 78 1926 | 78 1927 | Connector_PinHeader_2.54mm 1928 | PinHeader_2x40_P2.54mm_Horizontal 1929 | Through hole angled pin header, 2x40, 2.54mm pitch, 6mm pin length, double rows 1930 | Through hole angled pin header THT 2x40 2.54mm double row 1931 | 0 1932 | 80 1933 | 80 1934 | Connector_PinHeader_2.54mm 1935 | PinHeader_2x40_P2.54mm_Vertical 1936 | Through hole straight pin header, 2x40, 2.54mm pitch, double rows 1937 | Through hole pin header THT 2x40 2.54mm double row 1938 | 0 1939 | 80 1940 | 80 1941 | Connector_PinHeader_2.54mm 1942 | PinHeader_2x40_P2.54mm_Vertical_SMD 1943 | surface-mounted straight pin header, 2x40, 2.54mm pitch, double rows 1944 | Surface mounted pin header SMD 2x40 2.54mm double row 1945 | 0 1946 | 80 1947 | 80 1948 | -------------------------------------------------------------------------------- /PCB/production/bom.csv: -------------------------------------------------------------------------------- 1 | Designator,Footprint,Quantity,Value,LCSC Part # 2 | BOOT1,Tactile 3x4x2mm TS-A010,1,UBOOT, 3 | "C1, C11, C12, C13, C17, C2, C22, C23, C24, C25, C26, C3, C4, C5, C6, C7, C8",0603,17,10uf, 4 | "C10, C15, C16, C9",0603,4,0.1uF, 5 | "C18, C19, C21",0603,3,10u, 6 | C20,0805,1,2.2uF, 7 | "D1, D10, D100, D101, D102, D103, D104, D105, D106, D107, D108, D109, D11, D110, D111, D112, D113, D114, D115, D116, D117, D118, D119, D12, D120, D121, D122, D123, D124, D125, D126, D127, D128, D129, D13, D130, D14, D15, D16, D17, D18, D19, D2, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D3, D30, D31, D32, D33, D34, D35, D36, D37, D38, D39, D4, D40, D41, D42, D43, D44, D45, D46, D47, D48, D49, D5, D50, D51, D52, D53, D54, D55, D56, D57, D58, D59, D6, D60, D61, D62, D63, D64, D65, D66, D69, D7, D70, D71, D72, D73, D74, D75, D76, D77, D78, D79, D8, D80, D81, D82, D83, D84, D85, D86, D87, D88, D89, D9, D90, D91, D92, D93, D94, D95, D96, D97, D98, D99",0603,128,LED_Small_Filled, 8 | D67,D_SMA,1,SS34, 9 | D68,0603,1,POW_LED, 10 | "IC1, IC10, IC11, IC12, IC13, IC14, IC15, IC16, IC17, IC2, IC3, IC4, IC5, IC6, IC7, IC8",74HC595DQ100118,16,74HC595D, 11 | IC9,SOIC127P600X175-9N,1,TP4056, 12 | J1,USB_C_Receptacle_HRO_TYPE-C-31-M-12,1,USB_C_Receptacle_USB2.0, 13 | "J2, J3",JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical,2, B2B-PH-SM4-TB(LF)(SN) , 14 | J4,PinHeader_1x02_P2.54mm_Vertical,1,Conn_01x02, 15 | "LED1, LED2",0603,2,CHG, 16 | "R1, R10, R100, R101, R102, R103, R104, R105, R106, R107, R108, R109, R11, R110, R111, R112, R113, R114, R115, R116, R117, R118, R119, R12, R120, R121, R122, R123, R124, R125, R126, R127, R128, R129, R13, R130, R131, R132, R133, R134, R135, R136, R137, R14, R15, R16, R17, R18, R19, R2, R20, R21, R22, R23, R24, R25, R26, R27, R28, R29, R3, R30, R31, R32, R33, R34, R35, R36, R37, R38, R39, R4, R40, R41, R42, R43, R44, R45, R46, R47, R48, R49, R5, R50, R51, R52, R53, R54, R55, R56, R57, R58, R59, R6, R60, R61, R62, R63, R64, R65, R67, R69, R7, R70, R71, R77, R78, R79, R8, R80, R81, R82, R83, R84, R85, R86, R87, R88, R89, R9, R90, R91, R92, R93, R94, R95, R96, R97, R98, R99",0603,130,1K, 17 | "R66, R68",0603,2,10K, 18 | "R74, R75",0603,2,1.3K, 19 | R76,0603,1,470R, 20 | RST1,Tactile 3x4x2mm TS-A010,1,RST, 21 | Rprog1,0603,1,3.3K, 22 | "U1, U3",SOT23_AH3572-SA-7_DIO,2,AH3572-SA-7, 23 | U2,ESP32-WROOM-32,1,ESP32-WROOM-32D, 24 | U4,ESSOP-10_3.9x4.9mm_P1.00mm,1,ch340k, 25 | U5,SOT-363_SC-70-6,1,DDC114TU-7-F, 26 | U6,0603,1,100K, 27 | U7,SOT-23,1,AO3041, 28 | U8,SOT-223-3_TabPin2,1,AMS1117-3.3, 29 | -------------------------------------------------------------------------------- /PCB/production/designators.csv: -------------------------------------------------------------------------------- 1 | BOOT1:1 2 | C1:1 3 | C10:1 4 | C11:1 5 | C12:1 6 | C13:1 7 | C15:1 8 | C16:1 9 | C17:1 10 | C18:1 11 | C19:1 12 | C2:1 13 | C20:1 14 | C21:1 15 | C22:1 16 | C23:1 17 | C24:1 18 | C25:1 19 | C26:1 20 | C3:1 21 | C4:1 22 | C5:1 23 | C6:1 24 | C7:1 25 | C8:1 26 | C9:1 27 | D1:1 28 | D10:1 29 | D100:1 30 | D101:1 31 | D102:1 32 | D103:1 33 | D104:1 34 | D105:1 35 | D106:1 36 | D107:1 37 | D108:1 38 | D109:1 39 | D11:1 40 | D110:1 41 | D111:1 42 | D112:1 43 | D113:1 44 | D114:1 45 | D115:1 46 | D116:1 47 | D117:1 48 | D118:1 49 | D119:1 50 | D12:1 51 | D120:1 52 | D121:1 53 | D122:1 54 | D123:1 55 | D124:1 56 | D125:1 57 | D126:1 58 | D127:1 59 | D128:1 60 | D129:1 61 | D13:1 62 | D130:1 63 | D14:1 64 | D15:1 65 | D16:1 66 | D17:1 67 | D18:1 68 | D19:1 69 | D2:1 70 | D20:1 71 | D21:1 72 | D22:1 73 | D23:1 74 | D24:1 75 | D25:1 76 | D26:1 77 | D27:1 78 | D28:1 79 | D29:1 80 | D3:1 81 | D30:1 82 | D31:1 83 | D32:1 84 | D33:1 85 | D34:1 86 | D35:1 87 | D36:1 88 | D37:1 89 | D38:1 90 | D39:1 91 | D4:1 92 | D40:1 93 | D41:1 94 | D42:1 95 | D43:1 96 | D44:1 97 | D45:1 98 | D46:1 99 | D47:1 100 | D48:1 101 | D49:1 102 | D5:1 103 | D50:1 104 | D51:1 105 | D52:1 106 | D53:1 107 | D54:1 108 | D55:1 109 | D56:1 110 | D57:1 111 | D58:1 112 | D59:1 113 | D6:1 114 | D60:1 115 | D61:1 116 | D62:1 117 | D63:1 118 | D64:1 119 | D65:1 120 | D66:1 121 | D67:1 122 | D68:1 123 | D69:1 124 | D7:1 125 | D70:1 126 | D71:1 127 | D72:1 128 | D73:1 129 | D74:1 130 | D75:1 131 | D76:1 132 | D77:1 133 | D78:1 134 | D79:1 135 | D8:1 136 | D80:1 137 | D81:1 138 | D82:1 139 | D83:1 140 | D84:1 141 | D85:1 142 | D86:1 143 | D87:1 144 | D88:1 145 | D89:1 146 | D9:1 147 | D90:1 148 | D91:1 149 | D92:1 150 | D93:1 151 | D94:1 152 | D95:1 153 | D96:1 154 | D97:1 155 | D98:1 156 | D99:1 157 | G***:2 158 | IC1:1 159 | IC10:1 160 | IC11:1 161 | IC12:1 162 | IC13:1 163 | IC14:1 164 | IC15:1 165 | IC16:1 166 | IC17:1 167 | IC2:1 168 | IC3:1 169 | IC4:1 170 | IC5:1 171 | IC6:1 172 | IC7:1 173 | IC8:1 174 | IC9:1 175 | J1:1 176 | J2:1 177 | J3:1 178 | J4:1 179 | LED1:1 180 | LED2:1 181 | R1:1 182 | R10:1 183 | R100:1 184 | R101:1 185 | R102:1 186 | R103:1 187 | R104:1 188 | R105:1 189 | R106:1 190 | R107:1 191 | R108:1 192 | R109:1 193 | R11:1 194 | R110:1 195 | R111:1 196 | R112:1 197 | R113:1 198 | R114:1 199 | R115:1 200 | R116:1 201 | R117:1 202 | R118:1 203 | R119:1 204 | R12:1 205 | R120:1 206 | R121:1 207 | R122:1 208 | R123:1 209 | R124:1 210 | R125:1 211 | R126:1 212 | R127:1 213 | R128:1 214 | R129:1 215 | R13:1 216 | R130:1 217 | R131:1 218 | R132:1 219 | R133:1 220 | R134:1 221 | R135:1 222 | R136:1 223 | R137:1 224 | R14:1 225 | R15:1 226 | R16:1 227 | R17:1 228 | R18:1 229 | R19:1 230 | R2:1 231 | R20:1 232 | R21:1 233 | R22:1 234 | R23:1 235 | R24:1 236 | R25:1 237 | R26:1 238 | R27:1 239 | R28:1 240 | R29:1 241 | R3:1 242 | R30:1 243 | R31:1 244 | R32:1 245 | R33:1 246 | R34:1 247 | R35:1 248 | R36:1 249 | R37:1 250 | R38:1 251 | R39:1 252 | R4:1 253 | R40:1 254 | R41:1 255 | R42:1 256 | R43:1 257 | R44:1 258 | R45:1 259 | R46:1 260 | R47:1 261 | R48:1 262 | R49:1 263 | R5:1 264 | R50:1 265 | R51:1 266 | R52:1 267 | R53:1 268 | R54:1 269 | R55:1 270 | R56:1 271 | R57:1 272 | R58:1 273 | R59:1 274 | R6:1 275 | R60:1 276 | R61:1 277 | R62:1 278 | R63:1 279 | R64:1 280 | R65:1 281 | R66:1 282 | R67:1 283 | R68:1 284 | R69:1 285 | R7:1 286 | R70:1 287 | R71:1 288 | R74:1 289 | R75:1 290 | R76:1 291 | R77:1 292 | R78:1 293 | R79:1 294 | R8:1 295 | R80:1 296 | R81:1 297 | R82:1 298 | R83:1 299 | R84:1 300 | R85:1 301 | R86:1 302 | R87:1 303 | R88:1 304 | R89:1 305 | R9:1 306 | R90:1 307 | R91:1 308 | R92:1 309 | R93:1 310 | R94:1 311 | R95:1 312 | R96:1 313 | R97:1 314 | R98:1 315 | R99:1 316 | RST1:1 317 | Rprog1:1 318 | U1:1 319 | U2:1 320 | U3:1 321 | U4:1 322 | U5:1 323 | U6:1 324 | U7:1 325 | U8:1 326 | -------------------------------------------------------------------------------- /PCB/production/gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circuit-Digest/POV-Display/6da76006a9a6e0d7345a315630c999a36e0db1d0/PCB/production/gerber.zip -------------------------------------------------------------------------------- /PCB/production/positions.csv: -------------------------------------------------------------------------------- 1 | Designator,Mid X,Mid Y,Rotation,Layer 2 | BOOT1,120.3975,-70.895,90.0,bottom 3 | C1,129.86,-109.93,270.0,top 4 | C10,144.4575,-74.695,0.0,bottom 5 | C11,134.62,-78.785,0.0,top 6 | C12,147.63,-78.8425,0.0,top 7 | C13,225.45,-96.32,0.0,top 8 | C15,120.874644,-83.467144,90.0,bottom 9 | C16,115.284644,-81.007144,0.0,bottom 10 | C17,151.02,-113.31,0.0,bottom 11 | C18,133.21,-104.53,90.0,bottom 12 | C19,143.25,-103.17,90.0,bottom 13 | C2,88.26,-91.57,180.0,top 14 | C20,152.44,-102.79,270.0,bottom 15 | C21,154.26,-102.83,270.0,bottom 16 | C22,212.56,-96.31,0.0,top 17 | C23,199.64,-96.31,0.0,top 18 | C24,186.755,-96.3,0.0,top 19 | C25,173.85,-96.33,0.0,top 20 | C26,158.15,-97.56,270.0,bottom 21 | C3,117.78,-109.91,270.0,top 22 | C4,101.59,-91.57,180.0,top 23 | C5,50.335,-91.57,180.0,top 24 | C6,37.7,-91.57,180.0,top 25 | C7,62.99,-91.57,180.0,top 26 | C8,75.48,-91.57,180.0,top 27 | C9,144.48,-79.56,0.0,bottom 28 | D1,131.3431,-94.0425,270.0,top 29 | D10,65.278242,-94.0425,270.0,top 30 | D100,186.128592,-94.0025,90.0,top 31 | D101,187.73993,-94.0025,90.0,top 32 | D102,189.351268,-94.0025,90.0,top 33 | D103,190.962606,-94.0025,90.0,top 34 | D104,192.573944,-94.0025,90.0,top 35 | D105,194.185282,-94.0025,90.0,top 36 | D106,195.79662,-94.0025,90.0,top 37 | D107,197.407958,-94.0025,90.0,top 38 | D108,199.019296,-94.0025,90.0,top 39 | D109,200.630634,-94.0025,90.0,top 40 | D11,63.666904,-94.0425,270.0,top 41 | D110,202.241972,-94.0025,90.0,top 42 | D111,203.85331,-94.0025,90.0,top 43 | D112,205.464648,-94.0025,90.0,top 44 | D113,207.075986,-94.0025,90.0,top 45 | D114,208.687324,-94.0025,90.0,top 46 | D115,210.298662,-94.0025,90.0,top 47 | D116,211.91,-94.0025,90.0,top 48 | D117,213.521338,-94.0025,90.0,top 49 | D118,215.132676,-94.0025,90.0,top 50 | D119,216.744014,-94.0025,90.0,top 51 | D12,62.055566,-94.0425,270.0,top 52 | D120,218.355352,-94.0025,90.0,top 53 | D121,219.96669,-94.0025,90.0,top 54 | D122,221.578028,-94.0025,90.0,top 55 | D123,223.189366,-94.0025,90.0,top 56 | D124,224.800704,-94.0025,90.0,top 57 | D125,226.412042,-94.0025,90.0,top 58 | D126,228.02338,-94.0025,90.0,top 59 | D127,229.634718,-94.0025,90.0,top 60 | D128,231.246056,-94.0025,90.0,top 61 | D129,232.857394,-94.0025,90.0,top 62 | D13,60.444228,-94.0425,270.0,top 63 | D130,234.468806,-94.0025,90.0,top 64 | D14,58.83289,-94.0425,270.0,top 65 | D15,57.221552,-94.0425,270.0,top 66 | D16,55.610214,-94.0425,270.0,top 67 | D17,53.998876,-94.0425,270.0,top 68 | D18,52.387538,-94.0425,270.0,top 69 | D19,50.7762,-94.0425,270.0,top 70 | D2,129.731762,-94.0425,270.0,top 71 | D20,49.164862,-94.0425,270.0,top 72 | D21,47.553524,-94.0425,270.0,top 73 | D22,45.942186,-94.0425,270.0,top 74 | D23,44.330848,-94.0425,270.0,top 75 | D24,42.71951,-94.0425,270.0,top 76 | D25,118.452396,-94.0425,270.0,top 77 | D26,116.841058,-94.0425,270.0,top 78 | D27,115.22972,-94.0425,270.0,top 79 | D28,113.618382,-94.0425,270.0,top 80 | D29,112.007044,-94.0425,270.0,top 81 | D3,128.120424,-94.0425,270.0,top 82 | D30,110.395706,-94.0425,270.0,top 83 | D31,108.784368,-94.0425,270.0,top 84 | D32,107.17303,-94.0425,270.0,top 85 | D33,105.561692,-94.0425,270.0,top 86 | D34,103.950354,-94.0425,270.0,top 87 | D35,102.339016,-94.0425,270.0,top 88 | D36,100.727678,-94.0425,270.0,top 89 | D37,99.11634,-94.0425,270.0,top 90 | D38,97.505002,-94.0425,270.0,top 91 | D39,95.893664,-94.0425,270.0,top 92 | D4,126.509086,-94.0425,270.0,top 93 | D40,94.282326,-94.0425,270.0,top 94 | D41,41.108172,-94.0425,270.0,top 95 | D42,39.496834,-94.0425,270.0,top 96 | D43,37.885496,-94.0425,270.0,top 97 | D44,36.274158,-94.0425,270.0,top 98 | D45,34.66282,-94.0425,270.0,top 99 | D46,33.051482,-94.0425,270.0,top 100 | D47,31.440144,-94.0425,270.0,top 101 | D48,29.828806,-94.0425,270.0,top 102 | D49,92.670988,-94.0425,270.0,top 103 | D5,124.897748,-94.0425,270.0,top 104 | D50,91.05965,-94.0425,270.0,top 105 | D51,89.448312,-94.0425,270.0,top 106 | D52,87.836974,-94.0425,270.0,top 107 | D53,86.225636,-94.0425,270.0,top 108 | D54,84.614298,-94.0425,270.0,top 109 | D55,83.00296,-94.0425,270.0,top 110 | D56,81.391622,-94.0425,270.0,top 111 | D57,79.780284,-94.0425,270.0,top 112 | D58,78.168946,-94.0425,270.0,top 113 | D59,76.557608,-94.0425,270.0,top 114 | D6,123.28641,-94.0425,270.0,top 115 | D60,74.94627,-94.0425,270.0,top 116 | D61,73.334932,-94.0425,270.0,top 117 | D62,71.723594,-94.0425,270.0,top 118 | D63,70.112256,-94.0425,270.0,top 119 | D64,68.500918,-94.0425,270.0,top 120 | D65,132.954438,-94.0025,90.0,top 121 | D66,134.565776,-94.0025,90.0,top 122 | D67,129.8475,-108.8625,270.0,bottom 123 | D68,156.65,-103.84,0.0,bottom 124 | D69,136.177114,-94.0025,90.0,top 125 | D7,121.675072,-94.0425,270.0,top 126 | D70,137.788452,-94.0025,90.0,top 127 | D71,139.39979,-94.0025,90.0,top 128 | D72,141.011128,-94.0025,90.0,top 129 | D73,142.622466,-94.0025,90.0,top 130 | D74,144.233804,-94.0025,90.0,top 131 | D75,145.845142,-94.0025,90.0,top 132 | D76,147.45648,-94.0025,90.0,top 133 | D77,149.067818,-94.0025,90.0,top 134 | D78,150.679156,-94.0025,90.0,top 135 | D79,152.290494,-94.0025,90.0,top 136 | D8,120.063734,-94.0425,270.0,top 137 | D80,153.901832,-94.0025,90.0,top 138 | D81,155.51317,-94.0025,90.0,top 139 | D82,157.124508,-94.0025,90.0,top 140 | D83,158.735846,-94.0025,90.0,top 141 | D84,160.347184,-94.0025,90.0,top 142 | D85,161.958522,-94.0025,90.0,top 143 | D86,163.56986,-94.0025,90.0,top 144 | D87,165.181198,-94.0025,90.0,top 145 | D88,166.792536,-94.0025,90.0,top 146 | D89,168.403874,-94.0025,90.0,top 147 | D9,66.88958,-94.0425,270.0,top 148 | D90,170.015212,-94.0025,90.0,top 149 | D91,171.62655,-94.0025,90.0,top 150 | D92,173.237888,-94.0025,90.0,top 151 | D93,174.849226,-94.0025,90.0,top 152 | D94,176.460564,-94.0025,90.0,top 153 | D95,178.071902,-94.0025,90.0,top 154 | D96,179.68324,-94.0025,90.0,top 155 | D97,181.294578,-94.0025,90.0,top 156 | D98,182.905916,-94.0025,90.0,top 157 | D99,184.517254,-94.0025,90.0,top 158 | IC1,125.375,-103.615,180.0,top 159 | IC10,138.34012,-84.3675,0.0,top 160 | IC11,151.365,-84.425,0.0,top 161 | IC12,165.175,-93.965,0.0,bottom 162 | IC13,178.025,-93.955,0.0,bottom 163 | IC14,190.925,-93.985,0.0,bottom 164 | IC15,203.895,-93.955,0.0,bottom 165 | IC16,216.765,-93.955,0.0,bottom 166 | IC17,229.675,-93.885,0.0,bottom 167 | IC2,58.885,-93.995,180.0,bottom 168 | IC3,113.305,-103.625,180.0,top 169 | IC4,46.585,-93.985,180.0,bottom 170 | IC5,97.425,-93.965,180.0,bottom 171 | IC6,34.135,-93.955,180.0,bottom 172 | IC7,84.505,-93.965,180.0,bottom 173 | IC8,71.705,-93.985,180.0,bottom 174 | IC9,141.657144,-110.09,0.0,bottom 175 | J1,132.17,-118.61,180.0,bottom 176 | J2,146.879119,-114.714092,213.0,bottom 177 | J3,151.8,-110.01,90.0,bottom 178 | J4,124.91,-117.105,180.0,bottom 179 | LED1,139.53,-119.18,270.0,bottom 180 | LED2,141.14,-119.19,270.0,bottom 181 | R1,131.35,-97.02,270.0,top 182 | R10,116.85,-97.025,270.0,top 183 | R100,174.84,-90.92,90.0,top 184 | R101,176.46,-90.92,90.0,top 185 | R102,178.06,-90.92,90.0,top 186 | R103,179.68,-90.92,90.0,top 187 | R104,181.29,-90.92,90.0,top 188 | R105,182.91,-90.92,90.0,top 189 | R106,184.52,-90.92,90.0,top 190 | R107,186.12,-90.92,90.0,top 191 | R108,187.74,-90.92,90.0,top 192 | R109,189.35,-90.92,90.0,top 193 | R11,115.25,-97.025,270.0,top 194 | R110,190.96,-90.92,90.0,top 195 | R111,192.58,-90.92,90.0,top 196 | R112,194.19,-90.92,90.0,top 197 | R113,195.79,-90.92,90.0,top 198 | R114,197.41,-90.92,90.0,top 199 | R115,199.02,-90.92,90.0,top 200 | R116,200.63,-90.92,90.0,top 201 | R117,202.24,-90.92,90.0,top 202 | R118,203.84,-90.92,90.0,top 203 | R119,205.46,-90.92,90.0,top 204 | R12,113.63,-97.035,270.0,top 205 | R120,207.08,-90.92,90.0,top 206 | R121,208.68,-90.92,90.0,top 207 | R122,210.3,-90.92,90.0,top 208 | R123,211.9,-90.92,90.0,top 209 | R124,213.52,-90.92,90.0,top 210 | R125,215.13,-90.92,90.0,top 211 | R126,216.74,-90.92,90.0,top 212 | R127,218.35,-90.92,90.0,top 213 | R128,219.96,-90.92,90.0,top 214 | R129,221.58,-90.92,90.0,top 215 | R13,112.01,-97.035,270.0,top 216 | R130,223.2,-90.92,90.0,top 217 | R131,224.8,-90.92,90.0,top 218 | R132,226.4,-90.92,90.0,top 219 | R133,228.02,-90.92,90.0,top 220 | R134,229.63,-90.92,90.0,top 221 | R135,231.25,-90.92,90.0,top 222 | R136,232.85,-90.92,90.0,top 223 | R137,234.47,-90.92,90.0,top 224 | R14,110.4,-97.025,270.0,top 225 | R15,108.79,-97.025,270.0,top 226 | R16,107.18,-97.025,270.0,top 227 | R17,105.57,-97.025,270.0,top 228 | R18,103.96,-97.035,270.0,top 229 | R19,102.36,-97.025,270.0,top 230 | R2,129.72,-97.02,270.0,top 231 | R20,100.74,-97.025,270.0,top 232 | R21,99.13,-97.025,270.0,top 233 | R22,97.52,-97.025,270.0,top 234 | R23,95.91,-97.025,270.0,top 235 | R24,94.29,-97.035,270.0,top 236 | R25,92.68,-97.025,270.0,top 237 | R26,91.06,-97.035,270.0,top 238 | R27,89.45,-97.045,270.0,top 239 | R28,87.85,-97.055,270.0,top 240 | R29,86.23,-97.055,270.0,top 241 | R3,128.11,-97.02,270.0,top 242 | R30,84.62,-97.055,270.0,top 243 | R31,83.01,-97.055,270.0,top 244 | R32,81.4,-97.055,270.0,top 245 | R33,79.79,-97.045,270.0,top 246 | R34,78.18,-97.045,270.0,top 247 | R35,76.57,-97.045,270.0,top 248 | R36,74.96,-97.045,270.0,top 249 | R37,73.35,-97.045,270.0,top 250 | R38,71.74,-97.045,270.0,top 251 | R39,70.12,-97.045,270.0,top 252 | R4,126.52,-97.02,270.0,top 253 | R40,68.51,-97.055,270.0,top 254 | R41,66.9,-97.055,270.0,top 255 | R42,65.29,-97.06,270.0,top 256 | R43,63.68,-97.06,270.0,top 257 | R44,62.06,-97.06,270.0,top 258 | R45,60.46,-97.06,270.0,top 259 | R46,58.84,-97.06,270.0,top 260 | R47,57.23,-97.06,270.0,top 261 | R48,55.62,-97.055,270.0,top 262 | R49,54.01,-97.06,270.0,top 263 | R5,124.9,-97.015,270.0,top 264 | R50,52.4,-97.065,270.0,top 265 | R51,50.78,-97.06,270.0,top 266 | R52,49.17,-97.055,270.0,top 267 | R53,47.56,-97.055,270.0,top 268 | R54,45.95,-97.055,270.0,top 269 | R55,44.34,-97.06,270.0,top 270 | R56,42.73,-97.06,270.0,top 271 | R57,41.12,-97.08,270.0,top 272 | R58,39.51,-97.06,270.0,top 273 | R59,37.89,-97.06,270.0,top 274 | R6,123.3,-97.015,270.0,top 275 | R60,36.29,-97.07,270.0,top 276 | R61,34.67,-97.08,270.0,top 277 | R62,33.07,-97.08,270.0,top 278 | R63,31.46,-97.08,270.0,top 279 | R64,29.83,-97.085,270.0,top 280 | R65,132.96,-90.92,90.0,top 281 | R66,120.87,-90.65,270.0,bottom 282 | R67,134.56,-90.92,90.0,top 283 | R68,143.684644,-77.075,270.0,bottom 284 | R69,120.754644,-78.795,0.0,bottom 285 | R7,121.68,-97.015,270.0,top 286 | R70,120.754644,-80.325,0.0,bottom 287 | R71,136.18,-90.92,90.0,top 288 | R74,139.57,-116.12,90.0,bottom 289 | R75,141.09,-116.12,90.0,bottom 290 | R76,156.61,-101.93,180.0,bottom 291 | R77,137.78,-90.92,90.0,top 292 | R78,139.39,-90.92,90.0,top 293 | R79,141.01,-90.92,90.0,top 294 | R8,120.07,-97.015,270.0,top 295 | R80,142.62,-90.92,90.0,top 296 | R81,144.23,-90.92,90.0,top 297 | R82,145.84,-90.92,90.0,top 298 | R83,147.45,-90.92,90.0,top 299 | R84,149.07,-90.92,90.0,top 300 | R85,150.68,-90.92,90.0,top 301 | R86,152.29,-90.92,90.0,top 302 | R87,153.9,-90.92,90.0,top 303 | R88,155.51,-90.92,90.0,top 304 | R89,157.12,-90.92,90.0,top 305 | R9,118.45,-97.025,270.0,top 306 | R90,158.74,-90.92,90.0,top 307 | R91,160.34,-90.92,90.0,top 308 | R92,161.96,-90.92,90.0,top 309 | R93,163.57,-90.92,90.0,top 310 | R94,165.18,-90.92,90.0,top 311 | R95,166.79,-90.92,90.0,top 312 | R96,168.4,-90.92,90.0,top 313 | R97,170.01,-90.92,90.0,top 314 | R98,171.63,-90.92,90.0,top 315 | R99,173.24,-90.92,90.0,top 316 | RST1,143.6975,-71.065,90.0,bottom 317 | Rprog1,137.07,-111.0,270.0,bottom 318 | U1,106.9379,-94.32,270.0,bottom 319 | U2,132.08,-83.22,180.0,bottom 320 | U3,157.1806,-94.145001,90.0,bottom 321 | U4,117.334644,-85.255,90.0,bottom 322 | U5,113.094644,-84.937144,90.0,bottom 323 | U6,134.63,-110.4,0.0,bottom 324 | U7,134.1525,-107.84,0.0,bottom 325 | U8,147.75,-100.79,90.0,bottom 326 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [POV Display](https://circuitdigest.com/microcontroller-projects/diy-pov-display-using-ESP32-Arduino) 2 | alt_text 3 |
4 | 5 |
6 | circuitdigest 7 | 8 | 9 | [DIY POV Display Tutorial using ESP32 Arduino](https://circuitdigest.com/microcontroller-projects/diy-pov-display-using-ESP32-Arduino) 10 | 11 | [POV Display full Yoututbe Video](https://www.youtube.com/embed/gkemkTWuw_Q) 12 | 13 | 14 | [

Click here](https://circuitdigest.com/tags/ESP32) For other ESP32 tutorials.

15 | 16 | alt_text 17 |
alt_text 18 |
alt_text 19 |
alt_text 20 |
alt_text 21 |
22 |
23 |
24 | Persistence of Vision is a fundamental principle that allows our eyes to perceive continuous motion from separate images, a concept crucial to the illusion of motion in cinema. When I was a kid, I was always fascinated with it. So, in this project, we are going to use this fascinating optical phenomenon to create a cool-looking POV Display. You must have seen a lot of such projects on the web, but most of them are limited to very low resolution and just display some texts and geometries. We plan to create a POV display that is not limited to just texts or simple shapes. Ours will be able to display images and animations with a resolution of 128 pixels. We have settled with this resolution because it's the sweet spot where we can get decent image quality and it would be easier to build. 25 | We settled on the ESP32 module as the brain of this display, because it is cheap, easy to get and powerful enough to run the display. The display will have two rotating arms, each outfitted with 64 LEDs, to create a total resolution of 128 pixels. The display will rotate at a constant speed, with the LEDs flashing in meticulously orchestrated patterns, controlled by the ESP32 microcontroller. This synchronization allows the display to generate images or text that appear to hover in mid-air, producing a smooth, continuous visual experience. 26 | 27 | 28 |
29 | [Note: As this projects are very simple we are only providing the code, schemaitic, and a few essential images if you want to get the images or code explanations do check out the Circuit Digest website. 30 |
31 |
32 | --------------------------------------------------------------------------------