Yong Hyoung
Published

Sous vide Making by Hacking existing Rice Cooker

This project uses the SRP-1037FG cooker, which doesn't work anymore as a rice cooker after some use.

AdvancedWork in progress4,932
Sous vide Making by Hacking existing Rice Cooker

Things used in this project

Hardware components

Arduino LCD Screen
Arduino LCD Screen
×1
Rice cooker
SRP-1037FG
×1

Story

Read more

Schematics

pcb

net

B.Cu

F.Cu

Edge_Cuts

B_Skills

drl

B.Mask

F,Mask

Code

Temperature timer setting bar Heater reservation button operation test

Arduino
#include <EasyTransfer.h>


#include <Adafruit_GFX.h>      // Core graphics library
#include <Adafruit_TFTLCD.h> // Hardware-specific library
#include <SD.h>
#include <SPI.h>




void seven_seg_set_temp_high_byte(byte HighByte, int COLOR);
void seven_seg_set_temp_low_byte(byte HighByte, int COLOR);

void seven_seg_now_temp_high_byte(byte HighByte, int COLOR);
void seven_seg_now_temp_low_byte(byte HighByte, int COLOR);


//create object
EasyTransfer ET;

struct RECEIVE_DATA_STRUCTURE {
  //put your variable definitions here for the data you want to receive
  //THIS MUST BE EXACTLY THE SAME ON THE OTHER ARDUINO
  int button;
  int current_temp;
  int set_temp;
};

//give a name to the group of data
RECEIVE_DATA_STRUCTURE mydata;
// The control pins for the LCD can be assigned to any digital or
// analog pins...but we'll use the analog pins as this allows us to
// double up the pins with the touch screen (see the TFT paint example).
#define LCD_CS A3 // Chip Select goes to Analog 3
#define LCD_CD A2 // Command/Data goes to Analog 2
#define LCD_WR A1 // LCD Write goes to Analog 1
#define LCD_RD A0 // LCD Read goes to Analog 0

// When using the BREAKOUT BOARD only, use these 8 data lines to the LCD:
// For the Arduino Uno, Duemilanove, Diecimila, etc.:
//   D0 connects to digital pin 8  (Notice these are
//   D1 connects to digital pin 9   NOT in order!)
//   D2 connects to digital pin 2
//   D3 connects to digital pin 3
//   D4 connects to digital pin 4
//   D5 connects to digital pin 5
//   D6 connects to digital pin 6
//   D7 connects to digital pin 7
// For the Arduino Mega, use digital pins 22 through 29
// (on the 2-row header at the end of the board).

// For Arduino Uno/Duemilanove, etc
//  connect the SD card with DI going to pin 11, DO going to pin 12 and SCK going to pin 13 (stan

//  Then pin 10 goes to CS (or whatever you have set up)
#define SD_CS 10     // Set the chip select line to whatever you use (10 doesnt conflict with the library)\
  // In the SD card, place 24 bit color BMP files (be sure they are 24-bit!)
// There are examples in the sketch folder

// our TFT wiring
Adafruit_TFTLCD tft(LCD_CS, LCD_CD, LCD_WR, LCD_RD, A4);
uint8_t         spi_save;

#define BLACK   0x0000
#define BLUE    0x001F
#define RED     0xF800
#define GREEN   0x07E0
#define CYAN    0x08EF
#define MAGENTA 0xF5E0
#define YELLOW  0xFFE0
#define WHITE   0xFFFF
#define MYDEFINE 0x79F

int COLOR;

int local_current_temp = 0;
int local_set_temp = 0;

int Diff_c_y = 30;  // Difference y is 30 pixel for segment c
int Diff_d_y = 60;  // Difference y is 60 pixel for segment d
int Diff_c_y_low = 10; //      y ...
int Diff_d_y_low = 20;  //     y ...

int MoveX_low = 19;  // Move to 18 pixel to right for  
int MoveX = 46;  // Move to 46 pixel to right

  // Define the TFT LCD digit segments from 0 - 9
byte seven_seg_digits[10][7] = { { 1,1,1,1,1,1,0 },  // = 0
                                 { 0,1,1,0,0,0,0 },  // = 1
                                 { 1,1,0,1,1,0,1 },  // = 2
                                 { 1,1,1,1,0,0,1 },  // = 3
                                 { 0,1,1,0,0,1,1 },  // = 4
                                 { 1,0,1,1,0,1,1 },  // = 5
                                 { 1,0,1,1,1,1,1 },  // = 6
                                 { 1,1,1,0,0,0,0 },  // = 7
                                 { 1,1,1,1,1,1,1 },  // = 8
                                 { 1,1,1,1,0,1,1 }   // = 9
                               };


void setup()
{
  Serial.begin(9600);
  //start the library, pass in the data details and the name of the serial port. Can be Serial, Serial1, Serial2, etc.
  ET.begin(details(mydata), &Serial);

  tft.reset();

  uint16_t identifier = tft.readID();

  tft.begin(identifier);

  Serial.print(F("Initializing SD card..."));
  if (!SD.begin(SD_CS)) {
    Serial.println(F("failed!"));
    return;
  }
  
  Serial.println(F("OK!"));
  spi_save = SPCR;

  tft.setRotation(1);
   bmpDraw("default.bmp", 0, 0);// 
 //    bmpDraw("fulldisp.bmp", 0, 0);// 

  //tft_settemp(0);
  //tft_currtemp(0);
 // tft_timebar(0);
}

 // a function to be executed periodically
void repeatMe() {
    Serial.print("Uptime (s): ");
    Serial.println(millis() / 1000);
}

void loop()
{

/*

while(1)
{
  seven_seg_set_temp_high_byte(8,WHITE);
  seven_seg_set_temp_low_byte(8,WHITE);  
  seven_seg_now_temp_high_byte(8, WHITE);  //   LCD  CLEAR
  seven_seg_now_temp_low_byte(8, WHITE);  //   LCD  CLEAR

  for (int i=0; i<10; i++) {
  seven_seg_set_temp_high_byte(i,RED); //   LCD 
  seven_seg_set_temp_low_byte(i,RED); //   LCD 
  
  seven_seg_now_temp_high_byte(i, BLUE);  //   LCD  
  seven_seg_now_temp_low_byte(i, BLUE);  //   LCD  
  
 delay(1000);
  seven_seg_set_temp_high_byte(i,WHITE); 
  seven_seg_set_temp_low_byte(i,WHITE); 
  
  seven_seg_now_temp_high_byte(i, WHITE);  //   LCD  CLEAR
    seven_seg_now_temp_low_byte(i, WHITE);  //   LCD  CLEAR
 } //for
} // while

*/

 // tft_settemp(local_set_temp); // 
  // tft_currtemp(local_current_temp); //  (  )
  

 
   int toggle =0; 
   int ti_bar=10; 
   int temp_bar = 20;
  my_cleaner_hour();
   
 while(1) {
   toggle = toggle %2;
   
  if (toggle) {
   tft.fillCircle(137, 37, 4, RED); //  on  
   tft.fillCircle(182, 37, 4, RED); //  on  
   
   if (ti_bar < 1) {   ti_bar=10;   }
      tft_timebar(ti_bar); // 
     ti_bar--;
     
     if (temp_bar > 110) { temp_bar = 20;}
     tft_tempbar(temp_bar);
     temp_bar += 10;
  } else
  {
       tft.fillCircle(137, 37, 4, WHITE); //  OFF  
       tft.fillCircle(182, 37, 4, WHITE); //  OFF  
  }// else if
  
     toggle++;
     delay(250);
 } // end of while

/*
// ---------------------------------------------- 
    if (mydata.button == HIGH) {
      tft.fillCircle(137, 37, 4, RED);  //  ON

    }
    else {

      tft.fillCircle(137, 37, 4, WHITE);  //  OFF
    }
  //you should make this delay shorter then your transmit delay or else messages could be lost
  delay(250);
*/

} // end of loop

// This function opens a Windows Bitmap (BMP) file and
// displays it at the given coordinates.  It's sped up
// by reading many pixels worth of data at a time
// (rather than pixel by pixel).  Increasing the buffer
// size takes more of the Arduino's precious RAM but
// makes loading a little faster.  20 pixels seems a
// good balance.

#define BUFFPIXEL 20

void bmpDraw(char *filename, int x, int y) {
  File     bmpFile;
  int      bmpWidth, bmpHeight;   // W+H in pixels
  uint8_t  bmpDepth;              // Bit depth (currently must be 24)
  uint32_t bmpImageoffset;        // Start of image data in file
  uint32_t rowSize;               // Not always = bmpWidth; may have padding
  uint8_t  sdbuffer[3 * BUFFPIXEL]; // pixel in buffer (R+G+B per pixel)
  uint16_t lcdbuffer[BUFFPIXEL];  // pixel out buffer (16-bit per pixel)
  uint8_t  buffidx = sizeof(sdbuffer); // Current position in sdbuffer
  boolean  goodBmp = false;       // Set to true on valid header parse
  boolean  flip    = true;        // BMP is stored bottom-to-top
  int      w, h, row, col;
  uint8_t  r, g, b;
  uint32_t pos = 0, startTime = millis();
  uint8_t  lcdidx = 0;
  boolean  first = true;

  if ((x >= tft.width()) || (y >= tft.height())) return;

  Serial.println();
  Serial.print("Loading image '");
  Serial.print(filename);
  Serial.println('\'');
  // Open requested file on SD card
  SPCR = spi_save;
  if ((bmpFile = SD.open(filename)) == NULL) {
    Serial.print("File not found");
    return;
  }

  // Parse BMP header
  if (read16(bmpFile) == 0x4D42) { // BMP signature
    Serial.print(F("File size: ")); Serial.println(read32(bmpFile));
    (void)read32(bmpFile); // Read & ignore creator bytes
    bmpImageoffset = read32(bmpFile); // Start of image data
    Serial.print(F("Image Offset: ")); Serial.println(bmpImageoffset, DEC);
    // Read DIB header
    Serial.print(F("Header size: ")); Serial.println(read32(bmpFile));
    bmpWidth  = read32(bmpFile);
    bmpHeight = read32(bmpFile);
    if (read16(bmpFile) == 1) { // # planes -- must be '1'
      bmpDepth = read16(bmpFile); // bits per pixel
      Serial.print(F("Bit Depth: ")); Serial.println(bmpDepth);
      if ((bmpDepth == 24) && (read32(bmpFile) == 0)) { // 0 = uncompressed

        goodBmp = true; // Supported BMP format -- proceed!
        Serial.print(F("Image size: "));
        Serial.print(bmpWidth);
        Serial.print('x');
        Serial.println(bmpHeight);

        // BMP rows are padded (if needed) to 4-byte boundary
        rowSize = (bmpWidth * 3 + 3) & ~3;

        // If bmpHeight is negative, image is in top-down order.
        // This is not canon but has been observed in the wild.
        if (bmpHeight < 0) {
          bmpHeight = -bmpHeight;
          flip      = false;
        }

        // Crop area to be loaded
        w = bmpWidth;
        h = bmpHeight;
        if ((x + w - 1) >= tft.width())  w = tft.width()  - x;
        if ((y + h - 1) >= tft.height()) h = tft.height() - y;

        // Set TFT address window to clipped image bounds
        SPCR = 0;
        tft.setAddrWindow(x, y, x + w - 1, y + h - 1);

        for (row = 0; row < h; row++) { // For each scanline...
          // Seek to start of scan line.  It might seem labor-
          // intensive to be doing this on every line, but this
          // method covers a lot of gritty details like cropping
          // and scanline padding.  Also, the seek only takes
          // place if the file position actually needs to change
          // (avoids a lot of cluster math in SD library).
          if (flip) // Bitmap is stored bottom-to-top order (normal BMP)
            pos = bmpImageoffset + (bmpHeight - 1 - row) * rowSize;
          else     // Bitmap is stored top-to-bottom
            pos = bmpImageoffset + row * rowSize;
          SPCR = spi_save;
          if (bmpFile.position() != pos) { // Need seek?
            bmpFile.seek(pos);
            buffidx = sizeof(sdbuffer); // Force buffer reload
          }

          for (col = 0; col < w; col++) { // For each column...
            // Time to read more pixel data?
            if (buffidx >= sizeof(sdbuffer)) { // Indeed
              // Push LCD buffer to the display first
              if (lcdidx > 0) {
                SPCR   = 0;
                tft.pushColors(lcdbuffer, lcdidx, first);
                lcdidx = 0;
                first  = false;
              }
              SPCR = spi_save;
              bmpFile.read(sdbuffer, sizeof(sdbuffer));
              buffidx = 0; // Set index to beginning
            }

            // Convert pixel from BMP to TFT format
            b = sdbuffer[buffidx++];
            g = sdbuffer[buffidx++];
            r = sdbuffer[buffidx++];
            lcdbuffer[lcdidx++] = tft.color565(r, g, b);
          } // end pixel
        } // end scanline
        // Write any remaining data to LCD
        if (lcdidx > 0) {
          SPCR = 0;
          tft.pushColors(lcdbuffer, lcdidx, first);
        }
        Serial.print(F("Loaded in "));
        Serial.print(millis() - startTime);
        Serial.println(" ms");
      } // end goodBmp
    }
  }

  bmpFile.close();
  if (!goodBmp) Serial.println("BMP format not recognized.");
}

// These read 16- and 32-bit types from the SD card file.
// BMP data is stored little-endian, Arduino is little-endian too.
// May need to reverse subscript order if porting elsewhere.

uint16_t read16(File f) {
  uint16_t result;
  ((uint8_t *)&result)[0] = f.read(); // LSB
  ((uint8_t *)&result)[1] = f.read(); // MSB
  return result;
}

uint32_t read32(File f) {
  uint32_t result;
  ((uint8_t *)&result)[0] = f.read(); // LSB
  ((uint8_t *)&result)[1] = f.read();
  ((uint8_t *)&result)[2] = f.read();
  ((uint8_t *)&result)[3] = f.read(); // MSB
  return result;
}


/*   */


void my_cleaner_hour() {
  
  tft.drawRect (37,39,15,139,RED);
  tft.fillRect(39, 165, 12, 11, WHITE);
  tft.fillRect(39, 151, 12, 11, WHITE);
  tft.fillRect(39, 137, 12, 11, WHITE);
  tft.fillRect(39, 124, 12, 11, WHITE);
  tft.fillRect(39, 110, 12, 11, WHITE);
  tft.fillRect(39, 96, 12, 11, WHITE);
  tft.fillRect(39, 83, 12, 11, WHITE);
  tft.fillRect(39, 69, 12, 11, WHITE);
  tft.fillRect(39, 55, 12, 11, WHITE);
  tft.fillRect(39, 41, 12, 11, WHITE);

}
void my_cleaner_temp() {

  tft.fillRect(273, 159, 5, 20, WHITE);
  tft.fillRect(273, 145, 5, 12, WHITE);
  tft.fillRect(273, 131, 5, 12, WHITE);
  tft.fillRect(273, 117, 5, 12, WHITE);
  tft.fillRect(273, 103, 5, 12, WHITE);
  tft.fillRect(273, 89, 5, 12, WHITE);
  tft.fillRect(273, 75, 5, 12, WHITE);
  tft.fillRect(273, 61, 5, 12, WHITE);
  tft.fillCircle(275, 48, 2, WHITE);
  tft.fillRect(273, 50, 5, 9, WHITE);
  tft.fillCircle(275, 182, 7, RED);

}

void tft_timebar(int hourtime) {
 // my_cleaner_hour();

  switch (hourtime) {

    case 1:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      break;

    case 2:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      break;

    case 3:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      tft.fillRect(39, 137, 12, 11, GREEN);
      break;

    case 4:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      tft.fillRect(39, 137, 12, 11, GREEN);
      tft.fillRect(39, 124, 12, 11, GREEN);
      break;

    case 5:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      tft.fillRect(39, 137, 12, 11, GREEN);
      tft.fillRect(39, 124, 12, 11, GREEN);
      tft.fillRect(39, 110, 12, 11, GREEN);
      break;

    case 6:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      tft.fillRect(39, 137, 12, 11, GREEN);
      tft.fillRect(39, 124, 12, 11, GREEN);
      tft.fillRect(39, 110, 12, 11, GREEN);
      tft.fillRect(39, 96, 12, 11, GREEN);
      break;

    case 7:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      tft.fillRect(39, 137, 12, 11, GREEN);
      tft.fillRect(39, 124, 12, 11, GREEN);
      tft.fillRect(39, 110, 12, 11, GREEN);
      tft.fillRect(39, 96, 12, 11, GREEN);
      tft.fillRect(39, 83, 12, 11, GREEN);
      break;

    case 8:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      tft.fillRect(39, 137, 12, 11, GREEN);
      tft.fillRect(39, 124, 12, 11, GREEN);
      tft.fillRect(39, 110, 12, 11, GREEN);
      tft.fillRect(39, 96, 12, 11, GREEN);
      tft.fillRect(39, 83, 12, 11, GREEN);
      tft.fillRect(39, 69, 12, 11, GREEN);
      break;
    case 9:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      tft.fillRect(39, 137, 12, 11, GREEN);
      tft.fillRect(39, 124, 12, 11, GREEN);
      tft.fillRect(39, 110, 12, 11, GREEN);
      tft.fillRect(39, 96, 12, 11, GREEN);
      tft.fillRect(39, 83, 12, 11, GREEN);
      tft.fillRect(39, 69, 12, 11, GREEN);
      tft.fillRect(39, 55, 12, 11, GREEN);
      break;

    case 10:
      my_cleaner_hour();
      tft.fillRect(39, 165, 12, 11, GREEN);
      tft.fillRect(39, 151, 12, 11, GREEN);
      tft.fillRect(39, 137, 12, 11, GREEN);
      tft.fillRect(39, 124, 12, 11, GREEN);
      tft.fillRect(39, 110, 12, 11, GREEN);
      tft.fillRect(39, 96, 12, 11, GREEN);
      tft.fillRect(39, 83, 12, 11, GREEN);
      tft.fillRect(39, 69, 12, 11, GREEN);
      tft.fillRect(39, 55, 12, 11, GREEN);
      tft.fillRect(39, 41, 12, 11, GREEN);
      break;

    default:
      my_cleaner_hour();
      break;
  }

}
void tft_tempbar(int c) {

  tft.fillCircle(275, 182, 7, RED);

  int range = map(c, 20, 100, 1, 9);
  my_cleaner_temp();
  switch (range) {
    case 1:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      break;
    case 2:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      tft.fillRect(273, 145, 5, 12, RED);
      break;
    case 3:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      tft.fillRect(273, 145, 5, 12, RED);
      tft.fillRect(273, 131, 5, 12, RED);
      break;
    case 4:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      tft.fillRect(273, 145, 5, 12, RED);
      tft.fillRect(273, 131, 5, 12, RED);
      tft.fillRect(273, 117, 5, 12, RED);
      break;
    case 5:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      tft.fillRect(273, 145, 5, 12, RED);
      tft.fillRect(273, 131, 5, 12, RED);
      tft.fillRect(273, 117, 5, 12, RED);
      tft.fillRect(273, 103, 5, 12, RED);
      break;
    case 6:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      tft.fillRect(273, 145, 5, 12, RED);
      tft.fillRect(273, 131, 5, 12, RED);
      tft.fillRect(273, 117, 5, 12, RED);
      tft.fillRect(273, 103, 5, 12, RED);
      tft.fillRect(273, 89, 5, 12, RED);
      break;
    case 7:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      tft.fillRect(273, 145, 5, 12, RED);
      tft.fillRect(273, 131, 5, 12, RED);
      tft.fillRect(273, 117, 5, 12, RED);
      tft.fillRect(273, 103, 5, 12, RED);
      tft.fillRect(273, 89, 5, 12, RED);
      tft.fillRect(273, 75, 5, 12, RED);
      break;
    case 8:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      tft.fillRect(273, 145, 5, 12, RED);
      tft.fillRect(273, 131, 5, 12, RED);
      tft.fillRect(273, 117, 5, 12, RED);
      tft.fillRect(273, 103, 5, 12, RED);
      tft.fillRect(273, 89, 5, 12, RED);
      tft.fillRect(273, 75, 5, 12, RED);
      tft.fillRect(273, 61, 5, 12, RED);
      break;
    case 9:
      my_cleaner_temp();
      tft.fillRect(273, 159, 5, 20, RED);
      tft.fillRect(273, 145, 5, 12, RED);
      tft.fillRect(273, 131, 5, 12, RED);
      tft.fillRect(273, 117, 5, 12, RED);
      tft.fillRect(273, 103, 5, 12, RED);
      tft.fillRect(273, 89, 5, 12, RED);
      tft.fillRect(273, 75, 5, 12, RED);
      tft.fillRect(273, 61, 5, 12, RED);
      tft.fillCircle(275, 48, 2, RED);
      tft.fillRect(273, 50, 5, 9, RED);
      break;
  }

}


void tft_settemp(int b) {
  tft.fillRect(92, 112, 85, 65, BLACK);
  tft.setCursor(92, 112);
  tft.setTextColor(MAGENTA);
  tft.setTextSize(7);
  tft.println(b);
}

void tft_currtemp(int a) {

  tft.fillRect(210, 147, 40, 35, BLACK);
  tft.setCursor(210, 147);
  tft.setTextColor(RED);
  tft.setTextSize(3);
  tft.println(a);

  tft_tempbar(a);

}



//     
void seven_seg_set_temp_high_byte(byte HighByte, int COLOR) {

  
   byte segCount = 0;                            
                               
  //  for (byte segCount = 0; segCount < 7; ++segCount) {
         set_high_byte_segment_a (seven_seg_digits[HighByte][segCount], COLOR);
         segCount++;
         set_high_byte_segment_b (seven_seg_digits[HighByte][segCount], COLOR);   
         segCount++; 
         set_high_byte_segment_c (seven_seg_digits[HighByte][segCount], COLOR); 
         segCount++; 
         set_high_byte_segment_d (seven_seg_digits[HighByte][segCount], COLOR);
         segCount++; 
         set_high_byte_segment_e (seven_seg_digits[HighByte][segCount], COLOR);  
         segCount++; 
         set_high_byte_segment_f (seven_seg_digits[HighByte][segCount], COLOR);  
         segCount++; 
         set_high_byte_segment_g (seven_seg_digits[HighByte][segCount], COLOR);        
 //   } // for
} // end of function
 
//     
void seven_seg_set_temp_low_byte(byte HighByte, int COLOR) {

   byte segCount = 0;                            
                               
  //  for (byte segCount = 0; segCount < 7; ++segCount) {
         set_low_byte_segment_a (seven_seg_digits[HighByte][segCount], COLOR);
         segCount++;
         set_low_byte_segment_b (seven_seg_digits[HighByte][segCount], COLOR);   
         segCount++; 
         set_low_byte_segment_c (seven_seg_digits[HighByte][segCount], COLOR); 
         segCount++; 
         set_low_byte_segment_d (seven_seg_digits[HighByte][segCount], COLOR);
         segCount++; 
         set_low_byte_segment_e (seven_seg_digits[HighByte][segCount], COLOR);  
         segCount++; 
         set_low_byte_segment_f (seven_seg_digits[HighByte][segCount], COLOR);  
         segCount++; 
         set_low_byte_segment_g (seven_seg_digits[HighByte][segCount], COLOR);        
 //   } // for
} // end of function
 
 
 
//     
 void seven_seg_now_temp_high_byte(byte HighByte, int COLOR) {

   byte segCount = 0;                            
                               
  //  for (byte segCount = 0; segCount < 7; ++segCount) {
         time_high_byte_segment_a (seven_seg_digits[HighByte][segCount], COLOR);
         segCount++;
         time_high_byte_segment_b (seven_seg_digits[HighByte][segCount], COLOR);   
         segCount++; 
         time_high_byte_segment_c (seven_seg_digits[HighByte][segCount], COLOR); 
         segCount++; 
         time_high_byte_segment_d (seven_seg_digits[HighByte][segCount], COLOR);
         segCount++; 
         time_high_byte_segment_e (seven_seg_digits[HighByte][segCount], COLOR);  
         segCount++; 
         time_high_byte_segment_f (seven_seg_digits[HighByte][segCount], COLOR);  
         segCount++; 
         time_high_byte_segment_g (seven_seg_digits[HighByte][segCount], COLOR);        
 //   } // for
} // end of function

//////////////////////////////////////////////
//     
/////////////////////////////////////////////
 void seven_seg_now_temp_low_byte(byte HighByte, int COLOR) {

  
   byte segCount = 0;                            
                               
  //  for (byte segCount = 0; segCount < 7; ++segCount) {
         time_low_byte_segment_a (seven_seg_digits[HighByte][segCount], COLOR);
         segCount++;
         time_low_byte_segment_b (seven_seg_digits[HighByte][segCount], COLOR);   
         segCount++; 
         time_low_byte_segment_c (seven_seg_digits[HighByte][segCount], COLOR); 
         segCount++; 
         time_low_byte_segment_d (seven_seg_digits[HighByte][segCount], COLOR);
         segCount++; 
         time_low_byte_segment_e (seven_seg_digits[HighByte][segCount], COLOR);  
         segCount++; 
         time_low_byte_segment_f (seven_seg_digits[HighByte][segCount], COLOR);  
         segCount++; 
         time_low_byte_segment_g (seven_seg_digits[HighByte][segCount], COLOR);        
 //   } // for
} // end of function







 
// -------------------------------------------------
//    7 segment a
 void set_high_byte_segment_a (boolean disp,int COLOR)
  {
   if (disp) {  
    for (int i=0;i < 8 ; i++) {
        tft.drawLine(92+i,110+i,128-i,110+i,COLOR); 
      } // for
  } // if
 } // end of function
  
// -------------------------------------------------


  //    7 segment b
 void set_high_byte_segment_b (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(128-i,113+i,128-i,140-i,COLOR); 
      } // for 
      
      for (int i=0;i < 6 ; i++) {
        tft.drawLine(126-i,115+i,126-i,141-i,COLOR); 
      } // for      
    } // if
   
} // end of function


 // -------------------------------------------------
  //    7 segment c
 void set_high_byte_segment_c (boolean disp, int COLOR)
 {
    if (disp) {
        for (int i=0;i < 8 ; i++) {
        tft.drawLine(129 -i,111+Diff_c_y + i,129-i,143+Diff_c_y - i,COLOR); 
      } // for
    } // if
} // end of function


// -------------------------------------------------
//    7 segment d
void set_high_byte_segment_d (boolean disp, int COLOR)
 {
    if (disp) {
     for (int i=0;i < 8 ; i++) {
  tft.drawLine(98-i,(108 + Diff_d_y + i),119+i,(108 + Diff_d_y + i),COLOR); 
}   
    } // if
} // end of function 

// -------------------------------------------------
  //    7 segment e

 void set_high_byte_segment_e (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 8 ; i++) {
        tft.drawLine(90+i,143+i,90+i,173-i,COLOR); 
      } // for
    } // if
} // end of function

// -------------------------------------------------
  //    7 segment f
 void set_high_byte_segment_f (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(90 +i,111+i,90+i,140+i,COLOR); 
      }//for  
      
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(94+i,115+i,94+i,141-i,COLOR); 
      }  // for
    } // if
} // end of function


// -------------------------------------------------
  //    7 segment g

 void set_high_byte_segment_g (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(98-i,140+i,121+i,140+i,COLOR); 
      } //for
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(94+i,144+i,124-i,144+i,COLOR); 
      } //for   
    } // if
} // end of function

// ============================================================
//   
//=============================================================
// -------------------------------------------------
  //     7 segment a


 void set_low_byte_segment_a (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 8 ; i++) {
        tft.drawLine(92+MoveX+i,110+i,128+MoveX-i,110+i,COLOR); 
      } // for   
     } // if
} // end of function

// -------------------------------------------------
  //     7 segment b
 void set_low_byte_segment_b (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(129+MoveX-i,111+i,129+MoveX-i,139+i,COLOR); 
      } //for

      for (int i=0;i < 6 ; i++) {
        tft.drawLine(126+MoveX-i,115+i,126+MoveX-i,141-i,COLOR); 
      }  //for  
    } // if
} // end of function

// -------------------------------------------------
  //    7 segment c
 void set_low_byte_segment_c (boolean disp, int COLOR)
 {
    if (disp) {
       for (int i=0;i < 8 ; i++) {
        tft.drawLine(129+MoveX-i,111+Diff_c_y + i,129+MoveX-i,145+Diff_c_y - i,COLOR); 
       }  // for 
    } // if
} // end of function

// -------------------------------------------------
  //    7 segment d
 void set_low_byte_segment_d (boolean disp, int COLOR)
 {
    if (disp) {
       for (int i=0;i < 8 ; i++) {
        tft.drawLine(98+MoveX-i,(108 + Diff_d_y + i),119+MoveX+i,(108 + Diff_d_y + i),COLOR); 
      } // for
    } // if
} // end of function

// -------------------------------------------------
  //    7 segment e
 void set_low_byte_segment_e (boolean disp, int COLOR)
 {
    if (disp) {
       for (int i=0;i < 8 ; i++) {
        tft.drawLine(90+MoveX+i,143+i,90+MoveX+i,173-i,COLOR); 
       } // for
    } // if
} // end of function

// -------------------------------------------------
  //    7 segment f
 void set_low_byte_segment_f (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(90+MoveX+i,111+i,90+MoveX+i,140+i,COLOR); 
      }  // for 
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(94+MoveX+i,115+i,94+MoveX+i,141-i,COLOR); 
      }   // for      
    } // if
} // end of function

// -------------------------------------------------
  //    7 segment g


 void set_low_byte_segment_g (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(98+MoveX-i,140+i,121+MoveX+i,140+i,COLOR); 
      } // for
      for (int i=0;i < 4 ; i++) {
        tft.drawLine(94+MoveX+i,144+i,124+MoveX-i,144+i,COLOR); 
      } // for
    } // if
} // end of function

// ============================================================
//    
//=============================================================

// -------------------------------------------------
  //     7 segment a
 void time_high_byte_segment_a (boolean disp, int COLOR)
 {
    if (disp) {
     for (int i=0;i < 3 ; i++) {
      tft.drawLine(210+i,149+i,224-i,149+i,COLOR); 
    }  // for
    } // if
} // end of function

// -------------------------------------------------
  //     7 segment b

 void time_high_byte_segment_b (boolean disp, int COLOR)
 {
    if (disp) {
       for (int i=0;i < 2 ; i++) {
        tft.drawLine(225 -i,150+i,225-i,160+i,COLOR); 
       } // for

      for (int i=0;i < 2 ; i++) {
        tft.drawLine(223-i,152+i,223-i,161-i,COLOR); 
      }  // for
    } // if
} // end of function

// -------------------------------------------------
  //     7 segment c

 void time_high_byte_segment_c (boolean disp, int COLOR)
 {
    if (disp) {
        for (int i=0;i < 4 ; i++) {
        tft.drawLine(225 -i,151+Diff_c_y_low+i,225-i,164+Diff_c_y_low - i,COLOR); 
      }  // for
    } // if
} // end of function

// -------------------------------------------------
  //     7 segment d
 void time_high_byte_segment_d (boolean disp, int COLOR)
 {
    if (disp) {
       for (int i=0;i < 3 ; i++) {
        tft.drawLine(212-i,(153 + Diff_d_y_low + i),222+i,(153 + Diff_d_y_low + i),COLOR); 
      }  // for
    } // if
} // end of function

 
// -------------------------------------------------
  //     7 segment e

 void time_high_byte_segment_e (boolean disp, int COLOR)
 {
    if (disp) {
       for (int i=0;i < 4 ; i++) {
        tft.drawLine(209+i,162+i,209+i,174-i,COLOR); 
      }  // for
    } // if
} // end of function

// -------------------------------------------------
  //     7 segment f
 void time_high_byte_segment_f (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 2 ; i++) {
        tft.drawLine(211+i,152+i,211+i,162-i,COLOR); 
      } // for
      for (int i=0;i < 2 ; i++) {
        tft.drawLine(209 +i,150+i,209+i,160+i,COLOR); 
      } // for
    } // if
} // end of function

// -------------------------------------------------
  //     7 segment g

 void time_high_byte_segment_g (boolean disp, int COLOR)
 {
    if (disp) {
      for (int i=0;i < 2 ; i++) {
        tft.drawLine(214-i,160+i,220+i,160+i,COLOR); 
...

This file has been truncated, please download it to see its full contents.

Debounce_test.ino

Arduino
 /*
 Debounce

 Each time the input pin goes from LOW to HIGH (e.g. because of a push-button
 press), the output pin is toggled from LOW to HIGH or HIGH to LOW.  There's
 a minimum delay between toggles to debounce the circuit (i.e. to ignore
 noise).

 The circuit:
 * LED attached from pin 13 to ground
 * pushbutton attached from pin 2 to +5V
 * 10K resistor attached from pin 2 to ground

 * Note: On most Arduino boards, there is already an LED on the board
 connected to pin 13, so you don't need any extra components for this example.


 created 21 November 2006
 by David A. Mellis
 modified 30 Aug 2011
 by Limor Fried
 modified 28 Dec 2012
 by Mike Walters

 This example code is in the public domain.

 http://www.arduino.cc/en/Tutorial/Debounce
 */

// constants won't change. They're used here to
// set pin numbers:
const int buttonPin = 2;    // the number of the pushbutton pin
const int ledPin = 13;      // the number of the LED pin

// Variables will change:
int ledState = HIGH;         // the current state of the output pin
int buttonState;             // the current reading from the input pin
int lastButtonState = LOW;   // the previous reading from the input pin

// the following variables are long's because the time, measured in miliseconds,
// will quickly become a bigger number than can be stored in an int.
long lastDebounceTime = 0;  // the last time the output pin was toggled
long debounceDelay = 50;    // the debounce time; increase if the output flickers

void setup() {
  pinMode(buttonPin, INPUT);
  pinMode(ledPin, OUTPUT);

  // set initial LED state
  digitalWrite(ledPin, ledState);
}

void loop() {
  // read the state of the switch into a local variable:
  int reading = digitalRead(buttonPin);

  // check to see if you just pressed the button
  // (i.e. the input went from LOW to HIGH),  and you've waited
  // long enough since the last press to ignore any noise:

  // If the switch changed, due to noise or pressing:
  if (reading != lastButtonState) {
    // reset the debouncing timer
    lastDebounceTime = millis();
  }

  if ((millis() - lastDebounceTime) > debounceDelay) {
    // whatever the reading is at, it's been there for longer
    // than the debounce delay, so take it as the actual current state:

    // if the button state has changed:
    if (reading != buttonState) {
      buttonState = reading;

      // only toggle the LED if the new button state is HIGH
      if (buttonState == HIGH) {
        ledState = !ledState;
      }
    }
  }

  // set the LED:
  digitalWrite(ledPin, ledState);

  // save the reading.  Next time through the loop,
  // it'll be the lastButtonState:
  lastButtonState = reading;
}

mainboard

Arduino
No preview (download only).

ULN2003 library

C/C++
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# C
#
DEF C C 0 10 N Y 1 F N
F0 "C" 25 100 50 H V L CNN
F1 "C" 25 -100 50 H V L CNN
F2 "" 38 -150 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 C?
 C_????_*
 C_????
 SMD*_c
 Capacitor*
$ENDFPLIST
DRAW
P 2 0 1 20 -80 -30 80 -30 N
P 2 0 1 20 -80 30 80 30 N
X ~ 1 0 150 110 D 40 40 1 1 P
X ~ 2 0 -150 110 U 40 40 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X02
#
DEF CONN_01X02 P 0 40 Y N 1 F N
F0 "P" 0 150 50 H V C CNN
F1 "CONN_01X02" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X02
 Pin_Header_Angled_1X02
 Socket_Strip_Straight_1X02
 Socket_Strip_Angled_1X02
$ENDFPLIST
DRAW
S -50 -45 10 -55 0 1 0 N
S -50 55 10 45 0 1 0 N
S -50 100 50 -100 0 1 0 N
X P1 1 -200 50 150 R 50 50 1 1 P
X P2 2 -200 -50 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X04
#
DEF CONN_01X04 P 0 40 Y N 1 F N
F0 "P" 0 250 50 H V C CNN
F1 "CONN_01X04" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X04
 Pin_Header_Angled_1X04
 Socket_Strip_Straight_1X04
 Socket_Strip_Angled_1X04
$ENDFPLIST
DRAW
S -50 -145 10 -155 0 1 0 N
S -50 -45 10 -55 0 1 0 N
S -50 55 10 45 0 1 0 N
S -50 155 10 145 0 1 0 N
S -50 200 50 -200 0 1 0 N
X P1 1 -200 150 150 R 50 50 1 1 P
X P2 2 -200 50 150 R 50 50 1 1 P
X P3 3 -200 -50 150 R 50 50 1 1 P
X P4 4 -200 -150 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X08
#
DEF CONN_01X08 P 0 40 Y N 1 F N
F0 "P" 0 450 50 H V C CNN
F1 "CONN_01X08" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X08
 Pin_Header_Angled_1X08
 Socket_Strip_Straight_1X08
 Socket_Strip_Angled_1X08
$ENDFPLIST
DRAW
S -50 -400 50 400 0 1 0 N
S -50 -345 10 -355 0 1 0 N
S -50 -245 10 -255 0 1 0 N
S -50 -145 10 -155 0 1 0 N
S -50 -45 10 -55 0 1 0 N
S -50 55 10 45 0 1 0 N
S -50 155 10 145 0 1 0 N
S -50 255 10 245 0 1 0 N
S -50 355 10 345 0 1 0 N
X P1 1 -200 350 150 R 50 50 1 1 P
X P2 2 -200 250 150 R 50 50 1 1 P
X P3 3 -200 150 150 R 50 50 1 1 P
X P4 4 -200 50 150 R 50 50 1 1 P
X P5 5 -200 -50 150 R 50 50 1 1 P
X P6 6 -200 -150 150 R 50 50 1 1 P
X P7 7 -200 -250 150 R 50 50 1 1 P
X P8 8 -200 -350 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X09
#
DEF CONN_01X09 P 0 40 Y N 1 F N
F0 "P" 0 500 50 H V C CNN
F1 "CONN_01X09" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X09
 Pin_Header_Angled_1X09
 Socket_Strip_Straight_1X09
 Socket_Strip_Angled_1X09
$ENDFPLIST
DRAW
S -50 -395 10 -405 0 1 0 N
S -50 -295 10 -305 0 1 0 N
S -50 -195 10 -205 0 1 0 N
S -50 -95 10 -105 0 1 0 N
S -50 5 10 -5 0 1 0 N
S -50 105 10 95 0 1 0 N
S -50 205 10 195 0 1 0 N
S -50 305 10 295 0 1 0 N
S -50 405 10 395 0 1 0 N
S -50 450 50 -450 0 1 0 N
X P1 1 -200 400 150 R 50 50 1 1 P
X P2 2 -200 300 150 R 50 50 1 1 P
X P3 3 -200 200 150 R 50 50 1 1 P
X P4 4 -200 100 150 R 50 50 1 1 P
X P5 5 -200 0 150 R 50 50 1 1 P
X P6 6 -200 -100 150 R 50 50 1 1 P
X P7 7 -200 -200 150 R 50 50 1 1 P
X P8 8 -200 -300 150 R 50 50 1 1 P
X P9 9 -200 -400 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X10
#
DEF CONN_01X10 P 0 40 Y N 1 F N
F0 "P" 0 550 50 H V C CNN
F1 "CONN_01X10" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X10
 Pin_Header_Angled_1X10
 Socket_Strip_Straight_1X10
 Socket_Strip_Angled_1X10
$ENDFPLIST
DRAW
S -50 -445 10 -455 0 1 0 N
S -50 -345 10 -355 0 1 0 N
S -50 -245 10 -255 0 1 0 N
S -50 -145 10 -155 0 1 0 N
S -50 -45 10 -55 0 1 0 N
S -50 55 10 45 0 1 0 N
S -50 155 10 145 0 1 0 N
S -50 255 10 245 0 1 0 N
S -50 355 10 345 0 1 0 N
S -50 455 10 445 0 1 0 N
S -50 500 50 -500 0 1 0 N
X P1 1 -200 450 150 R 50 50 1 1 P
X P2 2 -200 350 150 R 50 50 1 1 P
X P3 3 -200 250 150 R 50 50 1 1 P
X P4 4 -200 150 150 R 50 50 1 1 P
X P5 5 -200 50 150 R 50 50 1 1 P
X P6 6 -200 -50 150 R 50 50 1 1 P
X P7 7 -200 -150 150 R 50 50 1 1 P
X P8 8 -200 -250 150 R 50 50 1 1 P
X P9 9 -200 -350 150 R 50 50 1 1 P
X P10 10 -200 -450 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_02X10
#
DEF CONN_02X10 P 0 1 Y N 1 F N
F0 "P" 0 550 50 H V C CNN
F1 "CONN_02X10" 0 0 50 V V C CNN
F2 "" 0 -1200 50 H V C CNN
F3 "" 0 -1200 50 H V C CNN
$FPLIST
 Pin_Header_Straight_2X10
 Pin_Header_Angled_2X10
 Socket_Strip_Straight_2X10
 Socket_Strip_Angled_2X10
$ENDFPLIST
DRAW
S -100 -445 -50 -455 0 1 0 N
S -100 -345 -50 -355 0 1 0 N
S -100 -245 -50 -255 0 1 0 N
S -100 -145 -50 -155 0 1 0 N
S -100 -45 -50 -55 0 1 0 N
S -100 55 -50 45 0 1 0 N
S -100 155 -50 145 0 1 0 N
S -100 255 -50 245 0 1 0 N
S -100 355 -50 345 0 1 0 N
S -100 455 -50 445 0 1 0 N
S -100 500 100 -500 0 1 0 N
S 50 -445 100 -455 0 1 0 N
S 50 -345 100 -355 0 1 0 N
S 50 -245 100 -255 0 1 0 N
S 50 -145 100 -155 0 1 0 N
S 50 -45 100 -55 0 1 0 N
S 50 55 100 45 0 1 0 N
S 50 155 100 145 0 1 0 N
S 50 255 100 245 0 1 0 N
S 50 355 100 345 0 1 0 N
S 50 455 100 445 0 1 0 N
X P1 1 -250 450 150 R 50 50 1 1 P
X P2 2 250 450 150 L 50 50 1 1 P
X P3 3 -250 350 150 R 50 50 1 1 P
X P4 4 250 350 150 L 50 50 1 1 P
X P5 5 -250 250 150 R 50 50 1 1 P
X P6 6 250 250 150 L 50 50 1 1 P
X P7 7 -250 150 150 R 50 50 1 1 P
X P8 8 250 150 150 L 50 50 1 1 P
X P9 9 -250 50 150 R 50 50 1 1 P
X P10 10 250 50 150 L 50 50 1 1 P
X P20 20 250 -450 150 L 50 50 1 1 P
X P11 11 -250 -50 150 R 50 50 1 1 P
X P12 12 250 -50 150 L 50 50 1 1 P
X P13 13 -250 -150 150 R 50 50 1 1 P
X P14 14 250 -150 150 L 50 50 1 1 P
X P15 15 -250 -250 150 R 50 50 1 1 P
X P16 16 250 -250 150 L 50 50 1 1 P
X P17 17 -250 -350 150 R 50 50 1 1 P
X P18 18 250 -350 150 L 50 50 1 1 P
X P19 19 -250 -450 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_02X18
#
DEF CONN_02X18 P 0 1 Y N 1 F N
F0 "P" 0 950 50 H V C CNN
F1 "CONN_02X18" 0 0 50 V V C CNN
F2 "" 0 -1050 50 H V C CNN
F3 "" 0 -1050 50 H V C CNN
$FPLIST
 Pin_Header_Straight_2X18
 Pin_Header_Angled_2X18
 Socket_Strip_Straight_2X18
 Socket_Strip_Angled_2X18
$ENDFPLIST
DRAW
S -100 -845 -50 -855 0 1 0 N
S -100 -745 -50 -755 0 1 0 N
S -100 -645 -50 -655 0 1 0 N
S -100 -545 -50 -555 0 1 0 N
S -100 -445 -50 -455 0 1 0 N
S -100 -345 -50 -355 0 1 0 N
S -100 -245 -50 -255 0 1 0 N
S -100 -145 -50 -155 0 1 0 N
S -100 -45 -50 -55 0 1 0 N
S -100 55 -50 45 0 1 0 N
S -100 155 -50 145 0 1 0 N
S -100 255 -50 245 0 1 0 N
S -100 355 -50 345 0 1 0 N
S -100 455 -50 445 0 1 0 N
S -100 555 -50 545 0 1 0 N
S -100 655 -50 645 0 1 0 N
S -100 755 -50 745 0 1 0 N
S -100 855 -50 845 0 1 0 N
S -100 900 100 -900 0 1 0 N
S 50 -845 100 -855 0 1 0 N
S 50 -745 100 -755 0 1 0 N
S 50 -645 100 -655 0 1 0 N
S 50 -545 100 -555 0 1 0 N
S 50 -445 100 -455 0 1 0 N
S 50 -345 100 -355 0 1 0 N
S 50 -245 100 -255 0 1 0 N
S 50 -145 100 -155 0 1 0 N
S 50 -45 100 -55 0 1 0 N
S 50 55 100 45 0 1 0 N
S 50 155 100 145 0 1 0 N
S 50 255 100 245 0 1 0 N
S 50 355 100 345 0 1 0 N
S 50 455 100 445 0 1 0 N
S 50 555 100 545 0 1 0 N
S 50 655 100 645 0 1 0 N
S 50 755 100 745 0 1 0 N
S 50 855 100 845 0 1 0 N
X P1 1 -250 850 150 R 50 50 1 1 P
X P2 2 250 850 150 L 50 50 1 1 P
X P3 3 -250 750 150 R 50 50 1 1 P
X P4 4 250 750 150 L 50 50 1 1 P
X P5 5 -250 650 150 R 50 50 1 1 P
X P6 6 250 650 150 L 50 50 1 1 P
X P7 7 -250 550 150 R 50 50 1 1 P
X P8 8 250 550 150 L 50 50 1 1 P
X P9 9 -250 450 150 R 50 50 1 1 P
X P10 10 250 450 150 L 50 50 1 1 P
X P20 20 250 -50 150 L 50 50 1 1 P
X P30 30 250 -550 150 L 50 50 1 1 P
X P11 11 -250 350 150 R 50 50 1 1 P
X P21 21 -250 -150 150 R 50 50 1 1 P
X P31 31 -250 -650 150 R 50 50 1 1 P
X P12 12 250 350 150 L 50 50 1 1 P
X P22 22 250 -150 150 L 50 50 1 1 P
X P32 32 250 -650 150 L 50 50 1 1 P
X P13 13 -250 250 150 R 50 50 1 1 P
X P23 23 -250 -250 150 R 50 50 1 1 P
X P33 33 -250 -750 150 R 50 50 1 1 P
X P14 14 250 250 150 L 50 50 1 1 P
X P24 24 250 -250 150 L 50 50 1 1 P
X P34 34 250 -750 150 L 50 50 1 1 P
X P15 15 -250 150 150 R 50 50 1 1 P
X P25 25 -250 -350 150 R 50 50 1 1 P
X P35 35 -250 -850 150 R 50 50 1 1 P
X P16 16 250 150 150 L 50 50 1 1 P
X P26 26 250 -350 150 L 50 50 1 1 P
X P36 36 250 -850 150 L 50 50 1 1 P
X P17 17 -250 50 150 R 50 50 1 1 P
X P27 27 -250 -450 150 R 50 50 1 1 P
X P18 18 250 50 150 L 50 50 1 1 P
X P28 28 250 -450 150 L 50 50 1 1 P
X P19 19 -250 -50 150 R 50 50 1 1 P
X P29 29 -250 -550 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CP1
#
DEF CP1 C 0 10 N N 1 F N
F0 "C" 25 100 50 H V L CNN
F1 "CP1" 25 -100 50 H V L CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 SMD*_Pol
 C_Axial*
 C_Radial*
 c_elec*
 C*elec
 TantalC*
 CP*
$ENDFPLIST
DRAW
A 0 -150 128 1287 513 0 1 20 N -80 -50 80 -50
P 2 0 1 20 -80 30 80 30 N
P 2 0 1 0 -70 90 -30 90 N
P 2 0 1 0 -50 70 -50 110 N
X ~ 1 0 150 110 D 40 40 1 1 P
X ~ 2 0 -150 130 U 40 40 1 1 P
ENDDRAW
ENDDEF
#
# GND
#
DEF GND #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -250 50 H I C CNN
F1 "GND" 0 -150 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
DRAW
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
X GND 1 0 0 0 D 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# R
#
DEF R R 0 0 N Y 1 F N
F0 "R" 80 0 50 V V C CNN
F1 "R" 0 0 50 V V C CNN
F2 "" -70 0 50 V V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 R_*
 Resistor_*
$ENDFPLIST
DRAW
S -40 -100 40 100 0 1 10 N
X ~ 1 0 150 50 D 50 50 1 1 P
X ~ 2 0 -150 50 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# UNL2003
#
DEF UNL2003 U 0 40 Y Y 1 F N
F0 "U" 200 200 60 H V C CNN
F1 "UNL2003" 400 -1000 60 H V C CNN
F2 "" 200 0 60 H I C CNN
F3 "" 200 0 60 H I C CNN
DRAW
S 100 100 800 -900 0 1 0 N
P 4 0 1 0 400 100 400 0 500 0 500 100 N
X IN1 1 -100 -100 200 R 50 50 1 1 I
X IN2 2 -100 -200 200 R 50 50 1 1 I
X IN3 3 -100 -300 200 R 50 50 1 1 I
X IN4 4 -100 -400 200 R 50 50 1 1 I
X IN5 5 -100 -500 200 R 50 50 1 1 I
X IN6 6 -100 -600 200 R 50 50 1 1 I
X IN7 7 -100 -700 200 R 50 50 1 1 I
X GND 8 -100 -800 200 R 50 50 1 1 I
X VCC 9 1000 -800 200 L 50 50 1 1 I
X OUT7 10 1000 -700 200 L 50 50 1 1 O
X OUT6 11 1000 -600 200 L 50 50 1 1 O
X OUT5 12 1000 -500 200 L 50 50 1 1 O
X OUT4 13 1000 -400 200 L 50 50 1 1 O
X OUT3 14 1000 -300 200 L 50 50 1 1 O
X OUT2 15 1000 -200 200 L 50 50 1 1 O
X OUT1 16 1000 -100 200 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
#End Library

circuit

C/C++
EESchema Schematic File Version 2
LIBS:unl2003
LIBS:power
LIBS:device
LIBS:transistors
LIBS:conn
LIBS:linear
LIBS:regul
LIBS:74xx
LIBS:cmos4000
LIBS:adc-dac
LIBS:memory
LIBS:xilinx
LIBS:microcontrollers
LIBS:dsp
LIBS:microchip
LIBS:analog_switches
LIBS:motorola
LIBS:texas
LIBS:intel
LIBS:audio
LIBS:interface
LIBS:digital-audio
LIBS:philips
LIBS:display
LIBS:cypress
LIBS:siliconi
LIBS:opto
LIBS:atmel
LIBS:contrib
LIBS:valves
LIBS:-cache
EELAYER 25 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 1
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L CONN_01X04 P5
U 1 1 57BAAA1F
P 3800 1200
F 0 "P5" H 3800 1450 50  0000 C CNN
F 1 "TEMP_SENSOR" V 3950 1200 50  0000 C CNN
F 2 "Connectors_Molex:Molex_PicoBlade_53047-0410" H 3800 1200 50  0001 C CNN
F 3 "" H 3800 1200 50  0000 C CNN
	1    3800 1200
	-1   0    0    1   
$EndComp
$Comp
L CONN_01X04 P6
U 1 1 57BAAB40
P 4250 5900
F 0 "P6" H 4250 6150 50  0000 C CNN
F 1 "RGB LED" V 4350 5900 50  0000 C CNN
F 2 "Connectors_Molex:Molex_PicoBlade_53047-0410" H 4250 5900 50  0001 C CNN
F 3 "" H 4250 5900 50  0000 C CNN
	1    4250 5900
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X02 P8
U 1 1 57BAABD7
P 4450 6600
F 0 "P8" H 4450 6750 50  0000 C CNN
F 1 "12V" V 4550 6600 50  0000 C CNN
F 2 "Socket_Strips:Socket_Strip_Angled_1x02" H 4450 6600 50  0001 C CNN
F 3 "" H 4450 6600 50  0000 C CNN
	1    4450 6600
	1    0    0    1   
$EndComp
$Comp
L CONN_01X02 P12
U 1 1 57BAAC10
P 7850 5900
F 0 "P12" H 7850 6050 50  0000 C CNN
F 1 "SSR CONTROL" H 8200 5900 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_S02B-EH_02x2.50mm_Angled" H 7850 5900 50  0001 C CNN
F 3 "" H 7850 5900 50  0000 C CNN
	1    7850 5900
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X02 P13
U 1 1 57BAAFA6
P 8100 2000
F 0 "P13" H 8100 2150 50  0000 C CNN
F 1 "5V" V 8200 2000 50  0000 C CNN
F 2 "Connectors_Harwin:Harwin_LTek-Male_02x2.00mm_Straight" H 8100 2000 50  0001 C CNN
F 3 "" H 8100 2000 50  0000 C CNN
	1    8100 2000
	1    0    0    1   
$EndComp
$Comp
L CONN_01X08 P11
U 1 1 57BAAFD3
P 6750 1950
F 0 "P11" H 6750 2400 50  0000 C CNN
F 1 "CONN_01X08" V 6850 1950 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 6750 1950 50  0001 C CNN
F 3 "" H 6750 1950 50  0000 C CNN
	1    6750 1950
	0    1    -1   0   
$EndComp
$Comp
L CONN_01X08 P9
U 1 1 57BAB173
P 5600 1950
F 0 "P9" H 5600 2400 50  0000 C CNN
F 1 "ANALOG_INPUT 1" V 5700 1950 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 5600 1950 50  0001 C CNN
F 3 "" H 5600 1950 50  0000 C CNN
	1    5600 1950
	0    1    -1   0   
$EndComp
$Comp
L CONN_01X10 P7
U 1 1 57BAB23B
P 4400 1950
F 0 "P7" H 4400 2500 50  0000 C CNN
F 1 "ANALOG IN 2" V 4500 1950 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B10B-EH-A_10x2.50mm_Straight" H 4400 1950 50  0001 C CNN
F 3 "" H 4400 1950 50  0000 C CNN
	1    4400 1950
	0    1    -1   0   
$EndComp
$Comp
L CONN_01X08 P1
U 1 1 57BAB35D
P 2100 7600
F 0 "P1" H 2100 8050 50  0000 C CNN
F 1 "COMMUNICATION" V 2200 7600 50  0000 C CNN
F 2 "Pin_Headers:Pin_Header_Straight_1x08" H 2100 7600 50  0001 C CNN
F 3 "" H 2100 7600 50  0000 C CNN
	1    2100 7600
	0    1    1    0   
$EndComp
$Comp
L CONN_01X08 P4
U 1 1 57BAB3DC
P 3700 7550
F 0 "P4" H 3700 8000 50  0000 C CNN
F 1 "PWM 1" V 3800 7550 50  0000 C CNN
F 2 "Connectors_Molex:Molex_KK-6410-08_08x2.54mm_Straight" H 3700 7550 50  0001 C CNN
F 3 "" H 3700 7550 50  0000 C CNN
	1    3700 7550
	0    -1   1    0   
$EndComp
$Comp
L CONN_01X10 P10
U 1 1 57BAB49C
P 6650 6200
F 0 "P10" H 6650 6750 50  0000 C CNN
F 1 "PWM 2" V 6750 6200 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B10B-EH-A_10x2.50mm_Straight" H 6650 6200 50  0001 C CNN
F 3 "" H 6650 6200 50  0000 C CNN
	1    6650 6200
	0    -1   1    0   
$EndComp
NoConn ~ 7100 2150
NoConn ~ 7000 2150
NoConn ~ 6900 2150
$Comp
L GND #PWR01
U 1 1 57BACD12
P 6500 2300
F 0 "#PWR01" H 6500 2050 50  0001 C CNN
F 1 "GND" H 6500 2150 50  0000 C CNN
F 2 "" H 6500 2300 50  0000 C CNN
F 3 "" H 6500 2300 50  0000 C CNN
	1    6500 2300
	1    0    0    -1  
$EndComp
NoConn ~ 6400 2150
$Comp
L GND #PWR02
U 1 1 57BACEC2
P 7900 2200
F 0 "#PWR02" H 7900 1950 50  0001 C CNN
F 1 "GND" H 7900 2050 50  0000 C CNN
F 2 "" H 7900 2200 50  0000 C CNN
F 3 "" H 7900 2200 50  0000 C CNN
	1    7900 2200
	1    0    0    -1  
$EndComp
$Comp
L CONN_02X10 P14
U 1 1 57BACF05
P 8850 3650
F 0 "P14" H 8850 4200 50  0000 C CNN
F 1 "TFT_LCD_CON" V 8850 3650 50  0000 C CNN
F 2 "Connect:IDC_Header_Straight_20pins" H 8850 2450 50  0000 C CNN
F 3 "" H 8850 2450 50  0000 C CNN
	1    8850 3650
	1    0    0    -1  
$EndComp
Text Label 8350 3150 0    60   ~ 0
3.3V
Text Label 7700 1950 0    60   ~ 0
5V
NoConn ~ 5450 2150
NoConn ~ 5350 2150
NoConn ~ 5250 2150
Text Label 8250 3300 0    60   ~ 0
LCD_RD
Text Label 5950 2250 0    60   ~ 0
LCD_RD
Text Label 8250 3400 0    60   ~ 0
LCD_WR
Text Label 5850 2350 0    60   ~ 0
LCD_WR
Text Label 8250 3500 0    60   ~ 0
LCD_RS
Text Label 8250 3600 0    60   ~ 0
LCD_CS
Text Label 5750 2450 0    60   ~ 0
LCD_RS
Text Label 5650 2550 0    60   ~ 0
LCS_CS
Text Label 8250 3700 0    60   ~ 0
LCD_RST
Text Label 5550 2650 0    60   ~ 0
LCD_RST
NoConn ~ 3550 4700
NoConn ~ 3050 4700
Text Label 8250 3800 0    60   ~ 0
LCD_D0
Text Label 3700 4600 0    60   ~ 0
LCD_D0
Text Label 8250 3900 0    60   ~ 0
LCD_D1
Text Label 2550 4650 0    60   ~ 0
LCD_D1
Text Label 8250 4000 0    60   ~ 0
LCD_D2
Text Label 3700 4500 0    60   ~ 0
LCD_D2
Text Label 8250 4100 0    60   ~ 0
LCD_D3
Text Label 2550 4550 0    60   ~ 0
LCD_D3
Text Label 3700 4400 0    60   ~ 0
LCD_D4
Text Label 9250 4100 0    60   ~ 0
LCD_D4
Text Label 9250 4000 0    60   ~ 0
LCD_D5
Text Label 2550 4400 0    60   ~ 0
LCD_D5
Text Label 9250 3900 0    60   ~ 0
LCD_D6
Text Label 3700 4300 0    60   ~ 0
LCD_D6
Text Label 9250 3800 0    60   ~ 0
LCD_D7
Text Label 2550 4300 0    60   ~ 0
LCD_D7
Text Label 3650 3100 0    60   ~ 0
SD_SCK
Text Label 9250 3700 0    60   ~ 0
SD_SCK
Text Label 9250 3600 0    60   ~ 0
SD_DO
Text Label 3650 3200 0    60   ~ 0
SD_DO
Text Label 9250 3500 0    60   ~ 0
SD_DI
Text Label 2650 3200 0    60   ~ 0
LCD_DI
Text Label 9250 3400 0    60   ~ 0
SD_SS
Text Label 6450 5650 0    60   ~ 0
SD_SS
Text Label 6650 2250 0    60   ~ 0
5V
Text Label 9250 3300 0    60   ~ 0
GND
Text Label 9250 3200 0    60   ~ 0
5V
Text Label 8350 2650 0    60   ~ 0
5V
Text Label 8700 2800 0    60   ~ 0
GND
$Comp
L GND #PWR03
U 1 1 57BB4855
P 7650 6100
F 0 "#PWR03" H 7650 5850 50  0001 C CNN
F 1 "GND" H 7650 5950 50  0000 C CNN
F 2 "" H 7650 6100 50  0000 C CNN
F 3 "" H 7650 6100 50  0000 C CNN
	1    7650 6100
	1    0    0    -1  
$EndComp
Text Label 4050 6200 3    60   ~ 0
12V
$Comp
L UNL2003 U1
U 1 1 57BB5592
P 2900 5650
F 0 "U1" H 3100 5850 60  0000 C CNN
F 1 "UNL2003" H 3300 4650 60  0000 C CNN
F 2 "Housings_DIP:DIP-16_W7.62mm" H 3100 5650 60  0001 C CNN
F 3 "" H 3100 5650 60  0001 C CNN
	1    2900 5650
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR04
U 1 1 57BAF102
P 4250 6850
F 0 "#PWR04" H 4250 6600 50  0001 C CNN
F 1 "GND" H 4250 6700 50  0000 C CNN
F 2 "" H 4250 6850 50  0000 C CNN
F 3 "" H 4250 6850 50  0000 C CNN
	1    4250 6850
	1    0    0    -1  
$EndComp
NoConn ~ 3900 6050
NoConn ~ 3900 6150
NoConn ~ 3900 6250
NoConn ~ 3900 6350
NoConn ~ 2800 6050
NoConn ~ 2800 6150
NoConn ~ 2800 6250
NoConn ~ 2800 6350
NoConn ~ 3350 7350
NoConn ~ 3450 7350
NoConn ~ 3850 7350
NoConn ~ 3950 7350
NoConn ~ 4050 7350
Text Label 2500 5750 0    60   ~ 0
RGB_R
Text Label 2500 5850 0    60   ~ 0
RGB_G
Text Label 2500 5950 0    60   ~ 0
RGB_B
Text Label 3150 7200 0    60   ~ 0
RGB_R
Text Label 3550 7150 0    60   ~ 0
RGB_G
Text Label 3700 7000 0    60   ~ 0
RGB_B
NoConn ~ 1750 7400
NoConn ~ 1850 7400
NoConn ~ 1950 7400
NoConn ~ 2050 7400
NoConn ~ 2150 7400
NoConn ~ 2250 7400
NoConn ~ 2350 7400
NoConn ~ 2450 7400
$Comp
L CONN_01X09 P2
U 1 1 57BB1CDC
P 3000 1850
F 0 "P2" H 3000 2350 50  0000 C CNN
F 1 "KEY_INPUT" V 3100 1850 50  0000 C CNN
F 2 "Connectors_Molex:Molex_PicoBlade_53047-0910" H 3000 1850 50  0001 C CNN
F 3 "" H 3000 1850 50  0000 C CNN
	1    3000 1850
	1    0    0    -1  
$EndComp
Text Label 2250 3900 0    60   ~ 0
KEY_INPUT1
Text Label 3600 3900 0    60   ~ 0
KEY_INPUT2
Text Label 2050 1450 0    60   ~ 0
KEY_INPUT1
Text Label 2050 1550 0    60   ~ 0
KEY_INPUT2
Text Label 2250 4000 0    60   ~ 0
KEY_INPUT3
Text Label 2050 1650 0    60   ~ 0
KEY_INPUT3
Text Label 3600 4000 0    60   ~ 0
KEY_INPUT4
Text Label 2050 1750 0    60   ~ 0
KEY_INPUT4
Text Label 2250 4100 0    60   ~ 0
KEY_INPUT5
Text Label 2150 1850 0    60   ~ 0
KEY_INPUT5
Text Label 3600 4100 0    60   ~ 0
KEY_INPUT6
Text Label 2200 1950 0    60   ~ 0
KEY_INPUT6
Text Label 2250 4200 0    60   ~ 0
KEY_INPUT7
NoConn ~ 3550 4200
Text Label 2400 2150 0    60   ~ 0
5V
$Comp
L GND #PWR05
U 1 1 57BB54AF
P 2700 2550
F 0 "#PWR05" H 2700 2300 50  0001 C CNN
F 1 "GND" H 2700 2400 50  0000 C CNN
F 2 "" H 2700 2550 50  0000 C CNN
F 3 "" H 2700 2550 50  0000 C CNN
	1    2700 2550
	1    0    0    -1  
$EndComp
NoConn ~ 3050 3000
NoConn ~ 3550 3000
NoConn ~ 3050 3100
NoConn ~ 3050 3300
NoConn ~ 3050 3400
NoConn ~ 3050 3500
NoConn ~ 3050 3600
NoConn ~ 3050 3700
NoConn ~ 3050 3800
NoConn ~ 3550 3300
NoConn ~ 3550 3400
NoConn ~ 3550 3500
NoConn ~ 3550 3600
NoConn ~ 3550 3700
NoConn ~ 3550 3800
Text Label 6700 5850 0    60   ~ 0
HEATER_ON_OFF
NoConn ~ 6200 6000
NoConn ~ 6300 6000
NoConn ~ 6600 6000
NoConn ~ 6700 6000
NoConn ~ 6800 6000
NoConn ~ 6900 6000
NoConn ~ 7000 6000
NoConn ~ 7100 6000
Text Label 4200 1050 0    60   ~ 0
5V
$Comp
L R R1
U 1 1 57BB9F46
P 4700 1350
F 0 "R1" V 4600 1350 50  0000 C CNN
F 1 "15K" V 4700 1350 50  0000 C CNN
F 2 "Resistors_ThroughHole:Resistor_Horizontal_RM7mm" V 4630 1350 50  0001 C CNN
F 3 "" H 4700 1350 50  0000 C CNN
	1    4700 1350
	0    -1   -1   0   
$EndComp
Wire Wire Line
	7650 1950 7900 1950
Wire Wire Line
	6500 2150 6500 2300
Connection ~ 7900 2050
Wire Wire Line
	6800 2150 6800 2400
Wire Wire Line
	6800 2400 8600 2400
Wire Wire Line
	8600 2400 8600 3200
Wire Wire Line
	6700 2150 6700 2250
Wire Wire Line
	6700 2250 7650 2250
Wire Wire Line
	7650 1950 7650 2650
Wire Wire Line
	6600 2150 6600 2300
Wire Wire Line
	6600 2300 7700 2300
Wire Wire Line
	7700 2050 7700 2700
Wire Wire Line
	7700 2050 7900 2050
Wire Wire Line
	7900 2050 7900 2200
Wire Wire Line
	5950 2150 5950 2800
Wire Wire Line
	5950 2800 8150 2800
Wire Wire Line
	8150 2800 8150 3300
Wire Wire Line
	8150 3300 8600 3300
Wire Wire Line
	5850 2150 5850 2850
Wire Wire Line
	5850 2850 8100 2850
Wire Wire Line
	8100 2850 8100 3400
Wire Wire Line
	8100 3400 8600 3400
Wire Wire Line
	5750 2150 5750 2900
Wire Wire Line
	5750 2900 8050 2900
Wire Wire Line
	8050 2900 8050 3500
Wire Wire Line
	8050 3500 8600 3500
Wire Wire Line
	5650 2150 5650 2950
Wire Wire Line
	5650 2950 8000 2950
Wire Wire Line
	8000 2950 8000 3600
Wire Wire Line
	8000 3600 8600 3600
Wire Wire Line
	5550 2150 5550 3000
Wire Wire Line
	5550 3000 7950 3000
Wire Wire Line
	7950 3000 7950 3700
Wire Wire Line
	7950 3700 8600 3700
Wire Wire Line
	3550 4600 7950 4600
Wire Wire Line
	7950 4600 7950 3800
Wire Wire Line
	7950 3800 8600 3800
Wire Wire Line
	3050 4600 2950 4600
Wire Wire Line
	2950 4600 2950 4850
Wire Wire Line
	2950 4850 3650 4850
Wire Wire Line
	3650 4850 3650 4650
Wire Wire Line
	3650 4650 8000 4650
Wire Wire Line
	8000 4650 8000 3900
Wire Wire Line
	8000 3900 8600 3900
Wire Wire Line
	3550 4500 7850 4500
Wire Wire Line
	7850 4500 7850 4000
Wire Wire Line
	7850 4000 8600 4000
Wire Wire Line
	3050 4500 2900 4500
Wire Wire Line
	2900 4500 2900 4900
Wire Wire Line
	2900 4900 8050 4900
Wire Wire Line
	8050 4900 8050 4100
Wire Wire Line
	8050 4100 8600 4100
Wire Wire Line
	3550 4400 9700 4400
Wire Wire Line
	9700 4400 9700 4100
Wire Wire Line
	9700 4100 9100 4100
Wire Wire Line
	3050 4400 2400 4400
Wire Wire Line
	2400 4400 2400 4950
Wire Wire Line
	2400 4950 9750 4950
Wire Wire Line
	9750 4950 9750 4000
Wire Wire Line
	9750 4000 9100 4000
Wire Wire Line
	3550 4300 9800 4300
Wire Wire Line
	9800 4300 9800 3900
Wire Wire Line
	9800 3900 9100 3900
Wire Wire Line
	3050 4300 2350 4300
Wire Wire Line
	2350 4300 2350 5050
Wire Wire Line
	2350 5050 9850 5050
Wire Wire Line
	9850 5050 9850 3800
Wire Wire Line
	9850 3800 9100 3800
Wire Wire Line
	3550 3100 6800 3100
Wire Wire Line
	6800 3100 6800 5250
Wire Wire Line
	6800 5250 9950 5250
Wire Wire Line
	9950 5250 9950 3700
Wire Wire Line
	9950 3700 9100 3700
Wire Wire Line
	3550 3200 6700 3200
Wire Wire Line
	6700 3200 6700 5350
Wire Wire Line
	6700 5350 10050 5350
Wire Wire Line
	10050 5350 10050 3600
Wire Wire Line
	10050 3600 9100 3600
Wire Wire Line
	3050 3200 2550 3200
Wire Wire Line
	2550 3200 2550 2850
Wire Wire Line
	2550 2850 4100 2850
Wire Wire Line
	4100 2850 4100 3300
Wire Wire Line
	4100 3300 6600 3300
Wire Wire Line
	6600 3300 6600 5450
Wire Wire Line
	6600 5450 10150 5450
Wire Wire Line
	10150 5450 10150 3500
Wire Wire Line
	10150 3500 9100 3500
Wire Wire Line
	6400 6000 6400 5650
Wire Wire Line
	6400 5650 10550 5650
Wire Wire Line
	10550 5650 10550 3400
Wire Wire Line
	10550 3400 9100 3400
Wire Wire Line
	7700 2700 10100 2700
Wire Wire Line
	10100 2700 10100 3300
Wire Wire Line
	10100 3300 9100 3300
Connection ~ 7700 2300
Wire Wire Line
	7650 2650 10050 2650
Wire Wire Line
	10050 2650 10050 3200
Wire Wire Line
	10050 3200 9100 3200
Connection ~ 7650 2250
Wire Wire Line
	6500 6000 6500 5850
Wire Wire Line
	6500 5850 7650 5850
Wire Wire Line
	4050 6050 4050 6550
Wire Wire Line
	4050 5750 3900 5750
Wire Wire Line
	4050 5850 3900 5850
Wire Wire Line
	4050 5950 3900 5950
Wire Wire Line
	3900 6450 3900 6550
Wire Wire Line
	3900 6550 4250 6550
Connection ~ 4050 6550
Wire Wire Line
	4250 6650 4250 6850
Wire Wire Line
	2800 6450 2800 6750
Wire Wire Line
	2800 6750 4250 6750
Connection ~ 4250 6750
Wire Wire Line
	2800 5750 2500 5750
Wire Wire Line
	2500 5750 2500 7100
Wire Wire Line
	2500 7100 3550 7100
Wire Wire Line
	3550 7100 3550 7350
Wire Wire Line
	2800 5850 2550 5850
Wire Wire Line
	2550 5850 2550 7050
Wire Wire Line
	2550 7050 3650 7050
Wire Wire Line
	3650 7050 3650 7350
Wire Wire Line
	2800 5950 2600 5950
Wire Wire Line
	2600 5950 2600 7000
Wire Wire Line
	2600 7000 3750 7000
Wire Wire Line
	3750 7000 3750 7350
Wire Wire Line
	3050 3900 1900 3900
Wire Wire Line
	1900 3900 1900 1450
Wire Wire Line
	1900 1450 2800 1450
Wire Wire Line
	3550 3900 4650 3900
Wire Wire Line
	4650 3900 4650 2350
Wire Wire Line
	4650 2350 1950 2350
Wire Wire Line
	1950 2350 1950 1550
Wire Wire Line
	1950 1550 2800 1550
Wire Wire Line
	3050 4000 2050 4000
Wire Wire Line
	2050 4000 2050 1650
Wire Wire Line
	2050 1650 2800 1650
Wire Wire Line
	3550 4000 4700 4000
Wire Wire Line
	4700 4000 4700 2400
Wire Wire Line
	4700 2400 2100 2400
Wire Wire Line
	2100 2400 2100 1750
Wire Wire Line
	2100 1750 2800 1750
Wire Wire Line
	3050 4100 2150 4100
Wire Wire Line
	2150 4100 2150 1850
Wire Wire Line
	2150 1850 2800 1850
Wire Wire Line
	3550 4100 4750 4100
Wire Wire Line
	4750 4100 4750 2450
Wire Wire Line
	4750 2450 2200 2450
Wire Wire Line
	2200 2450 2200 1950
Wire Wire Line
	2200 1950 2800 1950
Wire Wire Line
	3050 4200 2250 4200
Wire Wire Line
	2250 4200 2250 2050
Wire Wire Line
	2250 2050 2800 2050
Wire Wire Line
	2800 2150 2400 2150
Wire Wire Line
	2700 2550 2700 2250
Wire Wire Line
	2700 2250 2800 2250
Wire Wire Line
	4000 1050 4450 1050
Wire Wire Line
	4000 1350 4550 1350
Wire Wire Line
	4350 1150 4000 1150
Wire Wire Line
	4350 800  4350 1150
Wire Wire Line
	4000 1250 5050 1250
Wire Wire Line
	4850 1350 5050 1350
Wire Wire Line
	5050 2300 4850 2300
Wire Wire Line
	4850 2300 4850 2150
NoConn ~ 4750 2150
NoConn ~ 4650 2150
NoConn ~ 4550 2150
NoConn ~ 4450 2150
NoConn ~ 4350 2150
NoConn ~ 4250 2150
NoConn ~ 4150 2150
NoConn ~ 4050 2150
NoConn ~ 3950 2150
$Comp
L C C2
U 1 1 57BBA6E5
P 4600 1050
F 0 "C2" V 4650 1150 50  0000 L CNN
F 1 "0.1uF" V 4700 900 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Rect_L7_W2.5_P5" H 4638 900 50  0001 C CNN
F 3 "" H 4600 1050 50  0000 C CNN
	1    4600 1050
	0    1    1    0   
$EndComp
Connection ~ 4350 1050
Wire Wire Line
	4750 1050 5300 1050
Wire Wire Line
	5300 1050 5300 1250
$Comp
L GND #PWR06
U 1 1 57BBA94C
P 5300 1250
F 0 "#PWR06" H 5300 1000 50  0001 C CNN
F 1 "GND" H 5300 1100 50  0000 C CNN
F 2 "" H 5300 1250 50  0000 C CNN
F 3 "" H 5300 1250 50  0000 C CNN
	1    5300 1250
	1    0    0    -1  
$EndComp
$Comp
L CP1 C1
U 1 1 57BBAA0D
P 4600 800
F 0 "C1" V 4650 900 50  0000 L CNN
F 1 "100uF" V 4650 500 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L11_P2" H 4600 800 50  0001 C CNN
F 3 "" H 4600 800 50  0000 C CNN
	1    4600 800 
	0    -1   -1   0   
$EndComp
Wire Wire Line
	5050 1250 5050 2300
Connection ~ 5050 1350
Wire Wire Line
	4450 800  4350 800 
Wire Wire Line
	4750 800  4900 800 
Wire Wire Line
	4900 800  4900 1050
Connection ~ 4900 1050
Wire Wire Line
	7650 5950 7650 6100
$Comp
L CONN_02X18 P3
U 1 1 57BAB2A6
P 3300 3850
F 0 "P3" H 3300 4800 50  0000 C CNN
F 1 "DIGITAL_PIN" V 3300 3850 50  0000 C CNN
F 2 "Pin_Headers:Pin_Header_Straight_2x18" H 3300 2800 50  0001 C CNN
F 3 "" H 3300 2800 50  0000 C CNN
	1    3300 3850
	-1   0    0    1   
$EndComp
$Comp
L CONN_01X02 P15
U 1 1 57BBFF5E
P 6350 1250
F 0 "P15" H 6350 1400 50  0000 C CNN
F 1 "TEMP_R_SET" V 6450 1250 50  0000 C CNN
F 2 "Resistors_ThroughHole:Resistor_Horizontal_RM10mm" H 6350 1250 50  0001 C CNN
F 3 "" H 6350 1250 50  0000 C CNN
	1    6350 1250
	1    0    0    -1  
$EndComp
Wire Wire Line
	5050 1550 5550 1550
Wire Wire Line
	5550 1550 5550 1200
Wire Wire Line
	5550 1200 6150 1200
Connection ~ 5050 1550
Wire Wire Line
	4400 1350 4400 1650
Wire Wire Line
	4250 1650 5700 1650
Wire Wire Line
	5700 1650 5700 1300
Wire Wire Line
	5700 1300 6150 1300
Connection ~ 4400 1350
$Comp
L GND #PWR07
U 1 1 57BC0B01
P 4250 1650
F 0 "#PWR07" H 4250 1400 50  0001 C CNN
F 1 "GND" H 4150 1650 50  0000 C CNN
F 2 "" H 4250 1650 50  0000 C CNN
F 3 "" H 4250 1650 50  0000 C CNN
	1    4250 1650
	1    0    0    -1  
$EndComp
Connection ~ 4400 1650
$EndSCHEMATC

newshield.sch

C/C++
EESchema Schematic File Version 2
LIBS:arduino_mega_shield
LIBS:power
LIBS:device
LIBS:transistors
LIBS:conn
LIBS:linear
LIBS:regul
LIBS:74xx
LIBS:cmos4000
LIBS:adc-dac
LIBS:memory
LIBS:xilinx
LIBS:microcontrollers
LIBS:dsp
LIBS:microchip
LIBS:analog_switches
LIBS:motorola
LIBS:texas
LIBS:intel
LIBS:audio
LIBS:interface
LIBS:digital-audio
LIBS:philips
LIBS:display
LIBS:cypress
LIBS:siliconi
LIBS:opto
LIBS:atmel
LIBS:contrib
LIBS:valves
LIBS:unl2003
EELAYER 25 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 1
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L UNL2003 U1
U 1 1 57C3E2E7
P 8800 2900
F 0 "U1" H 9000 3100 60  0000 C CNN
F 1 "UNL2003" H 9200 1900 60  0000 C CNN
F 2 "" H 9000 2900 60  0001 C CNN
F 3 "" H 9000 2900 60  0001 C CNN
	1    8800 2900
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X09 P3
U 1 1 57C3E459
P 7100 5450
F 0 "P3" H 7100 5950 50  0000 C CNN
F 1 "KeyInput" V 7200 5450 50  0000 C CNN
F 2 "" H 7100 5450 50  0000 C CNN
F 3 "" H 7100 5450 50  0000 C CNN
	1    7100 5450
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR01
U 1 1 57C3EBAF
P 6900 6050
F 0 "#PWR01" H 6900 5800 50  0001 C CNN
F 1 "GND" H 6900 5900 50  0000 C CNN
F 2 "" H 6900 6050 50  0000 C CNN
F 3 "" H 6900 6050 50  0000 C CNN
	1    6900 6050
	1    0    0    -1  
$EndComp
NoConn ~ 6650 5750
Text GLabel 8700 3000 0    60   Input ~ 0
RGB_R
Text GLabel 8700 3100 0    60   Input ~ 0
RGB_G
Text GLabel 8700 3200 0    60   Input ~ 0
RGB_B
$Comp
L CONN_01X04 P6
U 1 1 57C4011C
P 10900 2650
F 0 "P6" H 10900 2900 50  0000 C CNN
F 1 "RGB_LED_OUT" V 11000 2650 50  0000 C CNN
F 2 "" H 10900 2650 50  0000 C CNN
F 3 "" H 10900 2650 50  0000 C CNN
	1    10900 2650
	1    0    0    -1  
$EndComp
NoConn ~ 8700 3600
$Comp
L CONN_01X02 P7
U 1 1 57C40616
P 10950 1100
F 0 "P7" H 10950 1250 50  0000 C CNN
F 1 "12V POWER" V 11050 1100 50  0000 C CNN
F 2 "" H 10950 1100 50  0000 C CNN
F 3 "" H 10950 1100 50  0000 C CNN
	1    10950 1100
	1    0    0    -1  
$EndComp
Text GLabel 10000 700  0    60   Input ~ 0
12V
Text GLabel 10050 1150 0    60   Input ~ 0
GND
Text GLabel 10450 4250 2    60   Input ~ 0
12V
$Comp
L GND #PWR02
U 1 1 57C40B70
P 10700 1350
F 0 "#PWR02" H 10700 1100 50  0001 C CNN
F 1 "GND" H 10700 1200 50  0000 C CNN
F 2 "" H 10700 1350 50  0000 C CNN
F 3 "" H 10700 1350 50  0000 C CNN
	1    10700 1350
	1    0    0    -1  
$EndComp
Text GLabel 7600 3750 2    60   Input ~ 0
+5V
$Comp
L GND #PWR03
U 1 1 57C41114
P 8700 3900
F 0 "#PWR03" H 8700 3650 50  0001 C CNN
F 1 "GND" H 8700 3750 50  0000 C CNN
F 2 "" H 8700 3900 50  0000 C CNN
F 3 "" H 8700 3900 50  0000 C CNN
	1    8700 3900
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR04
U 1 1 57C4121D
P 4250 4300
F 0 "#PWR04" H 4250 4050 50  0001 C CNN
F 1 "GND" H 4250 4150 50  0000 C CNN
F 2 "" H 4250 4300 50  0000 C CNN
F 3 "" H 4250 4300 50  0000 C CNN
	1    4250 4300
	1    0    0    -1  
$EndComp
$Comp
L CONN_02X10 P2
U 1 1 57C4153B
P 1400 6050
F 0 "P2" H 1400 6600 50  0000 C CNN
F 1 "TFT_LCD_CON" V 1400 6050 50  0000 C CNN
F 2 "" H 1400 4850 50  0000 C CNN
F 3 "" H 1400 4850 50  0000 C CNN
	1    1400 6050
	1    0    0    -1  
$EndComp
Text GLabel 1150 5700 0    60   Input ~ 0
LCD_RD
Text GLabel 1150 5800 0    60   Input ~ 0
LCD_WR
Text GLabel 1150 5900 0    60   Input ~ 0
LCD_RS
Text GLabel 1150 6000 0    60   Input ~ 0
LCD_CS
Text GLabel 1150 6100 0    60   Input ~ 0
LCD_RST
Text GLabel 1150 6200 0    60   Input ~ 0
LCD_D0
Text GLabel 1150 6300 0    60   Input ~ 0
LCD_D1
Text GLabel 1150 6400 0    60   Input ~ 0
LCD_D2
Text GLabel 1150 6500 0    60   Input ~ 0
LCD_D3
Text GLabel 1650 5800 2    60   Input ~ 0
SD_SS
Text GLabel 1650 5900 2    60   Input ~ 0
SD_DI
Text GLabel 1650 6000 2    60   Input ~ 0
SD_DO
Text GLabel 1650 6100 2    60   Input ~ 0
SD_SCK
Text GLabel 1650 6200 2    60   Input ~ 0
LCD_D7
Text GLabel 1650 6300 2    60   Input ~ 0
LCD_D6
Text GLabel 1650 6400 2    60   Input ~ 0
LCD_D5
Text GLabel 1650 6500 2    60   Input ~ 0
LCD_D4
Text GLabel 1650 5600 2    60   Input ~ 0
+5V
Text GLabel 1650 5700 2    60   Input ~ 0
GND
Text GLabel 1000 5600 0    60   Input ~ 0
3.3V
Text GLabel 4750 1900 0    60   Input ~ 0
GND
Text GLabel 4750 2000 0    60   Input ~ 0
GND
Text GLabel 3150 650  0    60   Input ~ 0
3.3V
Text GLabel 3800 750  0    60   Input ~ 0
+5V
NoConn ~ 4750 1600
NoConn ~ 4750 2100
$Comp
L CONN_01X02 P4
U 1 1 57C42689
P 9350 1000
F 0 "P4" H 9350 1150 50  0000 C CNN
F 1 "POWER 5V" V 9450 1000 50  0000 C CNN
F 2 "" H 9350 1000 50  0000 C CNN
F 3 "" H 9350 1000 50  0000 C CNN
	1    9350 1000
	1    0    0    -1  
$EndComp
Text GLabel 8500 650  0    60   Input ~ 0
+5V
Text GLabel 8600 1050 0    60   Input ~ 0
GND
$Comp
L CONN_01X02 P5
U 1 1 57C427DB
P 9100 6100
F 0 "P5" H 9100 6250 50  0000 C CNN
F 1 "SSR (Heater)" V 9200 6100 50  0000 C CNN
F 2 "" H 9100 6100 50  0000 C CNN
F 3 "" H 9100 6100 50  0000 C CNN
	1    9100 6100
	1    0    0    -1  
$EndComp
Text GLabel 8900 6150 0    60   Input ~ 0
GND
Text GLabel 6650 4200 2    60   Input ~ 0
LCD_D0
Text GLabel 6650 4300 2    60   Input ~ 0
LCD_D1
Text GLabel 6650 4400 2    60   Input ~ 0
LCD_D2
Text GLabel 6650 4500 2    60   Input ~ 0
LCD_D3
Text GLabel 6650 4600 2    60   Input ~ 0
LCD_D4
Text GLabel 6650 4700 2    60   Input ~ 0
LCD_D5
Text GLabel 6650 4800 2    60   Input ~ 0
LCD_D6
Text GLabel 6650 4900 2    60   Input ~ 0
LCD_D7
NoConn ~ 4750 5700
NoConn ~ 4750 5800
NoConn ~ 4750 5900
NoConn ~ 4750 6000
Text GLabel 4750 4400 0    60   Input ~ 0
SD_SS
Text GLabel 4750 4500 0    60   Input ~ 0
SD_SCK
Text GLabel 4750 4600 0    60   Input ~ 0
SD_DI
Text GLabel 4750 4700 0    60   Input ~ 0
SD_DO
Text GLabel 3000 2300 0    60   Input ~ 0
LCD_RD
Text GLabel 3000 2400 0    60   Input ~ 0
LCD_WR
Text GLabel 3000 2500 0    60   Input ~ 0
LCD_RS
Text GLabel 3000 2600 0    60   Input ~ 0
LCD_CS
Text GLabel 3000 2700 0    60   Input ~ 0
LCD_RST
$Comp
L +5V #PWR05
U 1 1 57C44E3C
P 1550 3000
F 0 "#PWR05" H 1550 2850 50  0001 C CNN
F 1 "+5V" H 1550 3140 50  0000 C CNN
F 2 "" H 1550 3000 50  0000 C CNN
F 3 "" H 1550 3000 50  0000 C CNN
	1    1550 3000
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X02 P1
U 1 1 57C44E60
P 1050 3300
F 0 "P1" H 1050 3450 50  0000 C CNN
F 1 "COOKER_TEMP_SENSOR" V 1150 3300 50  0000 C CNN
F 2 "" H 1050 3300 50  0000 C CNN
F 3 "" H 1050 3300 50  0000 C CNN
	1    1050 3300
	-1   0    0    1   
$EndComp
$Comp
L R R1
U 1 1 57C44EE4
P 1550 3600
F 0 "R1" V 1630 3600 50  0000 C CNN
F 1 "15K" V 1550 3600 50  0000 C CNN
F 2 "" V 1480 3600 50  0000 C CNN
F 3 "" H 1550 3600 50  0000 C CNN
	1    1550 3600
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR06
U 1 1 57C4505E
P 1550 3900
F 0 "#PWR06" H 1550 3650 50  0001 C CNN
F 1 "GND" H 1550 3750 50  0000 C CNN
F 2 "" H 1550 3900 50  0000 C CNN
F 3 "" H 1550 3900 50  0000 C CNN
	1    1550 3900
	1    0    0    -1  
$EndComp
$Comp
L C C1
U 1 1 57C450E8
P 2050 3650
F 0 "C1" H 2075 3750 50  0000 L CNN
F 1 "C" H 2075 3550 50  0000 L CNN
F 2 "" H 2088 3500 50  0000 C CNN
F 3 "" H 2050 3650 50  0000 C CNN
	1    2050 3650
	1    0    0    -1  
$EndComp
$Comp
L CP C2
U 1 1 57C4515B
P 2300 3650
F 0 "C2" H 2325 3750 50  0000 L CNN
F 1 "CP" H 2325 3550 50  0000 L CNN
F 2 "" H 2338 3500 50  0000 C CNN
F 3 "" H 2300 3650 50  0000 C CNN
	1    2300 3650
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR07
U 1 1 57C454BE
P 2200 3900
F 0 "#PWR07" H 2200 3650 50  0001 C CNN
F 1 "GND" H 2200 3750 50  0000 C CNN
F 2 "" H 2200 3900 50  0000 C CNN
F 3 "" H 2200 3900 50  0000 C CNN
	1    2200 3900
	1    0    0    -1  
$EndComp
$Comp
L CP C5
U 1 1 57C4B2CE
P 7400 4150
F 0 "C5" H 7425 4250 50  0000 L CNN
F 1 "CP" H 7425 4050 50  0000 L CNN
F 2 "" H 7438 4000 50  0000 C CNN
F 3 "" H 7400 4150 50  0000 C CNN
	1    7400 4150
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR08
U 1 1 57C4B4F0
P 7400 4400
F 0 "#PWR08" H 7400 4150 50  0001 C CNN
F 1 "GND" H 7400 4250 50  0000 C CNN
F 2 "" H 7400 4400 50  0000 C CNN
F 3 "" H 7400 4400 50  0000 C CNN
	1    7400 4400
	1    0    0    -1  
$EndComp
$Comp
L C C6
U 1 1 57C4B564
P 7700 4150
F 0 "C6" H 7725 4250 50  0000 L CNN
F 1 "C" H 7725 4050 50  0000 L CNN
F 2 "" H 7738 4000 50  0000 C CNN
F 3 "" H 7700 4150 50  0000 C CNN
	1    7700 4150
	1    0    0    -1  
$EndComp
$Comp
L C C3
U 1 1 57C4B938
P 6450 6450
F 0 "C3" H 6475 6550 50  0000 L CNN
F 1 "C" H 6475 6350 50  0000 L CNN
F 2 "" H 6488 6300 50  0000 C CNN
F 3 "" H 6450 6450 50  0000 C CNN
	1    6450 6450
	1    0    0    -1  
$EndComp
$Comp
L CP C4
U 1 1 57C4B993
P 6650 6450
F 0 "C4" H 6675 6550 50  0000 L CNN
F 1 "CP" H 6675 6350 50  0000 L CNN
F 2 "" H 6688 6300 50  0000 C CNN
F 3 "" H 6650 6450 50  0000 C CNN
	1    6650 6450
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR09
U 1 1 57C4BAF0
P 6450 6850
F 0 "#PWR09" H 6450 6600 50  0001 C CNN
F 1 "GND" H 6450 6700 50  0000 C CNN
F 2 "" H 6450 6850 50  0000 C CNN
F 3 "" H 6450 6850 50  0000 C CNN
	1    6450 6850
	1    0    0    -1  
$EndComp
$Comp
L CP C16
U 1 1 57C4C364
P 9900 4150
F 0 "C16" H 9925 4250 50  0000 L CNN
F 1 "CP" H 9925 4050 50  0000 L CNN
F 2 "" H 9938 4000 50  0000 C CNN
F 3 "" H 9900 4150 50  0000 C CNN
	1    9900 4150
	1    0    0    -1  
$EndComp
$Comp
L C C15
U 1 1 57C4C3BF
P 9650 4150
F 0 "C15" H 9675 4250 50  0000 L CNN
F 1 "C" H 9675 4050 50  0000 L CNN
F 2 "" H 9688 4000 50  0000 C CNN
F 3 "" H 9650 4150 50  0000 C CNN
	1    9650 4150
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR010
U 1 1 57C4C778
P 9650 4450
F 0 "#PWR010" H 9650 4200 50  0001 C CNN
F 1 "GND" H 9650 4300 50  0000 C CNN
F 2 "" H 9650 4450 50  0000 C CNN
F 3 "" H 9650 4450 50  0000 C CNN
	1    9650 4450
	1    0    0    -1  
$EndComp
$Comp
L C C14
U 1 1 57C4CA19
P 10550 950
F 0 "C14" H 10575 1050 50  0000 L CNN
F 1 "C" H 10575 850 50  0000 L CNN
F 2 "" H 10588 800 50  0000 C CNN
F 3 "" H 10550 950 50  0000 C CNN
	1    10550 950 
	1    0    0    -1  
$EndComp
$Comp
L CP C11
U 1 1 57C4CA72
P 10300 950
F 0 "C11" H 10325 1050 50  0000 L CNN
F 1 "CP" H 10325 850 50  0000 L CNN
F 2 "" H 10338 800 50  0000 C CNN
F 3 "" H 10300 950 50  0000 C CNN
	1    10300 950 
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR011
U 1 1 57C4E00E
P 8900 1200
F 0 "#PWR011" H 8900 950 50  0001 C CNN
F 1 "GND" H 8900 1050 50  0000 C CNN
F 2 "" H 8900 1200 50  0000 C CNN
F 3 "" H 8900 1200 50  0000 C CNN
	1    8900 1200
	1    0    0    -1  
$EndComp
$Comp
L CP C13
U 1 1 57C4E0BC
P 9000 850
F 0 "C13" H 9025 950 50  0000 L CNN
F 1 "CP" H 9025 750 50  0000 L CNN
F 2 "" H 9038 700 50  0000 C CNN
F 3 "" H 9000 850 50  0000 C CNN
	1    9000 850 
	1    0    0    -1  
$EndComp
$Comp
L C C12
U 1 1 57C4E12B
P 8800 850
F 0 "C12" H 8825 950 50  0000 L CNN
F 1 "C" H 8825 750 50  0000 L CNN
F 2 "" H 8838 700 50  0000 C CNN
F 3 "" H 8800 850 50  0000 C CNN
	1    8800 850 
	1    0    0    -1  
$EndComp
$Comp
L C C10
U 1 1 57C4F255
P 4050 1000
F 0 "C10" H 4075 1100 50  0000 L CNN
F 1 "C" H 4075 900 50  0000 L CNN
F 2 "" H 4088 850 50  0000 C CNN
F 3 "" H 4050 1000 50  0000 C CNN
	1    4050 1000
	1    0    0    -1  
$EndComp
$Comp
L CP C9
U 1 1 57C4F2B2
P 3850 1000
F 0 "C9" H 3875 1100 50  0000 L CNN
F 1 "CP" H 3875 900 50  0000 L CNN
F 2 "" H 3888 850 50  0000 C CNN
F 3 "" H 3850 1000 50  0000 C CNN
	1    3850 1000
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR012
U 1 1 57C4F552
P 3950 1250
F 0 "#PWR012" H 3950 1000 50  0001 C CNN
F 1 "GND" H 3950 1100 50  0000 C CNN
F 2 "" H 3950 1250 50  0000 C CNN
F 3 "" H 3950 1250 50  0000 C CNN
	1    3950 1250
	1    0    0    -1  
$EndComp
$Comp
L CP C7
U 1 1 57C4FDF2
P 3250 1050
F 0 "C7" H 3275 1150 50  0000 L CNN
F 1 "CP" H 3275 950 50  0000 L CNN
F 2 "" H 3288 900 50  0000 C CNN
F 3 "" H 3250 1050 50  0000 C CNN
	1    3250 1050
	1    0    0    -1  
$EndComp
$Comp
L C C8
U 1 1 57C4FE7D
P 3450 1050
F 0 "C8" H 3475 1150 50  0000 L CNN
F 1 "C" H 3475 950 50  0000 L CNN
F 2 "" H 3488 900 50  0000 C CNN
F 3 "" H 3450 1050 50  0000 C CNN
	1    3450 1050
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR013
U 1 1 57C50368
P 3350 1350
F 0 "#PWR013" H 3350 1100 50  0001 C CNN
F 1 "GND" H 3350 1200 50  0000 C CNN
F 2 "" H 3350 1350 50  0000 C CNN
F 3 "" H 3350 1350 50  0000 C CNN
	1    3350 1350
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X08 P8
U 1 1 57C526FC
P 7000 3350
F 0 "P8" H 7000 3800 50  0000 C CNN
F 1 "COMMUNICATION" V 7100 3350 50  0000 C CNN
F 2 "" H 7000 3350 50  0000 C CNN
F 3 "" H 7000 3350 50  0000 C CNN
	1    7000 3350
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X08 P9
U 1 1 57C53A4B
P 7900 2450
F 0 "P9" H 7900 2900 50  0000 C CNN
F 1 "PWM1" V 8000 2450 50  0000 C CNN
F 2 "" H 7900 2450 50  0000 C CNN
F 3 "" H 7900 2450 50  0000 C CNN
	1    7900 2450
	1    0    0    -1  
$EndComp
Text Label 6900 2400 0    60   ~ 0
RGB_B
Text Label 6900 2500 0    60   ~ 0
RGB_G
Text Label 6900 2600 0    60   ~ 0
RGB_R
Text GLabel 8350 2500 2    60   Input ~ 0
RGB_R
Text GLabel 8350 2400 2    60   Input ~ 0
RGB_G
Text GLabel 8350 2300 2    60   Input ~ 0
RGB_B
$Comp
L CONN_01X08 P13
U 1 1 57C55E3B
P 7450 1550
F 0 "P13" H 7450 2000 50  0000 C CNN
F 1 "PWM2" V 7550 1550 50  0000 C CNN
F 2 "" H 7450 1550 50  0000 C CNN
F 3 "" H 7450 1550 50  0000 C CNN
	1    7450 1550
	1    0    0    -1  
$EndComp
Text Label 6750 1300 0    60   ~ 0
GND
Text Label 6750 1700 0    60   ~ 0
SD_SS
$Comp
L ARDUINO_MEGA_SHIELD SHIELD1
U 1 1 57C3CA3C
P 5750 3550
F 0 "SHIELD1" H 5350 6050 60  0000 C CNN
F 1 "ARDUINO_MEGA_SHIELD" H 5650 850 60  0000 C CNN
F 2 "" H 5750 3550 60  0001 C CNN
F 3 "" H 5750 3550 60  0001 C CNN
	1    5750 3550
	1    0    0    -1  
$EndComp
Text GLabel 4750 1800 0    60   Input ~ 0
+5V
$Comp
L CONN_01X08 P11
U 1 1 57C59FB4
P 3900 2650
F 0 "P11" H 3900 3100 50  0000 C CNN
F 1 "ANALOG INPUT1" V 4000 2650 50  0000 C CNN
F 2 "" H 3900 2650 50  0000 C CNN
F 3 "" H 3900 2650 50  0000 C CNN
	1    3900 2650
	-1   0    0    -1  
$EndComp
Text Label 4250 2300 0    60   ~ 0
LCD_RD
Text Label 3250 2300 0    60   ~ 0
LCD_RD
Text Label 4250 2400 0    60   ~ 0
LCD_WR
Text Label 3250 2400 0    60   ~ 0
LCD_WR
Text Label 4250 2500 0    60   ~ 0
LCD_RS
Text Label 3250 2500 0    60   ~ 0
LCD_RS
Text Label 4250 2600 0    60   ~ 0
LCD_CS
Text Label 3250 2600 0    60   ~ 0
LCD_CS
Text Label 4250 2700 0    60   ~ 0
LCD_RST
Text Label 3200 2700 0    60   ~ 0
LCD_RST
$Comp
L CONN_01X08 P10
U 1 1 57C5C16E
P 3800 3550
F 0 "P10" H 3800 4000 50  0000 C CNN
F 1 "ANALOG INPUT2" V 3900 3550 50  0000 C CNN
F 2 "" H 3800 3550 50  0000 C CNN
F 3 "" H 3800 3550 50  0000 C CNN
	1    3800 3550
	-1   0    0    -1  
$EndComp
Text Label 4050 3200 0    60   ~ 0
TEMP_SENSOR
$Comp
L CONN_01X08 P12
U 1 1 57C62DD4
P 4150 5200
F 0 "P12" H 4150 5650 50  0000 C CNN
F 1 "PL0 - PL7" V 4250 5200 50  0000 C CNN
F 2 "" H 4150 5200 50  0000 C CNN
F 3 "" H 4150 5200 50  0000 C CNN
	1    4150 5200
	-1   0    0    -1  
$EndComp
Text Label 6900 2300 0    60   ~ 0
PWM5
Text Label 6900 2200 0    60   ~ 0
PWM6
Text Label 6900 2100 0    60   ~ 0
PWM7
Text Label 8000 3300 0    60   ~ 0
PWM5
Text Label 8000 3400 0    60   ~ 0
PWM6
Text Label 8000 3500 0    60   ~ 0
PWM7
$Comp
L CONN_01X08 P14
U 1 1 57C6C02C
P 10550 3350
F 0 "P14" H 10550 3800 50  0000 C CNN
F 1 "UNL2003_OUT" V 10650 3350 50  0000 C CNN
F 2 "" H 10550 3350 50  0000 C CNN
F 3 "" H 10550 3350 50  0000 C CNN
	1    10550 3350
	1    0    0    -1  
$EndComp
Text Label 9800 3000 0    60   ~ 0
RGB_R_OUT
Text Label 9800 3100 0    60   ~ 0
RGB_G_OUT
Text Label 9800 3200 0    60   ~ 0
RGB_B_OUT
Text Label 10100 3700 0    60   ~ 0
GND
Text Label 10250 2500 0    60   ~ 0
RGB_R_OUT
Text Label 10250 2600 0    60   ~ 0
RGB_G_OUT
Text Label 10250 2700 0    60   ~ 0
RGB_B_OUT
Text Label 10250 2800 0    60   ~ 0
12V
Text Label 6650 1600 0    60   ~ 0
SSR_CONTROL
Text Label 2400 3350 0    60   ~ 0
TEMP_SENSOR
Text Label 10200 4250 0    60   ~ 0
12V
Text Label 10050 700  0    60   ~ 0
12V
Text Label 8100 6050 0    60   ~ 0
SSR_CONTROL
Text Label 6500 6200 0    60   ~ 0
+5V
$Comp
L +5V #PWR014
U 1 1 57C7EAB0
P 7200 3850
F 0 "#PWR014" H 7200 3700 50  0001 C CNN
F 1 "+5V" H 7200 3990 50  0000 C CNN
F 2 "" H 7200 3850 50  0000 C CNN
F 3 "" H 7200 3850 50  0000 C CNN
	1    7200 3850
	1    0    0    -1  
$EndComp
Text Label 4100 1700 0    60   ~ 0
3.3V
$Comp
L +3.3V #PWR015
U 1 1 57C83095
P 2750 850
F 0 "#PWR015" H 2750 700 50  0001 C CNN
F 1 "+3.3V" H 2750 990 50  0000 C CNN
F 2 "" H 2750 850 50  0000 C CNN
F 3 "" H 2750 850 50  0000 C CNN
	1    2750 850 
	1    0    0    -1  
$EndComp
Wire Wire Line
	6650 5050 6900 5050
Wire Wire Line
	6650 5150 6900 5150
Wire Wire Line
	6650 5250 6900 5250
Wire Wire Line
	6650 5350 6900 5350
Wire Wire Line
	6650 5450 6900 5450
Wire Wire Line
	6650 5550 6900 5550
Wire Wire Line
	6650 5650 6900 5650
Wire Wire Line
	6750 5750 6900 5750
Wire Wire Line
	6900 6050 6900 5850
Wire Wire Line
	9800 3000 10350 3000
Wire Wire Line
	9800 3100 10350 3100
Wire Wire Line
	9800 3200 10350 3200
Wire Wire Line
	8700 3700 8700 3900
Wire Wire Line
	10050 1150 10750 1150
Wire Wire Line
	10700 1350 10700 1150
Connection ~ 10700 1150
Wire Wire Line
	4250 4250 4750 4250
Wire Wire Line
	4250 4150 4250 4300
Wire Wire Line
	4250 4150 4750 4150
Connection ~ 4250 4250
Wire Wire Line
	1550 3000 1550 3250
Wire Wire Line
	1250 3250 2300 3250
Wire Wire Line
	1250 3350 3050 3350
Wire Wire Line
	1550 3350 1550 3450
Connection ~ 1550 3350
Wire Wire Line
	1550 3750 1550 3900
Wire Wire Line
	2050 3250 2050 3500
Connection ~ 1550 3250
Wire Wire Line
	2300 3250 2300 3500
Connection ~ 2050 3250
Wire Wire Line
	2050 3800 2300 3800
Wire Wire Line
	2200 3900 2200 3800
Connection ~ 2200 3800
Wire Wire Line
	3150 650  3450 650 
Connection ~ 1550 3000
Wire Wire Line
	1150 5600 1000 5600
Wire Wire Line
	3800 750  4050 750 
Connection ~ 8700 3900
Wire Wire Line
	6650 3950 7700 3950
Wire Wire Line
	7400 3750 7400 4000
Wire Wire Line
	7600 3750 7400 3750
Connection ~ 7400 3950
Wire Wire Line
	6650 4050 6750 4050
Wire Wire Line
	6750 4050 6750 3950
Connection ~ 6750 3950
Wire Wire Line
	7400 4300 7400 4400
Wire Wire Line
	7700 3950 7700 4000
Wire Wire Line
	7700 4300 7700 4350
Wire Wire Line
	7700 4350 7400 4350
Connection ~ 7400 4350
Wire Wire Line
	6750 5750 6750 5850
Wire Wire Line
	6750 5850 6450 5850
Wire Wire Line
	6450 5850 6450 6300
Wire Wire Line
	6650 6300 6650 6200
Wire Wire Line
	6650 6200 6450 6200
Connection ~ 6450 6200
Wire Wire Line
	6450 6600 6450 6850
Wire Wire Line
	9900 3700 9900 4000
Wire Wire Line
	9650 3900 9650 4000
Connection ~ 9900 3900
Wire Wire Line
	9900 4300 9900 4400
Wire Wire Line
	9900 4400 9650 4400
Wire Wire Line
	9650 4300 9650 4450
Connection ~ 9650 4400
Wire Wire Line
	10000 700  10750 700 
Wire Wire Line
	10750 700  10750 1050
Wire Wire Line
	10300 700  10300 800 
Connection ~ 10300 700 
Wire Wire Line
	10550 800  10550 700 
Connection ~ 10550 700 
Wire Wire Line
	10550 1100 10550 1150
Connection ~ 10550 1150
Wire Wire Line
	10300 1100 10300 1150
Connection ~ 10300 1150
Wire Wire Line
	8600 1050 9150 1050
Wire Wire Line
	8500 650  9150 650 
Wire Wire Line
	9150 650  9150 950 
Wire Wire Line
	8900 1050 8900 1200
Connection ~ 8900 1050
Wire Wire Line
	8800 1000 8800 1050
Connection ~ 8800 1050
Wire Wire Line
	9000 1000 9000 1050
Connection ~ 9000 1050
Wire Wire Line
	9000 700  9000 650 
Connection ~ 9000 650 
Wire Wire Line
	8800 700  8800 650 
Connection ~ 8800 650 
Wire Wire Line
	3850 850  4050 850 
Wire Wire Line
	4050 850  4050 750 
Connection ~ 4050 750 
Wire Wire Line
	3850 1150 3850 1200
Wire Wire Line
	3850 1200 4050 1200
Wire Wire Line
	4050 1200 4050 1150
Wire Wire Line
	3950 1250 3950 1200
Connection ~ 3950 1200
Wire Wire Line
	3450 650  3450 900 
Connection ~ 3450 650 
Wire Wire Line
	3250 850  3250 900 
Connection ~ 3450 850 
Wire Wire Line
	3250 1200 3250 1300
Wire Wire Line
	3250 1300 3450 1300
Wire Wire Line
	3450 1300 3450 1200
Wire Wire Line
	3350 1350 3350 1300
Connection ~ 3350 1300
Wire Wire Line
	6650 3000 6800 3000
Wire Wire Line
	6650 3100 6800 3100
Wire Wire Line
	6650 3200 6800 3200
Wire Wire Line
	6650 3300 6800 3300
Wire Wire Line
	6650 3400 6800 3400
Wire Wire Line
	6650 3500 6800 3500
Wire Wire Line
	6650 3600 6800 3600
Wire Wire Line
	6650 3700 6800 3700
Wire Wire Line
	6650 2100 7700 2100
Wire Wire Line
	6650 2200 7700 2200
Wire Wire Line
	6650 2300 7700 2300
Wire Wire Line
	6650 2400 7700 2400
Wire Wire Line
	6650 2500 7700 2500
Wire Wire Line
	6650 2600 7700 2600
Wire Wire Line
	6650 2700 7700 2700
Wire Wire Line
	6650 2800 7700 2800
Connection ~ 7650 2600
Connection ~ 7600 2500
Connection ~ 7550 2400
Wire Wire Line
	7550 1850 8350 1850
Wire Wire Line
	7600 1900 8300 1900
Wire Wire Line
	8300 2400 8350 2400
Wire Wire Line
	7650 1950 8250 1950
Wire Wire Line
	8250 2500 8350 2500
Wire Wire Line
	7650 2600 7650 1950
Wire Wire Line
	8350 1850 8350 2300
Wire Wire Line
	8300 1900 8300 2400
Wire Wire Line
	8250 1950 8250 2500
Wire Wire Line
...

This file has been truncated, please download it to see its full contents.

unl2003.lib

C/C++
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# UNL2003
#
DEF UNL2003 U 0 40 Y Y 1 F N
F0 "U" 200 200 60 H V C CNN
F1 "UNL2003" 400 -1000 60 H V C CNN
F2 "" 200 0 60 H I C CNN
F3 "" 200 0 60 H I C CNN
DRAW
S 100 100 800 -900 0 1 0 N
P 4 0 1 0 400 100 400 0 500 0 500 100 N
X IN1 1 -100 -100 200 R 50 50 1 1 I
X IN2 2 -100 -200 200 R 50 50 1 1 I
X IN3 3 -100 -300 200 R 50 50 1 1 I
X IN4 4 -100 -400 200 R 50 50 1 1 I
X IN5 5 -100 -500 200 R 50 50 1 1 I
X IN6 6 -100 -600 200 R 50 50 1 1 I
X IN7 7 -100 -700 200 R 50 50 1 1 I
X GND 8 -100 -800 200 R 50 50 1 1 I
X VCC 9 1000 -800 200 L 50 50 1 1 I
X OUT7 10 1000 -700 200 L 50 50 1 1 O
X OUT6 11 1000 -600 200 L 50 50 1 1 O
X OUT5 12 1000 -500 200 L 50 50 1 1 O
X OUT4 13 1000 -400 200 L 50 50 1 1 O
X OUT3 14 1000 -300 200 L 50 50 1 1 O
X OUT2 15 1000 -200 200 L 50 50 1 1 O
X OUT1 16 1000 -100 200 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
#End Library

arduino_mega_shield.lib

C/C++
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# ARDUINO_MEGA_SHIELD
#
DEF ARDUINO_MEGA_SHIELD SHIELD 0 40 Y Y 1 F N
F0 "SHIELD" -400 2500 60 H V C CNN
F1 "ARDUINO_MEGA_SHIELD" -100 -2700 60 H V C CNN
F2 "" 0 0 60 H I C CNN
F3 "" 0 0 60 H I C CNN
DRAW
T 0 0 750 60 0 0 0 Arduino Normal 0 C C
T 0 0 650 60 0 0 0 MEGA Normal 0 C C
S -700 -2600 600 2450 0 1 0 N
P 3 0 1 0 -600 700 500 700 500 700 N
X RX0 0 900 750 300 L 50 50 1 1 B
X TX0 1 900 850 300 L 50 50 1 1 B
X 2 2 900 950 300 L 50 50 1 1 B
X 3 3 900 1050 300 L 50 50 1 1 B
X 4 4 900 1150 300 L 50 50 1 1 B
X 5 5 900 1250 300 L 50 50 1 1 B
X 6 6 900 1350 300 L 50 50 1 1 B
X 7 7 900 1450 300 L 50 50 1 1 B
X 8 8 900 1650 300 L 50 50 1 1 B
X 9 9 900 1750 300 L 50 50 1 1 B
X 10 10 900 1850 300 L 50 50 1 1 B
X SDA 20 900 -50 300 L 50 50 1 1 B
X PC7 30 900 -1500 300 L 50 50 1 1 B
X PG1 40 -1000 -2250 300 R 50 50 1 1 B
X PB3_(MISO) 50 -1000 -1150 300 R 50 50 1 1 B
X 11 11 900 1950 300 L 50 50 1 1 B
X SCL 21 900 -150 300 L 50 50 1 1 B
X PC6 31 900 -1600 300 L 50 50 1 1 B
X PG0 41 -1000 -2150 300 R 50 50 1 1 B
X PB2_(MOSI) 51 -1000 -1050 300 R 50 50 1 1 B
X 12 12 900 2050 300 L 50 50 1 1 B
X PA0 22 900 -650 300 L 50 50 1 1 B
X PC5 32 900 -1700 300 L 50 50 1 1 B
X PL7 42 -1000 -2000 300 R 50 50 1 1 B
X PB1_(SCK) 52 -1000 -950 300 R 50 50 1 1 B
X 13 13 900 2150 300 L 50 50 1 1 B
X PA1 23 900 -750 300 L 50 50 1 1 B
X PC4 33 900 -1800 300 L 50 50 1 1 B
X PL6 43 -1000 -1900 300 R 50 50 1 1 B
X PB0_(SS) 53 -1000 -850 300 R 50 50 1 1 B
X TX3 14 900 550 300 L 50 50 1 1 B
X PA2 24 900 -850 300 L 50 50 1 1 B
X PC3 34 900 -1900 300 L 50 50 1 1 B
X PL5 44 -1000 -1800 300 R 50 50 1 1 B
X RX3 15 900 450 300 L 50 50 1 1 B
X PA3 25 900 -950 300 L 50 50 1 1 B
X PC2 35 900 -2000 300 L 50 50 1 1 B
X PL4 45 -1000 -1700 300 R 50 50 1 1 B
X TX2 16 900 350 300 L 50 50 1 1 B
X PA4 26 900 -1050 300 L 50 50 1 1 B
X PC1 36 900 -2100 300 L 50 50 1 1 B
X PL3 46 -1000 -1600 300 R 50 50 1 1 B
X RX2 17 900 250 300 L 50 50 1 1 B
X PA5 27 900 -1150 300 L 50 50 1 1 B
X PC0 37 900 -2200 300 L 50 50 1 1 B
X PL2 47 -1000 -1500 300 R 50 50 1 1 B
X TX1 18 900 150 300 L 50 50 1 1 B
X PA6 28 900 -1250 300 L 50 50 1 1 B
X PD7 38 -1000 -2450 300 R 50 50 1 1 B
X PL1 48 -1000 -1400 300 R 50 50 1 1 B
X RX1 19 900 50 300 L 50 50 1 1 B
X PA7 29 900 -1350 300 L 50 50 1 1 B
X PG2 39 -1000 -2350 300 R 50 50 1 1 B
X PL0 49 -1000 -1300 300 R 50 50 1 1 B
X 5V 5V -1000 1750 300 R 50 50 1 1 W
X AD0 AD0 -1000 1250 300 R 50 50 1 1 B
X AD1 AD1 -1000 1150 300 R 50 50 1 1 B
X AD2 AD2 -1000 1050 300 R 50 50 1 1 B
X AD3 AD3 -1000 950 300 R 50 50 1 1 B
X 3V3 3V3 -1000 1850 300 R 50 50 1 1 W
X AD4 AD4 -1000 850 300 R 50 50 1 1 B
X AD5 AD5 -1000 750 300 R 50 50 1 1 B
X AD6 AD6 -1000 650 300 R 50 50 1 1 B
X AD7 AD7 -1000 550 300 R 50 50 1 1 B
X AD8 AD8 -1000 350 300 R 50 50 1 1 B
X AD9 AD9 -1000 250 300 R 50 50 1 1 B
X RST RST -1000 1950 300 R 50 50 1 1 I
X AD10 AD10 -1000 150 300 R 50 50 1 1 B
X AD11 AD11 -1000 50 300 R 50 50 1 1 B
X GND1 GND1 -1000 1650 300 R 50 50 1 1 W
X AD12 AD12 -1000 -50 300 R 50 50 1 1 B
X GND2 GND2 -1000 1550 300 R 50 50 1 1 W
X AD13 AD13 -1000 -150 300 R 50 50 1 1 B
X GND3 GND3 900 2250 300 L 50 50 1 1 W
X AD14 AD14 -1000 -250 300 R 50 50 1 1 B
X GND4 GND4 -1000 -600 300 R 50 50 1 1 W
X 5V_4 5V_4 900 -400 300 L 50 50 1 1 W
X AD15 AD15 -1000 -350 300 R 50 50 1 1 B
X GND5 GND5 -1000 -700 300 R 50 50 1 1 W
X 5V_5 5V_5 900 -500 300 L 50 50 1 1 W
X AREF AREF 900 2350 300 L 50 50 1 1 W
X V_IN V_IN -1000 1450 300 R 50 50 1 1 W
ENDDRAW
ENDDEF
#
#End Library

newshield-cache.lib

C/C++
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# +3V3
#
DEF +3V3 #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "+3V3" 0 140 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
ALIAS +3.3V
DRAW
P 2 0 1 0 -30 50 0 100 N
P 2 0 1 0 0 0 0 100 N
P 2 0 1 0 0 100 30 50 N
X +3V3 1 0 0 0 U 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# +5V
#
DEF +5V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "+5V" 0 140 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
DRAW
P 2 0 1 0 -30 50 0 100 N
P 2 0 1 0 0 0 0 100 N
P 2 0 1 0 0 100 30 50 N
X +5V 1 0 0 0 U 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# ARDUINO_MEGA_SHIELD
#
DEF ARDUINO_MEGA_SHIELD SHIELD 0 40 Y Y 1 F N
F0 "SHIELD" -400 2500 60 H V C CNN
F1 "ARDUINO_MEGA_SHIELD" -100 -2700 60 H V C CNN
F2 "" 0 0 60 H I C CNN
F3 "" 0 0 60 H I C CNN
DRAW
T 0 0 750 60 0 0 0 Arduino Normal 0 C C
T 0 0 650 60 0 0 0 MEGA Normal 0 C C
S -700 -2600 600 2450 0 1 0 N
P 3 0 1 0 -600 700 500 700 500 700 N
X RX0 0 900 750 300 L 50 50 1 1 B
X TX0 1 900 850 300 L 50 50 1 1 B
X 2 2 900 950 300 L 50 50 1 1 B
X 3 3 900 1050 300 L 50 50 1 1 B
X 4 4 900 1150 300 L 50 50 1 1 B
X 5 5 900 1250 300 L 50 50 1 1 B
X 6 6 900 1350 300 L 50 50 1 1 B
X 7 7 900 1450 300 L 50 50 1 1 B
X 8 8 900 1650 300 L 50 50 1 1 B
X 9 9 900 1750 300 L 50 50 1 1 B
X 10 10 900 1850 300 L 50 50 1 1 B
X PC7 30 900 -1500 300 L 50 50 1 1 B
X PG1 40 -1000 -2250 300 R 50 50 1 1 B
X PB3_(MISO) 50 -1000 -1150 300 R 50 50 1 1 B
X A0 A0 -1000 1250 300 R 50 50 1 1 B
X 11 11 900 1950 300 L 50 50 1 1 B
X PC6 31 900 -1600 300 L 50 50 1 1 B
X PG0 41 -1000 -2150 300 R 50 50 1 1 B
X PB2_(MOSI) 51 -1000 -1050 300 R 50 50 1 1 B
X A1 A1 -1000 1150 300 R 50 50 1 1 B
X 12 12 900 2050 300 L 50 50 1 1 B
X PA0 22 900 -650 300 L 50 50 1 1 B
X PC5 32 900 -1700 300 L 50 50 1 1 B
X PL7 42 -1000 -2000 300 R 50 50 1 1 B
X PB1_(SCK) 52 -1000 -950 300 R 50 50 1 1 B
X A2 A2 -1000 1050 300 R 50 50 1 1 B
X 13 13 900 2150 300 L 50 50 1 1 B
X PA1 23 900 -750 300 L 50 50 1 1 B
X PC4 33 900 -1800 300 L 50 50 1 1 B
X PL6 43 -1000 -1900 300 R 50 50 1 1 B
X PB0_(SS) 53 -1000 -850 300 R 50 50 1 1 B
X A3 A3 -1000 950 300 R 50 50 1 1 B
X TX3 14 900 550 300 L 50 50 1 1 B
X PA2 24 900 -850 300 L 50 50 1 1 B
X PC3 34 900 -1900 300 L 50 50 1 1 B
X PL5 44 -1000 -1800 300 R 50 50 1 1 B
X A4 A4 -1000 850 300 R 50 50 1 1 B
X RX3 15 900 450 300 L 50 50 1 1 B
X PA3 25 900 -950 300 L 50 50 1 1 B
X PC2 35 900 -2000 300 L 50 50 1 1 B
X PL4 45 -1000 -1700 300 R 50 50 1 1 B
X A5 A5 -1000 750 300 R 50 50 1 1 B
X TX2 16 900 350 300 L 50 50 1 1 B
X PA4 26 900 -1050 300 L 50 50 1 1 B
X PC1 36 900 -2100 300 L 50 50 1 1 B
X PL3 46 -1000 -1600 300 R 50 50 1 1 B
X A6 A6 -1000 650 300 R 50 50 1 1 B
X RX2 17 900 250 300 L 50 50 1 1 B
X PA5 27 900 -1150 300 L 50 50 1 1 B
X PC0 37 900 -2200 300 L 50 50 1 1 B
X PL2 47 -1000 -1500 300 R 50 50 1 1 B
X A7 A7 -1000 550 300 R 50 50 1 1 B
X TX1 18 900 150 300 L 50 50 1 1 B
X PA6 28 900 -1250 300 L 50 50 1 1 B
X PD7 38 -1000 -2450 300 R 50 50 1 1 B
X PL1 48 -1000 -1400 300 R 50 50 1 1 B
X A8 A8 -1000 350 300 R 50 50 1 1 B
X RX1 19 900 50 300 L 50 50 1 1 B
X PA7 29 900 -1350 300 L 50 50 1 1 B
X PG2 39 -1000 -2350 300 R 50 50 1 1 B
X PL0 49 -1000 -1300 300 R 50 50 1 1 B
X A9 A9 -1000 250 300 R 50 50 1 1 B
X A10 A10 -1000 150 300 R 50 50 1 1 B
X A11 A11 -1000 50 300 R 50 50 1 1 B
X A12 A12 -1000 -50 300 R 50 50 1 1 B
X A13 A13 -1000 -150 300 R 50 50 1 1 B
X 3V3 3V3 -1000 1850 300 R 50 50 1 1 W
X A14 A14 -1000 -250 300 R 50 50 1 1 B
X A15 A15 -1000 -350 300 R 50 50 1 1 B
X VIN VIN -1000 1450 300 R 50 50 1 1 W
X RST RST -1000 1950 300 R 50 50 1 1 I
X SDA 20/1 900 -50 300 L 50 50 1 1 B
X SCL 21/1 900 -150 300 L 50 50 1 1 B
X 5V/1 5V/1 -1000 1750 300 R 50 50 1 1 W
X GND1 GND1 -1000 1650 300 R 50 50 1 1 W
X 5V/2 5V/2 900 -400 300 L 50 50 1 1 W
X GND2 GND2 -1000 1550 300 R 50 50 1 1 W
X 5V/3 5V/3 900 -500 300 L 50 50 1 1 W
X GND3 GND3 900 2250 300 L 50 50 1 1 W
X GND4 GND4 -1000 -600 300 R 50 50 1 1 W
X GND5 GND5 -1000 -700 300 R 50 50 1 1 W
X AREF AREF 900 2350 300 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# C
#
DEF C C 0 10 N Y 1 F N
F0 "C" 25 100 50 H V L CNN
F1 "C" 25 -100 50 H V L CNN
F2 "" 38 -150 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 C?
 C_????_*
 C_????
 SMD*_c
 Capacitor*
$ENDFPLIST
DRAW
P 2 0 1 20 -80 -30 80 -30 N
P 2 0 1 20 -80 30 80 30 N
X ~ 1 0 150 110 D 40 40 1 1 P
X ~ 2 0 -150 110 U 40 40 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X02
#
DEF CONN_01X02 P 0 40 Y N 1 F N
F0 "P" 0 150 50 H V C CNN
F1 "CONN_01X02" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X02
 Pin_Header_Angled_1X02
 Socket_Strip_Straight_1X02
 Socket_Strip_Angled_1X02
$ENDFPLIST
DRAW
S -50 -45 10 -55 0 1 0 N
S -50 55 10 45 0 1 0 N
S -50 100 50 -100 0 1 0 N
X P1 1 -200 50 150 R 50 50 1 1 P
X P2 2 -200 -50 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X04
#
DEF CONN_01X04 P 0 40 Y N 1 F N
F0 "P" 0 250 50 H V C CNN
F1 "CONN_01X04" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X04
 Pin_Header_Angled_1X04
 Socket_Strip_Straight_1X04
 Socket_Strip_Angled_1X04
$ENDFPLIST
DRAW
S -50 -145 10 -155 0 1 0 N
S -50 -45 10 -55 0 1 0 N
S -50 55 10 45 0 1 0 N
S -50 155 10 145 0 1 0 N
S -50 200 50 -200 0 1 0 N
X P1 1 -200 150 150 R 50 50 1 1 P
X P2 2 -200 50 150 R 50 50 1 1 P
X P3 3 -200 -50 150 R 50 50 1 1 P
X P4 4 -200 -150 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X06
#
DEF CONN_01X06 P 0 40 Y N 1 F N
F0 "P" 0 350 50 H V C CNN
F1 "CONN_01X06" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X06
 Pin_Header_Angled_1X06
 Socket_Strip_Straight_1X06
 Socket_Strip_Angled_1X06
$ENDFPLIST
DRAW
S -50 -245 10 -255 0 1 0 N
S -50 -145 10 -155 0 1 0 N
S -50 -45 10 -55 0 1 0 N
S -50 55 10 45 0 1 0 N
S -50 155 10 145 0 1 0 N
S -50 255 10 245 0 1 0 N
S -50 300 50 -300 0 1 0 N
X P1 1 -200 250 150 R 50 50 1 1 P
X P2 2 -200 150 150 R 50 50 1 1 P
X P3 3 -200 50 150 R 50 50 1 1 P
X P4 4 -200 -50 150 R 50 50 1 1 P
X P5 5 -200 -150 150 R 50 50 1 1 P
X P6 6 -200 -250 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X08
#
DEF CONN_01X08 P 0 40 Y N 1 F N
F0 "P" 0 450 50 H V C CNN
F1 "CONN_01X08" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X08
 Pin_Header_Angled_1X08
 Socket_Strip_Straight_1X08
 Socket_Strip_Angled_1X08
$ENDFPLIST
DRAW
S -50 -400 50 400 0 1 0 N
S -50 -345 10 -355 0 1 0 N
S -50 -245 10 -255 0 1 0 N
S -50 -145 10 -155 0 1 0 N
S -50 -45 10 -55 0 1 0 N
S -50 55 10 45 0 1 0 N
S -50 155 10 145 0 1 0 N
S -50 255 10 245 0 1 0 N
S -50 355 10 345 0 1 0 N
X P1 1 -200 350 150 R 50 50 1 1 P
X P2 2 -200 250 150 R 50 50 1 1 P
X P3 3 -200 150 150 R 50 50 1 1 P
X P4 4 -200 50 150 R 50 50 1 1 P
X P5 5 -200 -50 150 R 50 50 1 1 P
X P6 6 -200 -150 150 R 50 50 1 1 P
X P7 7 -200 -250 150 R 50 50 1 1 P
X P8 8 -200 -350 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_01X09
#
DEF CONN_01X09 P 0 40 Y N 1 F N
F0 "P" 0 500 50 H V C CNN
F1 "CONN_01X09" 100 0 50 V V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 Pin_Header_Straight_1X09
 Pin_Header_Angled_1X09
 Socket_Strip_Straight_1X09
 Socket_Strip_Angled_1X09
$ENDFPLIST
DRAW
S -50 -395 10 -405 0 1 0 N
S -50 -295 10 -305 0 1 0 N
S -50 -195 10 -205 0 1 0 N
S -50 -95 10 -105 0 1 0 N
S -50 5 10 -5 0 1 0 N
S -50 105 10 95 0 1 0 N
S -50 205 10 195 0 1 0 N
S -50 305 10 295 0 1 0 N
S -50 405 10 395 0 1 0 N
S -50 450 50 -450 0 1 0 N
X P1 1 -200 400 150 R 50 50 1 1 P
X P2 2 -200 300 150 R 50 50 1 1 P
X P3 3 -200 200 150 R 50 50 1 1 P
X P4 4 -200 100 150 R 50 50 1 1 P
X P5 5 -200 0 150 R 50 50 1 1 P
X P6 6 -200 -100 150 R 50 50 1 1 P
X P7 7 -200 -200 150 R 50 50 1 1 P
X P8 8 -200 -300 150 R 50 50 1 1 P
X P9 9 -200 -400 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CONN_02X10
#
DEF CONN_02X10 P 0 1 Y N 1 F N
F0 "P" 0 550 50 H V C CNN
F1 "CONN_02X10" 0 0 50 V V C CNN
F2 "" 0 -1200 50 H V C CNN
F3 "" 0 -1200 50 H V C CNN
$FPLIST
 Pin_Header_Straight_2X10
 Pin_Header_Angled_2X10
 Socket_Strip_Straight_2X10
 Socket_Strip_Angled_2X10
$ENDFPLIST
DRAW
S -100 -445 -50 -455 0 1 0 N
S -100 -345 -50 -355 0 1 0 N
S -100 -245 -50 -255 0 1 0 N
S -100 -145 -50 -155 0 1 0 N
S -100 -45 -50 -55 0 1 0 N
S -100 55 -50 45 0 1 0 N
S -100 155 -50 145 0 1 0 N
S -100 255 -50 245 0 1 0 N
S -100 355 -50 345 0 1 0 N
S -100 455 -50 445 0 1 0 N
S -100 500 100 -500 0 1 0 N
S 50 -445 100 -455 0 1 0 N
S 50 -345 100 -355 0 1 0 N
S 50 -245 100 -255 0 1 0 N
S 50 -145 100 -155 0 1 0 N
S 50 -45 100 -55 0 1 0 N
S 50 55 100 45 0 1 0 N
S 50 155 100 145 0 1 0 N
S 50 255 100 245 0 1 0 N
S 50 355 100 345 0 1 0 N
S 50 455 100 445 0 1 0 N
X P1 1 -250 450 150 R 50 50 1 1 P
X P2 2 250 450 150 L 50 50 1 1 P
X P3 3 -250 350 150 R 50 50 1 1 P
X P4 4 250 350 150 L 50 50 1 1 P
X P5 5 -250 250 150 R 50 50 1 1 P
X P6 6 250 250 150 L 50 50 1 1 P
X P7 7 -250 150 150 R 50 50 1 1 P
X P8 8 250 150 150 L 50 50 1 1 P
X P9 9 -250 50 150 R 50 50 1 1 P
X P10 10 250 50 150 L 50 50 1 1 P
X P20 20 250 -450 150 L 50 50 1 1 P
X P11 11 -250 -50 150 R 50 50 1 1 P
X P12 12 250 -50 150 L 50 50 1 1 P
X P13 13 -250 -150 150 R 50 50 1 1 P
X P14 14 250 -150 150 L 50 50 1 1 P
X P15 15 -250 -250 150 R 50 50 1 1 P
X P16 16 250 -250 150 L 50 50 1 1 P
X P17 17 -250 -350 150 R 50 50 1 1 P
X P18 18 250 -350 150 L 50 50 1 1 P
X P19 19 -250 -450 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# CP
#
DEF CP C 0 10 N Y 1 F N
F0 "C" 25 100 50 H V L CNN
F1 "CP" 25 -100 50 H V L CNN
F2 "" 38 -150 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 CP*
 C_Axial*
 C_Radial*
 TantalC*
 C*elec
 c_elec*
 SMD*_Pol
$ENDFPLIST
DRAW
S -90 20 -90 40 0 1 0 N
S -90 20 90 20 0 1 0 N
S 90 -20 -90 -40 0 1 0 F
S 90 40 -90 40 0 1 0 N
S 90 40 90 20 0 1 0 N
P 2 0 1 0 -70 90 -30 90 N
P 2 0 1 0 -50 110 -50 70 N
X ~ 1 0 150 110 D 40 40 1 1 P
X ~ 2 0 -150 110 U 40 40 1 1 P
ENDDRAW
ENDDEF
#
# GND
#
DEF GND #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -250 50 H I C CNN
F1 "GND" 0 -150 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
DRAW
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
X GND 1 0 0 0 D 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# PWR_FLAG
#
DEF PWR_FLAG #FLG 0 0 N N 1 F P
F0 "#FLG" 0 95 50 H I C CNN
F1 "PWR_FLAG" 0 180 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
DRAW
X pwr 1 0 0 0 U 50 50 0 0 w
P 6 0 1 0 0 0 0 50 -75 100 0 150 75 100 0 50 N
ENDDRAW
ENDDEF
#
# R
#
DEF R R 0 0 N Y 1 F N
F0 "R" 80 0 50 V V C CNN
F1 "R" 0 0 50 V V C CNN
F2 "" -70 0 50 V V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
 R_*
 Resistor_*
$ENDFPLIST
DRAW
S -40 -100 40 100 0 1 10 N
X ~ 1 0 150 50 D 50 50 1 1 P
X ~ 2 0 -150 50 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# UNL2003
#
DEF UNL2003 U 0 40 Y Y 1 F N
F0 "U" 200 200 60 H V C CNN
F1 "UNL2003" 400 -1000 60 H V C CNN
F2 "" 200 0 60 H I C CNN
F3 "" 200 0 60 H I C CNN
DRAW
S 100 100 800 -900 0 1 0 N
P 4 0 1 0 400 100 400 0 500 0 500 100 N
X IN1 1 -100 -100 200 R 50 50 1 1 I
X IN2 2 -100 -200 200 R 50 50 1 1 I
X IN3 3 -100 -300 200 R 50 50 1 1 I
X IN4 4 -100 -400 200 R 50 50 1 1 I
X IN5 5 -100 -500 200 R 50 50 1 1 I
X IN6 6 -100 -600 200 R 50 50 1 1 I
X IN7 7 -100 -700 200 R 50 50 1 1 I
X GND 8 -100 -800 200 R 50 50 1 1 I
X VCC 9 1000 -800 200 L 50 50 1 1 I
X OUT7 10 1000 -700 200 L 50 50 1 1 O
X OUT6 11 1000 -600 200 L 50 50 1 1 O
X OUT5 12 1000 -500 200 L 50 50 1 1 O
X OUT4 13 1000 -400 200 L 50 50 1 1 O
X OUT3 14 1000 -300 200 L 50 50 1 1 O
X OUT2 15 1000 -200 200 L 50 50 1 1 O
X OUT1 16 1000 -100 200 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
#End Library

newshield.kicad_pcb

C/C++
(kicad_pcb (version 4) (host pcbnew 4.0.3-stable)

  (general
    (links 165)
    (no_connects 0)
    (area 104.181 75.953047 255.027 131.393001)
    (thickness 1.6)
    (drawings 8)
    (tracks 1102)
    (zones 0)
    (modules 38)
    (nets 113)
  )

  (page A4)
  (layers
    (0 F.Cu signal)
    (31 B.Cu signal)
    (32 B.Adhes user)
    (33 F.Adhes user)
    (34 B.Paste user)
    (35 F.Paste user)
    (36 B.SilkS user)
    (37 F.SilkS user)
    (38 B.Mask user)
    (39 F.Mask user)
    (40 Dwgs.User user)
    (41 Cmts.User user)
    (42 Eco1.User user)
    (43 Eco2.User user)
    (44 Edge.Cuts user)
    (45 Margin user)
    (46 B.CrtYd user)
    (47 F.CrtYd user)
    (48 B.Fab user)
    (49 F.Fab user)
  )

  (setup
    (last_trace_width 0.5)
    (user_trace_width 0.5)
    (user_trace_width 0.7)
    (user_trace_width 0.9)
    (user_trace_width 1)
    (user_trace_width 1.2)
    (user_trace_width 1.5)
    (user_trace_width 2)
    (user_trace_width 2.5)
    (trace_clearance 0.2)
    (zone_clearance 0.508)
    (zone_45_only no)
    (trace_min 0.2)
    (segment_width 0.2)
    (edge_width 0.15)
    (via_size 0.6)
    (via_drill 0.4)
    (via_min_size 0.4)
    (via_min_drill 0.3)
    (uvia_size 0.3)
    (uvia_drill 0.1)
    (uvias_allowed no)
    (uvia_min_size 0.2)
    (uvia_min_drill 0.1)
    (pcb_text_width 0.3)
    (pcb_text_size 1.5 1.5)
    (mod_edge_width 0.15)
    (mod_text_size 1 1)
    (mod_text_width 0.15)
    (pad_size 1.524 1.524)
    (pad_drill 0.762)
    (pad_to_mask_clearance 0.2)
    (aux_axis_origin 0 0)
    (grid_origin 201.93 86.36)
    (visible_elements 7FFFFFFF)
    (pcbplotparams
      (layerselection 0x00030_80000001)
      (usegerberextensions false)
      (excludeedgelayer true)
      (linewidth 0.100000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15)
      (hpglpenoverlay 2)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (padsonsilk false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 1)
      (scaleselection 1)
      (outputdirectory ""))
  )

  (net 0 "")
  (net 1 +5V)
  (net 2 GND)
  (net 3 3.3V)
  (net 4 12V)
  (net 5 /TEMP_SENSOR)
  (net 6 LCD_RD)
  (net 7 LCD_WR)
  (net 8 SD_SS)
  (net 9 LCD_RS)
  (net 10 SD_DI)
  (net 11 LCD_CS)
  (net 12 SD_DO)
  (net 13 LCD_RST)
  (net 14 SD_SCK)
  (net 15 LCD_D0)
  (net 16 LCD_D7)
  (net 17 LCD_D1)
  (net 18 LCD_D6)
  (net 19 LCD_D2)
  (net 20 LCD_D5)
  (net 21 LCD_D3)
  (net 22 LCD_D4)
  (net 23 "Net-(P3-Pad1)")
  (net 24 "Net-(P3-Pad2)")
  (net 25 "Net-(P3-Pad3)")
  (net 26 "Net-(P3-Pad4)")
  (net 27 "Net-(P3-Pad5)")
  (net 28 "Net-(P3-Pad6)")
  (net 29 "Net-(P3-Pad7)")
  (net 30 /SSR_CONTROL)
  (net 31 /RGB_R_OUT)
  (net 32 /RGB_G_OUT)
  (net 33 /RGB_B_OUT)
  (net 34 "Net-(P8-Pad1)")
  (net 35 "Net-(P8-Pad2)")
  (net 36 "Net-(P8-Pad3)")
  (net 37 "Net-(P8-Pad4)")
  (net 38 "Net-(P8-Pad5)")
  (net 39 "Net-(P8-Pad6)")
  (net 40 "Net-(P8-Pad7)")
  (net 41 "Net-(P8-Pad8)")
  (net 42 /PWM7)
  (net 43 /PWM6)
  (net 44 /PWM5)
  (net 45 RGB_B)
  (net 46 RGB_G)
  (net 47 RGB_R)
  (net 48 "Net-(P9-Pad7)")
  (net 49 "Net-(P9-Pad8)")
  (net 50 "Net-(P10-Pad2)")
  (net 51 "Net-(P10-Pad3)")
  (net 52 "Net-(P10-Pad4)")
  (net 53 "Net-(P10-Pad5)")
  (net 54 "Net-(P10-Pad6)")
  (net 55 "Net-(P10-Pad7)")
  (net 56 "Net-(P10-Pad8)")
  (net 57 "Net-(P11-Pad6)")
  (net 58 "Net-(P11-Pad7)")
  (net 59 "Net-(P11-Pad8)")
  (net 60 "Net-(P12-Pad1)")
  (net 61 "Net-(P12-Pad2)")
  (net 62 "Net-(P12-Pad3)")
  (net 63 "Net-(P12-Pad4)")
  (net 64 "Net-(P12-Pad5)")
  (net 65 "Net-(P12-Pad6)")
  (net 66 "Net-(P12-Pad7)")
  (net 67 "Net-(P12-Pad8)")
  (net 68 "Net-(P13-Pad1)")
  (net 69 "Net-(P13-Pad3)")
  (net 70 "Net-(P13-Pad4)")
  (net 71 "Net-(P13-Pad7)")
  (net 72 "Net-(P13-Pad8)")
  (net 73 "Net-(P14-Pad4)")
  (net 74 "Net-(P14-Pad5)")
  (net 75 "Net-(P14-Pad6)")
  (net 76 "Net-(P14-Pad7)")
  (net 77 "Net-(SHIELD1-PadRST)")
  (net 78 "Net-(SHIELD1-Pad37)")
  (net 79 "Net-(SHIELD1-Pad38)")
  (net 80 "Net-(SHIELD1-Pad39)")
  (net 81 "Net-(SHIELD1-Pad40)")
  (net 82 "Net-(SHIELD1-Pad41)")
  (net 83 "Net-(U1-Pad7)")
  (net 84 "Net-(SHIELD1-PadVIN)")
  (net 85 "Net-(P15-Pad1)")
  (net 86 T_LCD_RST)
  (net 87 T_LCD_CS)
  (net 88 T_LCD_RS)
  (net 89 T_LCD_WR)
  (net 90 T_LCD_RD)
  (net 91 "Net-(P16-Pad1)")
  (net 92 T_GND)
  (net 93 "Net-(P16-Pad3)")
  (net 94 T_+5V)
  (net 95 T_3.3V)
  (net 96 "Net-(P16-Pad6)")
  (net 97 T_SD_SS)
  (net 98 T_SD_DI)
  (net 99 T_SD_DO)
  (net 100 T_SD_SCK)
  (net 101 T_LCD_D0)
  (net 102 T_LCD_D7)
  (net 103 T_LCD_D1)
  (net 104 T_LCD_D6)
  (net 105 T_LCD_D2)
  (net 106 T_LCD_D5)
  (net 107 T_LCD_D3)
  (net 108 T_LCD_D4)
  (net 109 "Net-(P21-Pad1)")
  (net 110 "Net-(P21-Pad2)")
  (net 111 "Net-(P22-Pad7)")
  (net 112 "Net-(P22-Pad8)")

  (net_class Default "This is the default net class."
    (clearance 0.2)
    (trace_width 0.25)
    (via_dia 0.6)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net +5V)
    (add_net /PWM5)
    (add_net /PWM6)
    (add_net /PWM7)
    (add_net /RGB_B_OUT)
    (add_net /RGB_G_OUT)
    (add_net /RGB_R_OUT)
    (add_net /SSR_CONTROL)
    (add_net /TEMP_SENSOR)
    (add_net 12V)
    (add_net 3.3V)
    (add_net GND)
    (add_net LCD_CS)
    (add_net LCD_D0)
    (add_net LCD_D1)
    (add_net LCD_D2)
    (add_net LCD_D3)
    (add_net LCD_D4)
    (add_net LCD_D5)
    (add_net LCD_D6)
    (add_net LCD_D7)
    (add_net LCD_RD)
    (add_net LCD_RS)
    (add_net LCD_RST)
    (add_net LCD_WR)
    (add_net "Net-(P10-Pad2)")
    (add_net "Net-(P10-Pad3)")
    (add_net "Net-(P10-Pad4)")
    (add_net "Net-(P10-Pad5)")
    (add_net "Net-(P10-Pad6)")
    (add_net "Net-(P10-Pad7)")
    (add_net "Net-(P10-Pad8)")
    (add_net "Net-(P11-Pad6)")
    (add_net "Net-(P11-Pad7)")
    (add_net "Net-(P11-Pad8)")
    (add_net "Net-(P12-Pad1)")
    (add_net "Net-(P12-Pad2)")
    (add_net "Net-(P12-Pad3)")
    (add_net "Net-(P12-Pad4)")
    (add_net "Net-(P12-Pad5)")
    (add_net "Net-(P12-Pad6)")
    (add_net "Net-(P12-Pad7)")
    (add_net "Net-(P12-Pad8)")
    (add_net "Net-(P13-Pad1)")
    (add_net "Net-(P13-Pad3)")
    (add_net "Net-(P13-Pad4)")
    (add_net "Net-(P13-Pad7)")
    (add_net "Net-(P13-Pad8)")
    (add_net "Net-(P14-Pad4)")
    (add_net "Net-(P14-Pad5)")
    (add_net "Net-(P14-Pad6)")
    (add_net "Net-(P14-Pad7)")
    (add_net "Net-(P15-Pad1)")
    (add_net "Net-(P16-Pad1)")
    (add_net "Net-(P16-Pad3)")
    (add_net "Net-(P16-Pad6)")
    (add_net "Net-(P21-Pad1)")
    (add_net "Net-(P21-Pad2)")
    (add_net "Net-(P22-Pad7)")
    (add_net "Net-(P22-Pad8)")
    (add_net "Net-(P3-Pad1)")
    (add_net "Net-(P3-Pad2)")
    (add_net "Net-(P3-Pad3)")
    (add_net "Net-(P3-Pad4)")
    (add_net "Net-(P3-Pad5)")
    (add_net "Net-(P3-Pad6)")
    (add_net "Net-(P3-Pad7)")
    (add_net "Net-(P8-Pad1)")
    (add_net "Net-(P8-Pad2)")
    (add_net "Net-(P8-Pad3)")
    (add_net "Net-(P8-Pad4)")
    (add_net "Net-(P8-Pad5)")
    (add_net "Net-(P8-Pad6)")
    (add_net "Net-(P8-Pad7)")
    (add_net "Net-(P8-Pad8)")
    (add_net "Net-(P9-Pad7)")
    (add_net "Net-(P9-Pad8)")
    (add_net "Net-(SHIELD1-Pad37)")
    (add_net "Net-(SHIELD1-Pad38)")
    (add_net "Net-(SHIELD1-Pad39)")
    (add_net "Net-(SHIELD1-Pad40)")
    (add_net "Net-(SHIELD1-Pad41)")
    (add_net "Net-(SHIELD1-PadRST)")
    (add_net "Net-(SHIELD1-PadVIN)")
    (add_net "Net-(U1-Pad7)")
    (add_net RGB_B)
    (add_net RGB_G)
    (add_net RGB_R)
    (add_net SD_DI)
    (add_net SD_DO)
    (add_net SD_SCK)
    (add_net SD_SS)
    (add_net T_+5V)
    (add_net T_3.3V)
    (add_net T_GND)
    (add_net T_LCD_CS)
    (add_net T_LCD_D0)
    (add_net T_LCD_D1)
    (add_net T_LCD_D2)
    (add_net T_LCD_D3)
    (add_net T_LCD_D4)
    (add_net T_LCD_D5)
    (add_net T_LCD_D6)
    (add_net T_LCD_D7)
    (add_net T_LCD_RD)
    (add_net T_LCD_RS)
    (add_net T_LCD_RST)
    (add_net T_LCD_WR)
    (add_net T_SD_DI)
    (add_net T_SD_DO)
    (add_net T_SD_SCK)
    (add_net T_SD_SS)
  )

  (module Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight (layer F.Cu) (tedit 56EE9564) (tstamp 57CC3448)
    (at 250.19 86.36 270)
    (descr "JST EH series connector, B08B-EH-A, 2.50mm pitch, top entry")
    (tags "connector jst eh top vertical straight")
    (path /57CC7130)
    (fp_text reference P21 (at 0 -3 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TFT_LCD_CON1 (at 0 5 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -2.7 -1.8) (end -2.7 2.4) (layer F.SilkS) (width 0.15))
    (fp_line (start -2.7 2.4) (end 20.2 2.4) (layer F.SilkS) (width 0.15))
    (fp_line (start 20.2 2.4) (end 20.2 -1.8) (layer F.SilkS) (width 0.15))
    (fp_line (start 20.2 -1.8) (end -2.7 -1.8) (layer F.SilkS) (width 0.15))
    (fp_line (start -2.7 0) (end -2.2 0) (layer F.SilkS) (width 0.15))
    (fp_line (start -2.2 0) (end -2.2 -1.3) (layer F.SilkS) (width 0.15))
    (fp_line (start -2.2 -1.3) (end 19.7 -1.3) (layer F.SilkS) (width 0.15))
    (fp_line (start 19.7 -1.3) (end 19.7 0) (layer F.SilkS) (width 0.15))
    (fp_line (start 19.7 0) (end 20.2 0) (layer F.SilkS) (width 0.15))
    (fp_line (start -2.7 0.9) (end -1.7 0.9) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.7 0.9) (end -1.7 2.4) (layer F.SilkS) (width 0.15))
    (fp_line (start 20.2 0.9) (end 19.2 0.9) (layer F.SilkS) (width 0.15))
    (fp_line (start 19.2 0.9) (end 19.2 2.4) (layer F.SilkS) (width 0.15))
    (fp_line (start 0 2.75) (end -0.3 3.35) (layer F.SilkS) (width 0.15))
    (fp_line (start -0.3 3.35) (end 0.3 3.35) (layer F.SilkS) (width 0.15))
    (fp_line (start 0.3 3.35) (end 0 2.75) (layer F.SilkS) (width 0.15))
    (fp_line (start -3.2 -2.3) (end -3.2 2.9) (layer F.CrtYd) (width 0.05))
    (fp_line (start -3.2 2.9) (end 20.7 2.9) (layer F.CrtYd) (width 0.05))
    (fp_line (start 20.7 2.9) (end 20.7 -2.3) (layer F.CrtYd) (width 0.05))
    (fp_line (start 20.7 -2.3) (end -3.2 -2.3) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.85 1.85) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
      (net 109 "Net-(P21-Pad1)"))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.85 1.85) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
      (net 110 "Net-(P21-Pad2)"))
    (pad 3 thru_hole circle (at 5 0 270) (size 1.85 1.85) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
      (net 105 T_LCD_D2))
    (pad 4 thru_hole circle (at 7.5 0 270) (size 1.85 1.85) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
      (net 107 T_LCD_D3))
    (pad 5 thru_hole circle (at 10 0 270) (size 1.85 1.85) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
      (net 108 T_LCD_D4))
    (pad 6 thru_hole circle (at 12.5 0 270) (size 1.85 1.85) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
      (net 106 T_LCD_D5))
    (pad 7 thru_hole circle (at 15 0 270) (size 1.85 1.85) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
      (net 104 T_LCD_D6))
    (pad 8 thru_hole circle (at 17.5 0 270) (size 1.85 1.85) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
      (net 102 T_LCD_D7))
    (model Connectors_JST.3dshapes/JST_EH_B08B-EH-A_08x2.50mm_Straight.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 57C83DCE) (tstamp 57C81075)
    (at 118.364 119.38 180)
    (descr "Capacitor 3mm Disc, Pitch 2.5mm")
    (tags Capacitor)
    (path /57C450E8)
    (fp_text reference C1 (at -0.254 2.286 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 0.1 (at 1.25 2.5 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at 0 0 180) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 180) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_ThroughHole:C_Radial_D5_L6_P2.5 (layer F.Cu) (tedit 0) (tstamp 57C8107B)
    (at 116.586 113.284 270)
    (descr "Radial Electrolytic Capacitor Diameter 5mm x Length 6mm, Pitch 2.5mm")
    (tags "Electrolytic Capacitor")
    (path /57C4515B)
    (fp_text reference C2 (at 1.25 -3.8 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100uF (at 1.25 3.8 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.325 -2.499) (end 1.325 2.499) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.465 -2.491) (end 1.465 2.491) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 -2.475) (end 1.605 -0.095) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 0.095) (end 1.605 2.475) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 -2.451) (end 1.745 -0.49) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 0.49) (end 1.745 2.451) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 -2.418) (end 1.885 -0.657) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 0.657) (end 1.885 2.418) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 -2.377) (end 2.025 -0.764) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 0.764) (end 2.025 2.377) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 -2.327) (end 2.165 -0.835) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 0.835) (end 2.165 2.327) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 -2.266) (end 2.305 -0.879) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 0.879) (end 2.305 2.266) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 -2.196) (end 2.445 -0.898) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 0.898) (end 2.445 2.196) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 -2.114) (end 2.585 -0.896) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 0.896) (end 2.585 2.114) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 -2.019) (end 2.725 -0.871) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 0.871) (end 2.725 2.019) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 -1.908) (end 2.865 -0.823) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 0.823) (end 2.865 1.908) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 -1.78) (end 3.005 -0.745) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 0.745) (end 3.005 1.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 -1.631) (end 3.145 -0.628) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 0.628) (end 3.145 1.631) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 -1.452) (end 3.285 -0.44) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 0.44) (end 3.285 1.452) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.425 -1.233) (end 3.425 1.233) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.565 -0.944) (end 3.565 0.944) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.705 -0.472) (end 3.705 0.472) (layer F.SilkS) (width 0.15))
    (fp_circle (center 2.5 0) (end 2.5 -0.9) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.5375) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.8) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L6_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 57C838F4) (tstamp 57C81081)
    (at 169.672 105.41 90)
    (descr "Capacitor 3mm Disc, Pitch 2.5mm")
    (tags Capacitor)
    (path /57C4B938)
    (fp_text reference C3 (at 2.54 2.286 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 0.1uF (at 0.254 2.286 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at 0 0 90) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 90) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_ThroughHole:C_Radial_D5_L6_P2.5 (layer F.Cu) (tedit 57C84188) (tstamp 57C81087)
    (at 132.334 124.714 180)
    (descr "Radial Electrolytic Capacitor Diameter 5mm x Length 6mm, Pitch 2.5mm")
    (tags "Electrolytic Capacitor")
    (path /57C4B993)
    (fp_text reference C4 (at -2.54 -1.27 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100uF (at -2.794 0.508 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.325 -2.499) (end 1.325 2.499) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.465 -2.491) (end 1.465 2.491) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 -2.475) (end 1.605 -0.095) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 0.095) (end 1.605 2.475) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 -2.451) (end 1.745 -0.49) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 0.49) (end 1.745 2.451) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 -2.418) (end 1.885 -0.657) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 0.657) (end 1.885 2.418) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 -2.377) (end 2.025 -0.764) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 0.764) (end 2.025 2.377) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 -2.327) (end 2.165 -0.835) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 0.835) (end 2.165 2.327) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 -2.266) (end 2.305 -0.879) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 0.879) (end 2.305 2.266) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 -2.196) (end 2.445 -0.898) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 0.898) (end 2.445 2.196) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 -2.114) (end 2.585 -0.896) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 0.896) (end 2.585 2.114) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 -2.019) (end 2.725 -0.871) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 0.871) (end 2.725 2.019) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 -1.908) (end 2.865 -0.823) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 0.823) (end 2.865 1.908) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 -1.78) (end 3.005 -0.745) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 0.745) (end 3.005 1.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 -1.631) (end 3.145 -0.628) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 0.628) (end 3.145 1.631) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 -1.452) (end 3.285 -0.44) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 0.44) (end 3.285 1.452) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.425 -1.233) (end 3.425 1.233) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.565 -0.944) (end 3.565 0.944) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.705 -0.472) (end 3.705 0.472) (layer F.SilkS) (width 0.15))
    (fp_circle (center 2.5 0) (end 2.5 -0.9) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.5375) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.8) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 180) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 180) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L6_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Capacitors_ThroughHole:C_Radial_D5_L6_P2.5 (layer F.Cu) (tedit 57C83D8A) (tstamp 57C8108D)
    (at 184.15 93.218 270)
    (descr "Radial Electrolytic Capacitor Diameter 5mm x Length 6mm, Pitch 2.5mm")
    (tags "Electrolytic Capacitor")
    (path /57C4B2CE)
    (fp_text reference C5 (at 3.048 -3.556 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100uF (at 1.27 -3.556 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.325 -2.499) (end 1.325 2.499) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.465 -2.491) (end 1.465 2.491) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 -2.475) (end 1.605 -0.095) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 0.095) (end 1.605 2.475) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 -2.451) (end 1.745 -0.49) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 0.49) (end 1.745 2.451) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 -2.418) (end 1.885 -0.657) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 0.657) (end 1.885 2.418) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 -2.377) (end 2.025 -0.764) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 0.764) (end 2.025 2.377) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 -2.327) (end 2.165 -0.835) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 0.835) (end 2.165 2.327) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 -2.266) (end 2.305 -0.879) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 0.879) (end 2.305 2.266) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 -2.196) (end 2.445 -0.898) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 0.898) (end 2.445 2.196) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 -2.114) (end 2.585 -0.896) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 0.896) (end 2.585 2.114) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 -2.019) (end 2.725 -0.871) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 0.871) (end 2.725 2.019) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 -1.908) (end 2.865 -0.823) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 0.823) (end 2.865 1.908) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 -1.78) (end 3.005 -0.745) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 0.745) (end 3.005 1.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 -1.631) (end 3.145 -0.628) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 0.628) (end 3.145 1.631) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 -1.452) (end 3.285 -0.44) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 0.44) (end 3.285 1.452) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.425 -1.233) (end 3.425 1.233) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.565 -0.944) (end 3.565 0.944) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.705 -0.472) (end 3.705 0.472) (layer F.SilkS) (width 0.15))
    (fp_circle (center 2.5 0) (end 2.5 -0.9) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.5375) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.8) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L6_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 57CA543A) (tstamp 57C81093)
    (at 188.214 92.964 270)
    (descr "Capacitor 3mm Disc, Pitch 2.5mm")
    (tags Capacitor)
    (path /57C4B564)
    (fp_text reference C6 (at -1.778 0 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 0.1uF (at -1.27 -1.524 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_ThroughHole:C_Radial_D5_L6_P2.5 (layer F.Cu) (tedit 57C84005) (tstamp 57C81099)
    (at 125.222 121.92 270)
    (descr "Radial Electrolytic Capacitor Diameter 5mm x Length 6mm, Pitch 2.5mm")
    (tags "Electrolytic Capacitor")
    (path /57C4FDF2)
    (fp_text reference C7 (at 1.524 -4.572 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100uF (at 1.524 -3.302 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.325 -2.499) (end 1.325 2.499) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.465 -2.491) (end 1.465 2.491) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 -2.475) (end 1.605 -0.095) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 0.095) (end 1.605 2.475) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 -2.451) (end 1.745 -0.49) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 0.49) (end 1.745 2.451) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 -2.418) (end 1.885 -0.657) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 0.657) (end 1.885 2.418) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 -2.377) (end 2.025 -0.764) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 0.764) (end 2.025 2.377) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 -2.327) (end 2.165 -0.835) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 0.835) (end 2.165 2.327) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 -2.266) (end 2.305 -0.879) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 0.879) (end 2.305 2.266) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 -2.196) (end 2.445 -0.898) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 0.898) (end 2.445 2.196) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 -2.114) (end 2.585 -0.896) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 0.896) (end 2.585 2.114) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 -2.019) (end 2.725 -0.871) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 0.871) (end 2.725 2.019) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 -1.908) (end 2.865 -0.823) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 0.823) (end 2.865 1.908) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 -1.78) (end 3.005 -0.745) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 0.745) (end 3.005 1.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 -1.631) (end 3.145 -0.628) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 0.628) (end 3.145 1.631) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 -1.452) (end 3.285 -0.44) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 0.44) (end 3.285 1.452) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.425 -1.233) (end 3.425 1.233) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.565 -0.944) (end 3.565 0.944) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.705 -0.472) (end 3.705 0.472) (layer F.SilkS) (width 0.15))
    (fp_circle (center 2.5 0) (end 2.5 -0.9) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.5375) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.8) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 3 3.3V))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L6_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 57C83FEB) (tstamp 57C8109F)
    (at 120.65 121.92 270)
    (descr "Capacitor 3mm Disc, Pitch 2.5mm")
    (tags Capacitor)
    (path /57C4FE7D)
    (fp_text reference C8 (at 4.318 -1.016 360) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 0.1uF (at 4.318 1.016 360) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 3 3.3V))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_ThroughHole:C_Radial_D5_L6_P2.5 (layer F.Cu) (tedit 57C83A54) (tstamp 57C810A5)
    (at 173.99 103.124 270)
    (descr "Radial Electrolytic Capacitor Diameter 5mm x Length 6mm, Pitch 2.5mm")
    (tags "Electrolytic Capacitor")
    (path /57C4F2B2)
    (fp_text reference C9 (at 2.794 -3.556 360) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100uF (at 1.016 -4.064 360) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.325 -2.499) (end 1.325 2.499) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.465 -2.491) (end 1.465 2.491) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 -2.475) (end 1.605 -0.095) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 0.095) (end 1.605 2.475) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 -2.451) (end 1.745 -0.49) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 0.49) (end 1.745 2.451) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 -2.418) (end 1.885 -0.657) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 0.657) (end 1.885 2.418) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 -2.377) (end 2.025 -0.764) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 0.764) (end 2.025 2.377) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 -2.327) (end 2.165 -0.835) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 0.835) (end 2.165 2.327) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 -2.266) (end 2.305 -0.879) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 0.879) (end 2.305 2.266) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 -2.196) (end 2.445 -0.898) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 0.898) (end 2.445 2.196) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 -2.114) (end 2.585 -0.896) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 0.896) (end 2.585 2.114) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 -2.019) (end 2.725 -0.871) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 0.871) (end 2.725 2.019) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 -1.908) (end 2.865 -0.823) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 0.823) (end 2.865 1.908) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 -1.78) (end 3.005 -0.745) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 0.745) (end 3.005 1.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 -1.631) (end 3.145 -0.628) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 0.628) (end 3.145 1.631) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 -1.452) (end 3.285 -0.44) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 0.44) (end 3.285 1.452) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.425 -1.233) (end 3.425 1.233) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.565 -0.944) (end 3.565 0.944) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.705 -0.472) (end 3.705 0.472) (layer F.SilkS) (width 0.15))
    (fp_circle (center 2.5 0) (end 2.5 -0.9) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.5375) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.8) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L6_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 57CA60B7) (tstamp 57C810AB)
    (at 132.08 120.142 180)
    (descr "Capacitor 3mm Disc, Pitch 2.5mm")
    (tags Capacitor)
    (path /57C4F255)
    (fp_text reference C10 (at 1.016 -2.032 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 0.1uF (at 1.27 -3.302 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at 0 0 180) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 180) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_ThroughHole:C_Radial_D5_L6_P2.5 (layer F.Cu) (tedit 57C83E51) (tstamp 57C810B1)
    (at 116.586 91.948 270)
    (descr "Radial Electrolytic Capacitor Diameter 5mm x Length 6mm, Pitch 2.5mm")
    (tags "Electrolytic Capacitor")
    (path /57C4CA72)
    (fp_text reference C11 (at 4.572 1.27 360) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100uF (at 4.572 -1.27 360) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.325 -2.499) (end 1.325 2.499) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.465 -2.491) (end 1.465 2.491) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 -2.475) (end 1.605 -0.095) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 0.095) (end 1.605 2.475) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 -2.451) (end 1.745 -0.49) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 0.49) (end 1.745 2.451) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 -2.418) (end 1.885 -0.657) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 0.657) (end 1.885 2.418) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 -2.377) (end 2.025 -0.764) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 0.764) (end 2.025 2.377) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 -2.327) (end 2.165 -0.835) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 0.835) (end 2.165 2.327) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 -2.266) (end 2.305 -0.879) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 0.879) (end 2.305 2.266) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 -2.196) (end 2.445 -0.898) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 0.898) (end 2.445 2.196) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 -2.114) (end 2.585 -0.896) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 0.896) (end 2.585 2.114) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 -2.019) (end 2.725 -0.871) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 0.871) (end 2.725 2.019) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 -1.908) (end 2.865 -0.823) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 0.823) (end 2.865 1.908) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 -1.78) (end 3.005 -0.745) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 0.745) (end 3.005 1.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 -1.631) (end 3.145 -0.628) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 0.628) (end 3.145 1.631) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 -1.452) (end 3.285 -0.44) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 0.44) (end 3.285 1.452) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.425 -1.233) (end 3.425 1.233) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.565 -0.944) (end 3.565 0.944) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.705 -0.472) (end 3.705 0.472) (layer F.SilkS) (width 0.15))
    (fp_circle (center 2.5 0) (end 2.5 -0.9) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.5375) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.8) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 4 12V))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L6_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 57C83E70) (tstamp 57C810B7)
    (at 122.174 104.648 90)
    (descr "Capacitor 3mm Disc, Pitch 2.5mm")
    (tags Capacitor)
    (path /57C4E12B)
    (fp_text reference C12 (at 0.508 2.54 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 0.1uF (at 3.048 2.54 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at 0 0 90) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 90) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_ThroughHole:C_Radial_D5_L6_P2.5 (layer F.Cu) (tedit 57C83DC2) (tstamp 57C810BD)
    (at 116.84 104.648 90)
    (descr "Radial Electrolytic Capacitor Diameter 5mm x Length 6mm, Pitch 2.5mm")
    (tags "Electrolytic Capacitor")
    (path /57C4E0BC)
    (fp_text reference C13 (at -0.508 -3.556 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100uF (at 2.286 -3.556 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.325 -2.499) (end 1.325 2.499) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.465 -2.491) (end 1.465 2.491) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 -2.475) (end 1.605 -0.095) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.605 0.095) (end 1.605 2.475) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 -2.451) (end 1.745 -0.49) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.745 0.49) (end 1.745 2.451) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 -2.418) (end 1.885 -0.657) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.885 0.657) (end 1.885 2.418) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 -2.377) (end 2.025 -0.764) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.025 0.764) (end 2.025 2.377) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 -2.327) (end 2.165 -0.835) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.165 0.835) (end 2.165 2.327) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 -2.266) (end 2.305 -0.879) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.305 0.879) (end 2.305 2.266) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 -2.196) (end 2.445 -0.898) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.445 0.898) (end 2.445 2.196) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 -2.114) (end 2.585 -0.896) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.585 0.896) (end 2.585 2.114) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 -2.019) (end 2.725 -0.871) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.725 0.871) (end 2.725 2.019) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 -1.908) (end 2.865 -0.823) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.865 0.823) (end 2.865 1.908) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 -1.78) (end 3.005 -0.745) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.005 0.745) (end 3.005 1.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 -1.631) (end 3.145 -0.628) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.145 0.628) (end 3.145 1.631) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 -1.452) (end 3.285 -0.44) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.285 0.44) (end 3.285 1.452) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.425 -1.233) (end 3.425 1.233) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.565 -0.944) (end 3.565 0.944) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.705 -0.472) (end 3.705 0.472) (layer F.SilkS) (width 0.15))
    (fp_circle (center 2.5 0) (end 2.5 -0.9) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.5375) (layer F.SilkS) (width 0.15))
    (fp_circle (center 1.25 0) (end 1.25 -2.8) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 90) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 1 +5V))
    (pad 2 thru_hole circle (at 2.5 0 90) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L6_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 57C83E44) (tstamp 57C810C3)
    (at 121.666 91.948 270)
    (descr "Capacitor 3mm Disc, Pitch 2.5mm")
    (tags Capacitor)
    (path /57C4CA19)
    (fp_text reference C14 (at 1.25 -2.5 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 0.1uF (at 3.556 -2.54 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 4 12V))
    (pad 2 thru_hole circle (at 2.5 0 270) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
      (at (xyz 0.0492126 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 57C83A7C) (tstamp 57C810C9)
    (at 131.318 108.204)
    (descr "Capacitor 3mm Disc, Pitch 2.5mm")
    (tags Capacitor)
    (path /57C4C3BF)
    (fp_text reference C15 (at -0.254 -2.54) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 0.1uF (at 2.794 -2.54) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at 0 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
      (net 4 12V))
    (pad 2 thru_hole circle (at 2.5 0) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
...

This file has been truncated, please download it to see its full contents.

newshield.net

C/C++
(export (version D)
  (design
    (source "N:\\DIY Make \\ \\\\PCB\\new\\new.sch")
    (date "2016-09-04  10:39:18")
    (tool "Eeschema 4.0.3-stable")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source new.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value "")))))
  (components
    (comp (ref U1)
      (value UNL2003)
      (footprint Housings_DIP:DIP-16_W7.62mm)
      (libsource (lib unl2003) (part UNL2003))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C3E2E7))
    (comp (ref P3)
      (value KeyInput)
      (footprint Connectors_JST:JST_EH_B09B-EH-A_09x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X09))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C3E459))
    (comp (ref P6)
      (value RGB_LED_OUT)
      (footprint Connectors_JST:JST_EH_B04B-EH-A_04x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X04))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4011C))
    (comp (ref P7)
      (value "12V POWER")
      (footprint Connectors_JST:JST_EH_B02B-EH-A_02x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X02))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C40616))
    (comp (ref P2)
      (value TFT_LCD_CON)
      (footprint Connectors_Multicomp:Multicomp_MC9A12-2034_2x10x2.54mm_Straight)
      (libsource (lib conn) (part CONN_02X10))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4153B))
    (comp (ref P4)
      (value "POWER 5V")
      (footprint Connectors_JST:JST_EH_B02B-EH-A_02x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X02))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C42689))
    (comp (ref P5)
      (value "SSR (Heater)")
      (footprint Connectors_JST:JST_EH_B02B-EH-A_02x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X02))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C427DB))
    (comp (ref P1)
      (value COOKER_TEMP_SENSOR)
      (footprint Connectors_JST:JST_EH_B02B-EH-A_02x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X02))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C44E60))
    (comp (ref R1)
      (value 15K)
      (footprint Resistors_ThroughHole:Resistor_Horizontal_RM7mm)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C44EE4))
    (comp (ref C1)
      (value 0.1)
      (footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C450E8))
    (comp (ref C2)
      (value 100uF)
      (footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4515B))
    (comp (ref C5)
      (value 100uF)
      (footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4B2CE))
    (comp (ref C6)
      (value 0.1uF)
      (footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4B564))
    (comp (ref C3)
      (value 0.1uF)
      (footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4B938))
    (comp (ref C4)
      (value 100uF)
      (footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4B993))
    (comp (ref C16)
      (value 100uF)
      (footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4C364))
    (comp (ref C15)
      (value 0.1uF)
      (footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4C3BF))
    (comp (ref C14)
      (value 0.1uF)
      (footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4CA19))
    (comp (ref C11)
      (value 100uF)
      (footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4CA72))
    (comp (ref C13)
      (value 100uF)
      (footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4E0BC))
    (comp (ref C12)
      (value 0.1uF)
      (footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4E12B))
    (comp (ref C10)
      (value 0.1uF)
      (footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4F255))
    (comp (ref C9)
      (value 100uF)
      (footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4F2B2))
    (comp (ref C7)
      (value 100uF)
      (footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4FDF2))
    (comp (ref C8)
      (value 0.1uF)
      (footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C4FE7D))
    (comp (ref P8)
      (value COMMUNICATION)
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C526FC))
    (comp (ref P9)
      (value PWM1)
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C53A4B))
    (comp (ref P13)
      (value PWM2)
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C55E3B))
    (comp (ref SHIELD1)
      (value ARDUINO_MEGA_SHIELD)
      (footprint SHIELD_ARDUINO:ARDUINO_MEGA_2560_R3)
      (libsource (lib arduino_mega_shield) (part ARDUINO_MEGA_SHIELD))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C3CA3C))
    (comp (ref P11)
      (value "ANALOG INPUT1")
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C59FB4))
    (comp (ref P10)
      (value "ANALOG INPUT2")
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C5C16E))
    (comp (ref P12)
      (value "PL0 - PL7")
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C62DD4))
    (comp (ref P14)
      (value UNL2003_OUT)
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57C6C02C))
    (comp (ref P20)
      (value TFT_LCD_CABLE1)
      (footprint Connectors_Multicomp:Multicomp_MC9A12-2034_2x10x2.54mm_Straight)
      (libsource (lib conn) (part CONN_02X10))
      (sheetpath (names /) (tstamps /))
      (tstamp 57CC5EDB))
    (comp (ref P21)
      (value TFT_LCD_CON1)
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57CC7130))
    (comp (ref P22)
      (value TFT_LCD_CON2)
      (footprint Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X08))
      (sheetpath (names /) (tstamps /))
      (tstamp 57CC71A1))
    (comp (ref P15)
      (value CONN_01X06)
      (footprint Connectors_JST:JST_EH_B06B-EH-A_06x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X06))
      (sheetpath (names /) (tstamps /))
      (tstamp 57CC899A))
    (comp (ref P16)
      (value CONN_01X06)
      (footprint Connectors_JST:JST_EH_B06B-EH-A_06x2.50mm_Straight)
      (libsource (lib conn) (part CONN_01X06))
      (sheetpath (names /) (tstamps /))
      (tstamp 57CC8A40)))
  (libparts
    (libpart (lib arduino_mega_shield) (part ARDUINO_MEGA_SHIELD)
      (fields
        (field (name Reference) SHIELD)
        (field (name Value) ARDUINO_MEGA_SHIELD))
      (pins
        (pin (num 0) (name RX0) (type BiDi))
        (pin (num 1) (name TX0) (type BiDi))
        (pin (num 2) (name 2) (type BiDi))
        (pin (num 3) (name 3) (type BiDi))
        (pin (num 4) (name 4) (type BiDi))
        (pin (num 5) (name 5) (type BiDi))
        (pin (num 6) (name 6) (type BiDi))
        (pin (num 7) (name 7) (type BiDi))
        (pin (num 8) (name 8) (type BiDi))
        (pin (num 9) (name 9) (type BiDi))
        (pin (num 10) (name 10) (type BiDi))
        (pin (num 11) (name 11) (type BiDi))
        (pin (num 12) (name 12) (type BiDi))
        (pin (num 13) (name 13) (type BiDi))
        (pin (num 14) (name TX3) (type BiDi))
        (pin (num 15) (name RX3) (type BiDi))
        (pin (num 16) (name TX2) (type BiDi))
        (pin (num 17) (name RX2) (type BiDi))
        (pin (num 18) (name TX1) (type BiDi))
        (pin (num 19) (name RX1) (type BiDi))
        (pin (num 22) (name PA0) (type BiDi))
        (pin (num 23) (name PA1) (type BiDi))
        (pin (num 24) (name PA2) (type BiDi))
        (pin (num 25) (name PA3) (type BiDi))
        (pin (num 26) (name PA4) (type BiDi))
        (pin (num 27) (name PA5) (type BiDi))
        (pin (num 28) (name PA6) (type BiDi))
        (pin (num 29) (name PA7) (type BiDi))
        (pin (num 30) (name PC7) (type BiDi))
        (pin (num 31) (name PC6) (type BiDi))
        (pin (num 32) (name PC5) (type BiDi))
        (pin (num 33) (name PC4) (type BiDi))
        (pin (num 34) (name PC3) (type BiDi))
        (pin (num 35) (name PC2) (type BiDi))
        (pin (num 36) (name PC1) (type BiDi))
        (pin (num 37) (name PC0) (type BiDi))
        (pin (num 38) (name PD7) (type BiDi))
        (pin (num 39) (name PG2) (type BiDi))
        (pin (num 40) (name PG1) (type BiDi))
        (pin (num 41) (name PG0) (type BiDi))
        (pin (num 42) (name PL7) (type BiDi))
        (pin (num 43) (name PL6) (type BiDi))
        (pin (num 44) (name PL5) (type BiDi))
        (pin (num 45) (name PL4) (type BiDi))
        (pin (num 46) (name PL3) (type BiDi))
        (pin (num 47) (name PL2) (type BiDi))
        (pin (num 48) (name PL1) (type BiDi))
        (pin (num 49) (name PL0) (type BiDi))
        (pin (num 50) (name "PB3_(MISO)") (type BiDi))
        (pin (num 51) (name "PB2_(MOSI)") (type BiDi))
        (pin (num 52) (name "PB1_(SCK)") (type BiDi))
        (pin (num 53) (name "PB0_(SS)") (type BiDi))
        (pin (num 20/1) (name SDA) (type BiDi))
        (pin (num 21/1) (name SCL) (type BiDi))
        (pin (num 3V3) (name 3V3) (type power_in))
        (pin (num 5V/1) (name 5V/1) (type power_in))
        (pin (num 5V/2) (name 5V/2) (type power_in))
        (pin (num 5V/3) (name 5V/3) (type power_in))
        (pin (num A0) (name A0) (type BiDi))
        (pin (num A1) (name A1) (type BiDi))
        (pin (num A2) (name A2) (type BiDi))
        (pin (num A3) (name A3) (type BiDi))
        (pin (num A4) (name A4) (type BiDi))
        (pin (num A5) (name A5) (type BiDi))
        (pin (num A6) (name A6) (type BiDi))
        (pin (num A7) (name A7) (type BiDi))
        (pin (num A8) (name A8) (type BiDi))
        (pin (num A9) (name A9) (type BiDi))
        (pin (num A10) (name A10) (type BiDi))
        (pin (num A11) (name A11) (type BiDi))
        (pin (num A12) (name A12) (type BiDi))
        (pin (num A13) (name A13) (type BiDi))
        (pin (num A14) (name A14) (type BiDi))
        (pin (num A15) (name A15) (type BiDi))
        (pin (num AREF) (name AREF) (type power_in))
        (pin (num GND1) (name GND1) (type power_in))
        (pin (num GND2) (name GND2) (type power_in))
        (pin (num GND3) (name GND3) (type power_in))
        (pin (num GND4) (name GND4) (type power_in))
        (pin (num GND5) (name GND5) (type power_in))
        (pin (num RST) (name RST) (type input))
        (pin (num VIN) (name VIN) (type power_in))))
    (libpart (lib device) (part C)
      (description "Unpolarized capacitor")
      (footprints
        (fp C?)
        (fp C_????_*)
        (fp C_????)
        (fp SMD*_c)
        (fp Capacitor*))
      (fields
        (field (name Reference) C)
        (field (name Value) C))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib conn) (part CONN_01X02)
      (description "Connector, single row, 01x02")
      (footprints
        (fp Pin_Header_Straight_1X02)
        (fp Pin_Header_Angled_1X02)
        (fp Socket_Strip_Straight_1X02)
        (fp Socket_Strip_Angled_1X02))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_01X02))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))))
    (libpart (lib conn) (part CONN_01X04)
      (description "Connector, single row, 01x04")
      (footprints
        (fp Pin_Header_Straight_1X04)
        (fp Pin_Header_Angled_1X04)
        (fp Socket_Strip_Straight_1X04)
        (fp Socket_Strip_Angled_1X04))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_01X04))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))))
    (libpart (lib conn) (part CONN_01X06)
      (description "Connector, single row, 01x06")
      (footprints
        (fp Pin_Header_Straight_1X06)
        (fp Pin_Header_Angled_1X06)
        (fp Socket_Strip_Straight_1X06)
        (fp Socket_Strip_Angled_1X06))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_01X06))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))
        (pin (num 5) (name P5) (type passive))
        (pin (num 6) (name P6) (type passive))))
    (libpart (lib conn) (part CONN_01X08)
      (description "Connector, single row, 01x08")
      (footprints
        (fp Pin_Header_Straight_1X08)
        (fp Pin_Header_Angled_1X08)
        (fp Socket_Strip_Straight_1X08)
        (fp Socket_Strip_Angled_1X08))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_01X08))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))
        (pin (num 5) (name P5) (type passive))
        (pin (num 6) (name P6) (type passive))
        (pin (num 7) (name P7) (type passive))
        (pin (num 8) (name P8) (type passive))))
    (libpart (lib conn) (part CONN_01X09)
      (description "Connector, single row, 01x09")
      (footprints
        (fp Pin_Header_Straight_1X09)
        (fp Pin_Header_Angled_1X09)
        (fp Socket_Strip_Straight_1X09)
        (fp Socket_Strip_Angled_1X09))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_01X09))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))
        (pin (num 5) (name P5) (type passive))
        (pin (num 6) (name P6) (type passive))
        (pin (num 7) (name P7) (type passive))
        (pin (num 8) (name P8) (type passive))
        (pin (num 9) (name P9) (type passive))))
    (libpart (lib conn) (part CONN_02X10)
      (description "Connector, double row, 02x10")
      (footprints
        (fp Pin_Header_Straight_2X10)
        (fp Pin_Header_Angled_2X10)
        (fp Socket_Strip_Straight_2X10)
        (fp Socket_Strip_Angled_2X10))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_02X10))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))
        (pin (num 5) (name P5) (type passive))
        (pin (num 6) (name P6) (type passive))
        (pin (num 7) (name P7) (type passive))
        (pin (num 8) (name P8) (type passive))
        (pin (num 9) (name P9) (type passive))
        (pin (num 10) (name P10) (type passive))
        (pin (num 11) (name P11) (type passive))
        (pin (num 12) (name P12) (type passive))
        (pin (num 13) (name P13) (type passive))
        (pin (num 14) (name P14) (type passive))
        (pin (num 15) (name P15) (type passive))
        (pin (num 16) (name P16) (type passive))
        (pin (num 17) (name P17) (type passive))
        (pin (num 18) (name P18) (type passive))
        (pin (num 19) (name P19) (type passive))
        (pin (num 20) (name P20) (type passive))))
    (libpart (lib device) (part CP)
      (description "Polarised capacitor")
      (footprints
        (fp CP*)
        (fp C_Axial*)
        (fp C_Radial*)
        (fp TantalC*)
        (fp C*elec)
        (fp c_elec*)
        (fp SMD*_Pol))
      (fields
        (field (name Reference) C)
        (field (name Value) CP))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part R)
      (description Resistor)
      (footprints
        (fp R_*)
        (fp Resistor_*))
      (fields
        (field (name Reference) R)
        (field (name Value) R))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib unl2003) (part UNL2003)
      (fields
        (field (name Reference) U)
        (field (name Value) UNL2003))
      (pins
        (pin (num 1) (name IN1) (type input))
        (pin (num 2) (name IN2) (type input))
        (pin (num 3) (name IN3) (type input))
        (pin (num 4) (name IN4) (type input))
        (pin (num 5) (name IN5) (type input))
        (pin (num 6) (name IN6) (type input))
        (pin (num 7) (name IN7) (type input))
        (pin (num 8) (name GND) (type input))
        (pin (num 9) (name VCC) (type input))
        (pin (num 10) (name OUT7) (type output))
        (pin (num 11) (name OUT6) (type output))
        (pin (num 12) (name OUT5) (type output))
        (pin (num 13) (name OUT4) (type output))
        (pin (num 14) (name OUT3) (type output))
        (pin (num 15) (name OUT2) (type output))
        (pin (num 16) (name OUT1) (type output)))))
  (libraries
    (library (logical conn)
      (uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\conn.lib"))
    (library (logical unl2003)
      (uri "N:\\DIY Make \\ \\\\PCB\\unl2003.lib"))
    (library (logical arduino_mega_shield)
      (uri E:\temp\arduino_mega_shield.lib))
    (library (logical device)
      (uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\device.lib")))
  (nets
    (net (code 1) (name "Net-(P8-Pad1)")
      (node (ref SHIELD1) (pin 14))
      (node (ref P8) (pin 1)))
    (net (code 2) (name "Net-(P8-Pad2)")
      (node (ref SHIELD1) (pin 15))
      (node (ref P8) (pin 2)))
    (net (code 3) (name "Net-(P8-Pad3)")
      (node (ref SHIELD1) (pin 16))
      (node (ref P8) (pin 3)))
    (net (code 4) (name "Net-(P8-Pad4)")
      (node (ref SHIELD1) (pin 17))
      (node (ref P8) (pin 4)))
    (net (code 5) (name "Net-(P8-Pad5)")
      (node (ref SHIELD1) (pin 18))
      (node (ref P8) (pin 5)))
    (net (code 6) (name "Net-(P8-Pad6)")
      (node (ref P8) (pin 6))
      (node (ref SHIELD1) (pin 19)))
    (net (code 7) (name "Net-(P8-Pad7)")
      (node (ref P8) (pin 7))
      (node (ref SHIELD1) (pin 20/1)))
    (net (code 8) (name "Net-(P8-Pad8)")
      (node (ref P8) (pin 8))
      (node (ref SHIELD1) (pin 21/1)))
    (net (code 9) (name "Net-(P13-Pad3)")
      (node (ref P13) (pin 3))
      (node (ref SHIELD1) (pin 13)))
    (net (code 10) (name "Net-(P13-Pad4)")
      (node (ref SHIELD1) (pin 12))
      (node (ref P13) (pin 4)))
    (net (code 11) (name "Net-(P13-Pad7)")
      (node (ref SHIELD1) (pin 9))
      (node (ref P13) (pin 7)))
    (net (code 12) (name "Net-(P13-Pad8)")
      (node (ref P13) (pin 8))
      (node (ref SHIELD1) (pin 8)))
    (net (code 13) (name "Net-(P11-Pad6)")
      (node (ref P11) (pin 6))
      (node (ref SHIELD1) (pin A5)))
    (net (code 14) (name "Net-(P11-Pad7)")
      (node (ref SHIELD1) (pin A6))
      (node (ref P11) (pin 7)))
    (net (code 15) (name "Net-(P11-Pad8)")
      (node (ref SHIELD1) (pin A7))
      (node (ref P11) (pin 8)))
    (net (code 16) (name "Net-(P10-Pad2)")
      (node (ref SHIELD1) (pin A9))
      (node (ref P10) (pin 2)))
    (net (code 17) (name "Net-(P9-Pad7)")
      (node (ref SHIELD1) (pin 1))
      (node (ref P9) (pin 7)))
    (net (code 18) (name "Net-(P9-Pad8)")
      (node (ref SHIELD1) (pin 0))
      (node (ref P9) (pin 8)))
    (net (code 19) (name "Net-(P3-Pad7)")
      (node (ref SHIELD1) (pin 36))
      (node (ref P3) (pin 7)))
    (net (code 20) (name "Net-(P3-Pad6)")
      (node (ref P3) (pin 6))
      (node (ref SHIELD1) (pin 35)))
    (net (code 21) (name /RGB_R_OUT)
      (node (ref P6) (pin 1))
      (node (ref P14) (pin 1))
      (node (ref U1) (pin 16)))
    (net (code 22) (name /RGB_G_OUT)
      (node (ref P6) (pin 2))
      (node (ref U1) (pin 15))
      (node (ref P14) (pin 2)))
    (net (code 23) (name /RGB_B_OUT)
      (node (ref U1) (pin 14))
      (node (ref P14) (pin 3))
      (node (ref P6) (pin 3)))
    (net (code 24) (name 12V)
      (node (ref C11) (pin 1))
      (node (ref C16) (pin 1))
      (node (ref P6) (pin 4))
      (node (ref P7) (pin 1))
      (node (ref C15) (pin 1))
      (node (ref U1) (pin 9))
      (node (ref C14) (pin 1)))
    (net (code 25) (name /SSR_CONTROL)
      (node (ref P5) (pin 1))
      (node (ref P13) (pin 5))
      (node (ref SHIELD1) (pin 11)))
    (net (code 26) (name /TEMP_SENSOR)
      (node (ref SHIELD1) (pin A8))
      (node (ref R1) (pin 1))
      (node (ref P1) (pin 1))
      (node (ref P10) (pin 1)))
    (net (code 27) (name 3.3V)
      (node (ref SHIELD1) (pin 3V3))
      (node (ref C8) (pin 1))
      (node (ref P2) (pin 1))
      (node (ref C7) (pin 1)))
    (net (code 28) (name "Net-(P3-Pad1)")
      (node (ref P3) (pin 1))
      (node (ref SHIELD1) (pin 30)))
    (net (code 29) (name "Net-(P3-Pad2)")
      (node (ref SHIELD1) (pin 31))
      (node (ref P3) (pin 2)))
    (net (code 30) (name "Net-(P3-Pad3)")
      (node (ref P3) (pin 3))
      (node (ref SHIELD1) (pin 32)))
    (net (code 31) (name "Net-(P3-Pad4)")
      (node (ref P3) (pin 4))
      (node (ref SHIELD1) (pin 33)))
    (net (code 32) (name "Net-(P3-Pad5)")
      (node (ref P3) (pin 5))
      (node (ref SHIELD1) (pin 34)))
    (net (code 33) (name +5V)
      (node (ref P3) (pin 8))
      (node (ref P1) (pin 2))
      (node (ref SHIELD1) (pin 5V/1))
      (node (ref P4) (pin 1))
      (node (ref C13) (pin 1))
      (node (ref C12) (pin 1))
      (node (ref C10) (pin 1))
      (node (ref C9) (pin 1))
      (node (ref C4) (pin 1))
      (node (ref C6) (pin 1))
      (node (ref C1) (pin 1))
      (node (ref C2) (pin 1))
      (node (ref C5) (pin 1))
      (node (ref C3) (pin 1))
      (node (ref SHIELD1) (pin 5V/2))
      (node (ref SHIELD1) (pin 5V/3))
      (node (ref P2) (pin 2)))
    (net (code 34) (name "Net-(P10-Pad3)")
      (node (ref SHIELD1) (pin A10))
      (node (ref P10) (pin 3)))
    (net (code 35) (name "Net-(P15-Pad1)")
      (node (ref P15) (pin 1)))
    (net (code 36) (name "Net-(P16-Pad1)")
      (node (ref P16) (pin 1)))
    (net (code 37) (name "Net-(P16-Pad3)")
      (node (ref P16) (pin 3)))
    (net (code 38) (name "Net-(P16-Pad6)")
      (node (ref P16) (pin 6)))
    (net (code 39) (name "Net-(P22-Pad7)")
      (node (ref P22) (pin 7)))
    (net (code 40) (name "Net-(P22-Pad8)")
      (node (ref P22) (pin 8)))
    (net (code 41) (name T_3.3V)
      (node (ref P16) (pin 5))
      (node (ref P20) (pin 1)))
    (net (code 42) (name "Net-(P21-Pad1)")
      (node (ref P21) (pin 1)))
    (net (code 43) (name "Net-(P21-Pad2)")
      (node (ref P21) (pin 2)))
    (net (code 45) (name "Net-(P14-Pad4)")
      (node (ref U1) (pin 13))
      (node (ref P14) (pin 4)))
    (net (code 46) (name "Net-(P14-Pad5)")
      (node (ref U1) (pin 12))
      (node (ref P14) (pin 5)))
    (net (code 47) (name "Net-(P14-Pad6)")
      (node (ref U1) (pin 11))
      (node (ref P14) (pin 6)))
    (net (code 48) (name "Net-(P14-Pad7)")
      (node (ref P14) (pin 7))
      (node (ref U1) (pin 10)))
    (net (code 49) (name "Net-(P12-Pad3)")
      (node (ref P12) (pin 3))
      (node (ref SHIELD1) (pin 47)))
    (net (code 50) (name "Net-(P10-Pad4)")
      (node (ref P10) (pin 4))
      (node (ref SHIELD1) (pin A11)))
    (net (code 51) (name "Net-(P10-Pad5)")
      (node (ref P10) (pin 5))
      (node (ref SHIELD1) (pin A12)))
    (net (code 52) (name "Net-(P10-Pad6)")
      (node (ref P10) (pin 6))
      (node (ref SHIELD1) (pin A13)))
    (net (code 53) (name "Net-(P10-Pad7)")
      (node (ref P10) (pin 7))
      (node (ref SHIELD1) (pin A14)))
    (net (code 54) (name "Net-(P10-Pad8)")
      (node (ref SHIELD1) (pin A15))
      (node (ref P10) (pin 8)))
    (net (code 55) (name "Net-(P12-Pad1)")
      (node (ref SHIELD1) (pin 49))
      (node (ref P12) (pin 1)))
    (net (code 56) (name "Net-(P12-Pad2)")
      (node (ref P12) (pin 2))
      (node (ref SHIELD1) (pin 48)))
    (net (code 57) (name "Net-(P12-Pad4)")
      (node (ref P12) (pin 4))
      (node (ref SHIELD1) (pin 46)))
    (net (code 58) (name "Net-(P12-Pad5)")
      (node (ref SHIELD1) (pin 45))
      (node (ref P12) (pin 5)))
    (net (code 59) (name "Net-(P12-Pad6)")
      (node (ref SHIELD1) (pin 44))
      (node (ref P12) (pin 6)))
    (net (code 60) (name "Net-(P12-Pad7)")
      (node (ref P12) (pin 7))
      (node (ref SHIELD1) (pin 43)))
    (net (code 61) (name "Net-(P12-Pad8)")
      (node (ref P12) (pin 8))
      (node (ref SHIELD1) (pin 42)))
    (net (code 62) (name T_LCD_RST)
      (node (ref P15) (pin 2))
      (node (ref P20) (pin 11)))
    (net (code 63) (name T_SD_SCK)
      (node (ref P20) (pin 12))
      (node (ref P22) (pin 6)))
    (net (code 64) (name T_LCD_D0)
      (node (ref P22) (pin 1))
      (node (ref P20) (pin 13)))
    (net (code 65) (name T_LCD_D7)
      (node (ref P21) (pin 8))
      (node (ref P20) (pin 14)))
    (net (code 66) (name T_LCD_D1)
      (node (ref P20) (pin 15))
      (node (ref P22) (pin 2)))
    (net (code 67) (name T_LCD_D6)
      (node (ref P20) (pin 16))
      (node (ref P21) (pin 7)))
    (net (code 68) (name T_LCD_D2)
      (node (ref P21) (pin 3))
      (node (ref P20) (pin 17)))
    (net (code 69) (name T_LCD_D5)
      (node (ref P20) (pin 18))
      (node (ref P21) (pin 6)))
    (net (code 70) (name T_LCD_D3)
      (node (ref P20) (pin 19))
      (node (ref P21) (pin 4)))
    (net (code 71) (name T_LCD_D4)
      (node (ref P21) (pin 5))
      (node (ref P20) (pin 20)))
    (net (code 72) (name "Net-(P13-Pad1)")
      (node (ref SHIELD1) (pin AREF))
      (node (ref P13) (pin 1)))
    (net (code 73) (name GND)
      (node (ref C4) (pin 2))
      (node (ref P3) (pin 9))
      (node (ref P14) (pin 8))
      (node (ref P7) (pin 2))
      (node (ref C16) (pin 2))
      (node (ref U1) (pin 8))
      (node (ref P13) (pin 2))
      (node (ref SHIELD1) (pin GND4))
      (node (ref P2) (pin 4))
      (node (ref SHIELD1) (pin GND3))
      (node (ref SHIELD1) (pin GND2))
      (node (ref SHIELD1) (pin GND1))
      (node (ref SHIELD1) (pin GND5))
      (node (ref C13) (pin 2))
      (node (ref C15) (pin 2))
      (node (ref C14) (pin 2))
      (node (ref C11) (pin 2))
      (node (ref C12) (pin 2))
      (node (ref C8) (pin 2))
      (node (ref C10) (pin 2))
      (node (ref C9) (pin 2))
      (node (ref R1) (pin 2))
      (node (ref C3) (pin 2))
      (node (ref P4) (pin 2))
      (node (ref P5) (pin 2))
      (node (ref C2) (pin 2))
      (node (ref C6) (pin 2))
      (node (ref C5) (pin 2))
      (node (ref C1) (pin 2))
      (node (ref C7) (pin 2)))
    (net (code 74) (name T_+5V)
      (node (ref P16) (pin 4))
      (node (ref P20) (pin 2)))
    (net (code 75) (name T_LCD_RD)
      (node (ref P15) (pin 6))
      (node (ref P20) (pin 3)))
    (net (code 76) (name T_GND)
      (node (ref P20) (pin 4))
      (node (ref P16) (pin 2)))
    (net (code 77) (name T_LCD_WR)
      (node (ref P20) (pin 5))
      (node (ref P15) (pin 5)))
    (net (code 78) (name T_SD_SS)
      (node (ref P22) (pin 3))
      (node (ref P20) (pin 6)))
    (net (code 79) (name T_LCD_RS)
      (node (ref P15) (pin 4))
      (node (ref P20) (pin 7)))
    (net (code 80) (name T_SD_DI)
      (node (ref P22) (pin 4))
      (node (ref P20) (pin 8)))
    (net (code 81) (name T_LCD_CS)
      (node (ref P15) (pin 3))
      (node (ref P20) (pin 9)))
    (net (code 82) (name T_SD_DO)
      (node (ref P20) (pin 10))
      (node (ref P22) (pin 5)))
    (net (code 83) (name "Net-(SHIELD1-Pad41)")
      (node (ref SHIELD1) (pin 41)))
    (net (code 84) (name "Net-(SHIELD1-Pad40)")
      (node (ref SHIELD1) (pin 40)))
    (net (code 85) (name "Net-(SHIELD1-Pad39)")
      (node (ref SHIELD1) (pin 39)))
    (net (code 86) (name "Net-(SHIELD1-Pad38)")
      (node (ref SHIELD1) (pin 38)))
    (net (code 87) (name "Net-(SHIELD1-PadRST)")
      (node (ref SHIELD1) (pin RST)))
    (net (code 88) (name "Net-(SHIELD1-PadVIN)")
      (node (ref SHIELD1) (pin VIN)))
    (net (code 89) (name "Net-(SHIELD1-Pad37)")
      (node (ref SHIELD1) (pin 37)))
    (net (code 90) (name "Net-(U1-Pad7)")
      (node (ref U1) (pin 7)))
    (net (code 91) (name RGB_G)
      (node (ref U1) (pin 2))
      (node (ref SHIELD1) (pin 3))
      (node (ref P9) (pin 5)))
    (net (code 92) (name RGB_B)
      (node (ref U1) (pin 3))
      (node (ref SHIELD1) (pin 4))
      (node (ref P9) (pin 4)))
    (net (code 93) (name LCD_D6)
      (node (ref P2) (pin 16))
      (node (ref SHIELD1) (pin 28)))
    (net (code 94) (name LCD_D7)
      (node (ref SHIELD1) (pin 29))
      (node (ref P2) (pin 14)))
    (net (code 95) (name LCD_RD)
      (node (ref SHIELD1) (pin A0))
      (node (ref P11) (pin 1))
      (node (ref P2) (pin 3)))
    (net (code 96) (name /PWM5)
      (node (ref P9) (pin 3))
      (node (ref SHIELD1) (pin 5))
      (node (ref U1) (pin 4)))
    (net (code 97) (name /PWM6)
      (node (ref U1) (pin 5))
      (node (ref P9) (pin 2))
      (node (ref SHIELD1) (pin 6)))
    (net (code 98) (name /PWM7)
      (node (ref P9) (pin 1))
      (node (ref U1) (pin 6))
      (node (ref SHIELD1) (pin 7)))
    (net (code 99) (name LCD_WR)
      (node (ref P11) (pin 2))
      (node (ref SHIELD1) (pin A1))
      (node (ref P2) (pin 5)))
    (net (code 100) (name LCD_RS)
      (node (ref SHIELD1) (pin A2))
      (node (ref P11) (pin 3))
      (node (ref P2) (pin 7)))
    (net (code 101) (name LCD_CS)
      (node (ref SHIELD1) (pin A3))
      (node (ref P2) (pin 9))
      (node (ref P11) (pin 4)))
    (net (code 102) (name LCD_RST)
      (node (ref SHIELD1) (pin A4))
      (node (ref P11) (pin 5))
      (node (ref P2) (pin 11)))
    (net (code 103) (name SD_SS)
      (node (ref SHIELD1) (pin 53))
      (node (ref P2) (pin 6))
      (node (ref SHIELD1) (pin 10))
      (node (ref P13) (pin 6)))
    (net (code 104) (name LCD_D2)
      (node (ref SHIELD1) (pin 24))
      (node (ref P2) (pin 17)))
    (net (code 105) (name LCD_D3)
      (node (ref SHIELD1) (pin 25))
      (node (ref P2) (pin 19)))
    (net (code 106) (name LCD_D4)
      (node (ref P2) (pin 20))
      (node (ref SHIELD1) (pin 26)))
    (net (code 107) (name LCD_D5)
      (node (ref SHIELD1) (pin 27))
      (node (ref P2) (pin 18)))
    (net (code 108) (name SD_DI)
      (node (ref SHIELD1) (pin 51))
      (node (ref P2) (pin 8)))
    (net (code 109) (name SD_DO)
      (node (ref SHIELD1) (pin 50))
      (node (ref P2) (pin 10)))
    (net (code 110) (name RGB_R)
      (node (ref U1) (pin 1))
      (node (ref SHIELD1) (pin 2))
      (node (ref P9) (pin 6)))
    (net (code 111) (name LCD_D0)
      (node (ref P2) (pin 13))
      (node (ref SHIELD1) (pin 22)))
    (net (code 112) (name SD_SCK)
      (node (ref P2) (pin 12))
      (node (ref SHIELD1) (pin 52)))
    (net (code 113) (name LCD_D1)
      (node (ref SHIELD1) (pin 23))
      (node (ref P2) (pin 15)))))

newshield.pro

C/C++
update=2016-09-05  1:43:33
version=1
last_client=kicad
[cvpcb]
version=1
NetIExt=net
[eeschema]
version=1
LibDir=
[eeschema/libraries]
LibName1=E:/temp/arduino_mega_shield
LibName2=power
LibName3=device
LibName4=transistors
LibName5=conn
LibName6=linear
LibName7=regul
LibName8=74xx
LibName9=cmos4000
LibName10=adc-dac
LibName11=memory
LibName12=xilinx
LibName13=microcontrollers
LibName14=dsp
LibName15=microchip
LibName16=analog_switches
LibName17=motorola
LibName18=texas
LibName19=intel
LibName20=audio
LibName21=interface
LibName22=digital-audio
LibName23=philips
LibName24=display
LibName25=cypress
LibName26=siliconi
LibName27=opto
LibName28=atmel
LibName29=contrib
LibName30=valves
LibName31=N:/DIY Make / //PCB/unl2003
[pcbnew]
version=1
PageLayoutDescrFile=
LastNetListRead=new.net
PadDrill=0.762
PadDrillOvalY=0.762
PadSizeH=1.524
PadSizeV=1.524
PcbTextSizeV=1.5
PcbTextSizeH=1.5
PcbTextThickness=0.3
ModuleTextSizeV=1
ModuleTextSizeH=1
ModuleTextSizeThickness=0.15
SolderMaskClearance=0.2
SolderMaskMinWidth=0
DrawSegmentWidth=0.2
BoardOutlineThickness=0.15
ModuleOutlineThickness=0.15
[general]
version=1

newshield1.sch

C/C++
EESchema Schematic File Version 2
LIBS:arduino_mega_shield
LIBS:power
LIBS:device
LIBS:transistors
LIBS:conn
LIBS:linear
LIBS:regul
LIBS:74xx
LIBS:cmos4000
LIBS:adc-dac
LIBS:memory
LIBS:xilinx
LIBS:microcontrollers
LIBS:dsp
LIBS:microchip
LIBS:analog_switches
LIBS:motorola
LIBS:texas
LIBS:intel
LIBS:audio
LIBS:interface
LIBS:digital-audio
LIBS:philips
LIBS:display
LIBS:cypress
LIBS:siliconi
LIBS:opto
LIBS:atmel
LIBS:contrib
LIBS:valves
LIBS:unl2003
LIBS:new-cache
EELAYER 25 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 1
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L UNL2003 U1
U 1 1 57C3E2E7
P 8800 2900
F 0 "U1" H 9000 3100 60  0000 C CNN
F 1 "UNL2003" H 9200 1900 60  0000 C CNN
F 2 "Housings_DIP:DIP-16_W7.62mm" H 9000 2900 60  0001 C CNN
F 3 "" H 9000 2900 60  0001 C CNN
	1    8800 2900
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X09 P3
U 1 1 57C3E459
P 7100 5450
F 0 "P3" H 7100 5950 50  0000 C CNN
F 1 "KeyInput" V 7200 5450 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B09B-EH-A_09x2.50mm_Straight" H 7100 5450 50  0001 C CNN
F 3 "" H 7100 5450 50  0000 C CNN
	1    7100 5450
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR01
U 1 1 57C3EBAF
P 6900 6050
F 0 "#PWR01" H 6900 5800 50  0001 C CNN
F 1 "GND" H 6900 5900 50  0000 C CNN
F 2 "" H 6900 6050 50  0000 C CNN
F 3 "" H 6900 6050 50  0000 C CNN
	1    6900 6050
	1    0    0    -1  
$EndComp
NoConn ~ 6650 5750
Text GLabel 8700 3000 0    60   Input ~ 0
RGB_R
Text GLabel 8700 3100 0    60   Input ~ 0
RGB_G
Text GLabel 8700 3200 0    60   Input ~ 0
RGB_B
$Comp
L CONN_01X04 P6
U 1 1 57C4011C
P 10900 2650
F 0 "P6" H 10900 2900 50  0000 C CNN
F 1 "RGB_LED_OUT" V 11000 2650 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B04B-EH-A_04x2.50mm_Straight" H 10900 2650 50  0001 C CNN
F 3 "" H 10900 2650 50  0000 C CNN
	1    10900 2650
	1    0    0    -1  
$EndComp
NoConn ~ 8700 3600
$Comp
L CONN_01X02 P7
U 1 1 57C40616
P 10950 1100
F 0 "P7" H 10950 1250 50  0000 C CNN
F 1 "12V POWER" V 11050 1100 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B02B-EH-A_02x2.50mm_Straight" H 10950 1100 50  0001 C CNN
F 3 "" H 10950 1100 50  0000 C CNN
	1    10950 1100
	1    0    0    -1  
$EndComp
Text GLabel 10000 700  0    60   Input ~ 0
12V
Text GLabel 10050 1150 0    60   Input ~ 0
GND
Text GLabel 10450 4250 2    60   Input ~ 0
12V
$Comp
L GND #PWR02
U 1 1 57C40B70
P 10700 1350
F 0 "#PWR02" H 10700 1100 50  0001 C CNN
F 1 "GND" H 10700 1200 50  0000 C CNN
F 2 "" H 10700 1350 50  0000 C CNN
F 3 "" H 10700 1350 50  0000 C CNN
	1    10700 1350
	1    0    0    -1  
$EndComp
Text GLabel 7600 3750 2    60   Input ~ 0
+5V
$Comp
L GND #PWR03
U 1 1 57C41114
P 8700 3900
F 0 "#PWR03" H 8700 3650 50  0001 C CNN
F 1 "GND" H 8700 3750 50  0000 C CNN
F 2 "" H 8700 3900 50  0000 C CNN
F 3 "" H 8700 3900 50  0000 C CNN
	1    8700 3900
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR04
U 1 1 57C4121D
P 4250 4300
F 0 "#PWR04" H 4250 4050 50  0001 C CNN
F 1 "GND" H 4250 4150 50  0000 C CNN
F 2 "" H 4250 4300 50  0000 C CNN
F 3 "" H 4250 4300 50  0000 C CNN
	1    4250 4300
	1    0    0    -1  
$EndComp
$Comp
L CONN_02X10 P2
U 1 1 57C4153B
P 1450 4900
F 0 "P2" H 1450 5450 50  0000 C CNN
F 1 "TFT_LCD_CON" V 1450 4900 50  0000 C CNN
F 2 "Connectors_Multicomp:Multicomp_MC9A12-2034_2x10x2.54mm_Straight" H 1450 3700 50  0001 C CNN
F 3 "" H 1450 3700 50  0000 C CNN
	1    1450 4900
	1    0    0    -1  
$EndComp
Text GLabel 1200 4550 0    60   Input ~ 0
LCD_RD
Text GLabel 1200 4650 0    60   Input ~ 0
LCD_WR
Text GLabel 1200 4750 0    60   Input ~ 0
LCD_RS
Text GLabel 1200 4850 0    60   Input ~ 0
LCD_CS
Text GLabel 1200 4950 0    60   Input ~ 0
LCD_RST
Text GLabel 1200 5050 0    60   Input ~ 0
LCD_D0
Text GLabel 1200 5150 0    60   Input ~ 0
LCD_D1
Text GLabel 1200 5250 0    60   Input ~ 0
LCD_D2
Text GLabel 1200 5350 0    60   Input ~ 0
LCD_D3
Text GLabel 1700 4650 2    60   Input ~ 0
SD_SS
Text GLabel 1700 4750 2    60   Input ~ 0
SD_DI
Text GLabel 1700 4850 2    60   Input ~ 0
SD_DO
Text GLabel 1700 4950 2    60   Input ~ 0
SD_SCK
Text GLabel 1700 5050 2    60   Input ~ 0
LCD_D7
Text GLabel 1700 5150 2    60   Input ~ 0
LCD_D6
Text GLabel 1700 5250 2    60   Input ~ 0
LCD_D5
Text GLabel 1700 5350 2    60   Input ~ 0
LCD_D4
Text GLabel 1700 4450 2    60   Input ~ 0
+5V
Text GLabel 1700 4550 2    60   Input ~ 0
GND
Text GLabel 1050 4450 0    60   Input ~ 0
3.3V
Text GLabel 4750 1900 0    60   Input ~ 0
GND
Text GLabel 4750 2000 0    60   Input ~ 0
GND
Text GLabel 3150 650  0    60   Input ~ 0
3.3V
Text GLabel 3800 750  0    60   Input ~ 0
+5V
NoConn ~ 4750 1600
NoConn ~ 4750 2100
$Comp
L CONN_01X02 P4
U 1 1 57C42689
P 9350 1000
F 0 "P4" H 9350 1150 50  0000 C CNN
F 1 "POWER 5V" V 9450 1000 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B02B-EH-A_02x2.50mm_Straight" H 9350 1000 50  0001 C CNN
F 3 "" H 9350 1000 50  0000 C CNN
	1    9350 1000
	1    0    0    -1  
$EndComp
Text GLabel 8500 650  0    60   Input ~ 0
+5V
Text GLabel 8600 1050 0    60   Input ~ 0
GND
$Comp
L CONN_01X02 P5
U 1 1 57C427DB
P 9100 6100
F 0 "P5" H 9100 6250 50  0000 C CNN
F 1 "SSR (Heater)" V 9200 6100 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B02B-EH-A_02x2.50mm_Straight" H 9100 6100 50  0001 C CNN
F 3 "" H 9100 6100 50  0000 C CNN
	1    9100 6100
	1    0    0    -1  
$EndComp
Text GLabel 8900 6150 0    60   Input ~ 0
GND
Text GLabel 6650 4200 2    60   Input ~ 0
LCD_D0
Text GLabel 6650 4300 2    60   Input ~ 0
LCD_D1
Text GLabel 6650 4400 2    60   Input ~ 0
LCD_D2
Text GLabel 6650 4500 2    60   Input ~ 0
LCD_D3
Text GLabel 6650 4600 2    60   Input ~ 0
LCD_D4
Text GLabel 6650 4700 2    60   Input ~ 0
LCD_D5
Text GLabel 6650 4800 2    60   Input ~ 0
LCD_D6
Text GLabel 6650 4900 2    60   Input ~ 0
LCD_D7
NoConn ~ 4750 5700
NoConn ~ 4750 5800
NoConn ~ 4750 5900
NoConn ~ 4750 6000
Text GLabel 4750 4400 0    60   Input ~ 0
SD_SS
Text GLabel 4750 4500 0    60   Input ~ 0
SD_SCK
Text GLabel 4750 4600 0    60   Input ~ 0
SD_DI
Text GLabel 4750 4700 0    60   Input ~ 0
SD_DO
Text GLabel 3000 2300 0    60   Input ~ 0
LCD_RD
Text GLabel 3000 2400 0    60   Input ~ 0
LCD_WR
Text GLabel 3000 2500 0    60   Input ~ 0
LCD_RS
Text GLabel 3000 2600 0    60   Input ~ 0
LCD_CS
Text GLabel 3000 2700 0    60   Input ~ 0
LCD_RST
$Comp
L +5V #PWR05
U 1 1 57C44E3C
P 1550 3000
F 0 "#PWR05" H 1550 2850 50  0001 C CNN
F 1 "+5V" H 1550 3140 50  0000 C CNN
F 2 "" H 1550 3000 50  0000 C CNN
F 3 "" H 1550 3000 50  0000 C CNN
	1    1550 3000
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X02 P1
U 1 1 57C44E60
P 1050 3300
F 0 "P1" H 1050 3450 50  0000 C CNN
F 1 "COOKER_TEMP_SENSOR" V 1150 3300 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B02B-EH-A_02x2.50mm_Straight" H 1050 3300 50  0001 C CNN
F 3 "" H 1050 3300 50  0000 C CNN
	1    1050 3300
	-1   0    0    1   
$EndComp
$Comp
L R R1
U 1 1 57C44EE4
P 1550 3600
F 0 "R1" V 1630 3600 50  0000 C CNN
F 1 "15K" V 1550 3600 50  0000 C CNN
F 2 "Resistors_ThroughHole:Resistor_Horizontal_RM7mm" V 1480 3600 50  0001 C CNN
F 3 "" H 1550 3600 50  0000 C CNN
	1    1550 3600
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR06
U 1 1 57C4505E
P 1550 3900
F 0 "#PWR06" H 1550 3650 50  0001 C CNN
F 1 "GND" H 1550 3750 50  0000 C CNN
F 2 "" H 1550 3900 50  0000 C CNN
F 3 "" H 1550 3900 50  0000 C CNN
	1    1550 3900
	1    0    0    -1  
$EndComp
$Comp
L C C1
U 1 1 57C450E8
P 2050 3650
F 0 "C1" H 2075 3750 50  0000 L CNN
F 1 "0.1" H 1900 3550 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Disc_D3_P2.5" H 2088 3500 50  0001 C CNN
F 3 "" H 2050 3650 50  0000 C CNN
	1    2050 3650
	1    0    0    -1  
$EndComp
$Comp
L CP C2
U 1 1 57C4515B
P 2300 3650
F 0 "C2" H 2325 3750 50  0000 L CNN
F 1 "100uF" H 2325 3550 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L6_P2.5" H 2338 3500 50  0001 C CNN
F 3 "" H 2300 3650 50  0000 C CNN
	1    2300 3650
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR07
U 1 1 57C454BE
P 2200 3900
F 0 "#PWR07" H 2200 3650 50  0001 C CNN
F 1 "GND" H 2200 3750 50  0000 C CNN
F 2 "" H 2200 3900 50  0000 C CNN
F 3 "" H 2200 3900 50  0000 C CNN
	1    2200 3900
	1    0    0    -1  
$EndComp
$Comp
L CP C5
U 1 1 57C4B2CE
P 7400 4150
F 0 "C5" H 7425 4250 50  0000 L CNN
F 1 "100uF" H 7350 4050 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L6_P2.5" H 7438 4000 50  0001 C CNN
F 3 "" H 7400 4150 50  0000 C CNN
	1    7400 4150
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR08
U 1 1 57C4B4F0
P 7400 4400
F 0 "#PWR08" H 7400 4150 50  0001 C CNN
F 1 "GND" H 7400 4250 50  0000 C CNN
F 2 "" H 7400 4400 50  0000 C CNN
F 3 "" H 7400 4400 50  0000 C CNN
	1    7400 4400
	1    0    0    -1  
$EndComp
$Comp
L C C6
U 1 1 57C4B564
P 7700 4150
F 0 "C6" H 7725 4250 50  0000 L CNN
F 1 "0.1uF" H 7725 4050 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Disc_D3_P2.5" H 7738 4000 50  0001 C CNN
F 3 "" H 7700 4150 50  0000 C CNN
	1    7700 4150
	1    0    0    -1  
$EndComp
$Comp
L C C3
U 1 1 57C4B938
P 6450 6450
F 0 "C3" H 6475 6550 50  0000 L CNN
F 1 "0.1uF" H 6200 6350 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Disc_D3_P2.5" H 6488 6300 50  0001 C CNN
F 3 "" H 6450 6450 50  0000 C CNN
	1    6450 6450
	1    0    0    -1  
$EndComp
$Comp
L CP C4
U 1 1 57C4B993
P 6650 6450
F 0 "C4" H 6675 6550 50  0000 L CNN
F 1 "100uF" H 6675 6350 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L6_P2.5" H 6688 6300 50  0001 C CNN
F 3 "" H 6650 6450 50  0000 C CNN
	1    6650 6450
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR09
U 1 1 57C4BAF0
P 6450 6850
F 0 "#PWR09" H 6450 6600 50  0001 C CNN
F 1 "GND" H 6450 6700 50  0000 C CNN
F 2 "" H 6450 6850 50  0000 C CNN
F 3 "" H 6450 6850 50  0000 C CNN
	1    6450 6850
	1    0    0    -1  
$EndComp
$Comp
L CP C16
U 1 1 57C4C364
P 9900 4150
F 0 "C16" H 9925 4250 50  0000 L CNN
F 1 "100uF" H 9850 4050 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L6_P2.5" H 9938 4000 50  0001 C CNN
F 3 "" H 9900 4150 50  0000 C CNN
	1    9900 4150
	1    0    0    -1  
$EndComp
$Comp
L C C15
U 1 1 57C4C3BF
P 9650 4150
F 0 "C15" H 9675 4250 50  0000 L CNN
F 1 "0.1uF" H 9600 4050 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Disc_D3_P2.5" H 9688 4000 50  0001 C CNN
F 3 "" H 9650 4150 50  0000 C CNN
	1    9650 4150
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR010
U 1 1 57C4C778
P 9650 4450
F 0 "#PWR010" H 9650 4200 50  0001 C CNN
F 1 "GND" H 9650 4300 50  0000 C CNN
F 2 "" H 9650 4450 50  0000 C CNN
F 3 "" H 9650 4450 50  0000 C CNN
	1    9650 4450
	1    0    0    -1  
$EndComp
$Comp
L C C14
U 1 1 57C4CA19
P 10550 950
F 0 "C14" H 10575 1050 50  0000 L CNN
F 1 "0.1uF" H 10500 850 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Disc_D3_P2.5" H 10588 800 50  0001 C CNN
F 3 "" H 10550 950 50  0000 C CNN
	1    10550 950 
	1    0    0    -1  
$EndComp
$Comp
L CP C11
U 1 1 57C4CA72
P 10300 950
F 0 "C11" H 10325 1050 50  0000 L CNN
F 1 "100uF" H 10050 850 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L6_P2.5" H 10338 800 50  0001 C CNN
F 3 "" H 10300 950 50  0000 C CNN
	1    10300 950 
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR011
U 1 1 57C4E00E
P 8900 1200
F 0 "#PWR011" H 8900 950 50  0001 C CNN
F 1 "GND" H 8900 1050 50  0000 C CNN
F 2 "" H 8900 1200 50  0000 C CNN
F 3 "" H 8900 1200 50  0000 C CNN
	1    8900 1200
	1    0    0    -1  
$EndComp
$Comp
L CP C13
U 1 1 57C4E0BC
P 9000 850
F 0 "C13" H 9025 950 50  0000 L CNN
F 1 "100uF" H 8900 750 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L6_P2.5" H 9038 700 50  0001 C CNN
F 3 "" H 9000 850 50  0000 C CNN
	1    9000 850 
	1    0    0    -1  
$EndComp
$Comp
L C C12
U 1 1 57C4E12B
P 8800 850
F 0 "C12" H 8650 950 50  0000 L CNN
F 1 "0.1uF" H 8600 750 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Disc_D3_P2.5" H 8838 700 50  0001 C CNN
F 3 "" H 8800 850 50  0000 C CNN
	1    8800 850 
	1    0    0    -1  
$EndComp
$Comp
L C C10
U 1 1 57C4F255
P 4050 1000
F 0 "C10" H 4075 1100 50  0000 L CNN
F 1 "0.1uF" H 4075 900 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Disc_D3_P2.5" H 4088 850 50  0001 C CNN
F 3 "" H 4050 1000 50  0000 C CNN
	1    4050 1000
	1    0    0    -1  
$EndComp
$Comp
L CP C9
U 1 1 57C4F2B2
P 3850 1000
F 0 "C9" H 3875 1100 50  0000 L CNN
F 1 "100uF" H 3700 900 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L6_P2.5" H 3888 850 50  0001 C CNN
F 3 "" H 3850 1000 50  0000 C CNN
	1    3850 1000
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR012
U 1 1 57C4F552
P 3950 1250
F 0 "#PWR012" H 3950 1000 50  0001 C CNN
F 1 "GND" H 3950 1100 50  0000 C CNN
F 2 "" H 3950 1250 50  0000 C CNN
F 3 "" H 3950 1250 50  0000 C CNN
	1    3950 1250
	1    0    0    -1  
$EndComp
$Comp
L CP C7
U 1 1 57C4FDF2
P 3250 1050
F 0 "C7" H 3275 1150 50  0000 L CNN
F 1 "100uF" H 3000 950 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Radial_D5_L6_P2.5" H 3288 900 50  0001 C CNN
F 3 "" H 3250 1050 50  0000 C CNN
	1    3250 1050
	1    0    0    -1  
$EndComp
$Comp
L C C8
U 1 1 57C4FE7D
P 3450 1050
F 0 "C8" H 3475 1150 50  0000 L CNN
F 1 "0.1uF" H 3450 900 50  0000 L CNN
F 2 "Capacitors_ThroughHole:C_Disc_D3_P2.5" H 3488 900 50  0001 C CNN
F 3 "" H 3450 1050 50  0000 C CNN
	1    3450 1050
	1    0    0    -1  
$EndComp
$Comp
L GND #PWR013
U 1 1 57C50368
P 3350 1350
F 0 "#PWR013" H 3350 1100 50  0001 C CNN
F 1 "GND" H 3350 1200 50  0000 C CNN
F 2 "" H 3350 1350 50  0000 C CNN
F 3 "" H 3350 1350 50  0000 C CNN
	1    3350 1350
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X08 P8
U 1 1 57C526FC
P 7000 3350
F 0 "P8" H 7000 3800 50  0000 C CNN
F 1 "COMMUNICATION" V 7100 3350 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 7000 3350 50  0001 C CNN
F 3 "" H 7000 3350 50  0000 C CNN
	1    7000 3350
	1    0    0    -1  
$EndComp
$Comp
L CONN_01X08 P9
U 1 1 57C53A4B
P 7900 2450
F 0 "P9" H 7900 2900 50  0000 C CNN
F 1 "PWM1" V 8000 2450 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 7900 2450 50  0001 C CNN
F 3 "" H 7900 2450 50  0000 C CNN
	1    7900 2450
	1    0    0    -1  
$EndComp
Text Label 6900 2400 0    60   ~ 0
RGB_B
Text Label 6900 2500 0    60   ~ 0
RGB_G
Text Label 6900 2600 0    60   ~ 0
RGB_R
Text GLabel 8350 2500 2    60   Input ~ 0
RGB_R
Text GLabel 8350 2400 2    60   Input ~ 0
RGB_G
Text GLabel 8350 2300 2    60   Input ~ 0
RGB_B
$Comp
L CONN_01X08 P13
U 1 1 57C55E3B
P 7450 1550
F 0 "P13" H 7450 2000 50  0000 C CNN
F 1 "PWM2" V 7550 1550 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 7450 1550 50  0001 C CNN
F 3 "" H 7450 1550 50  0000 C CNN
	1    7450 1550
	1    0    0    -1  
$EndComp
Text Label 6750 1300 0    60   ~ 0
GND
Text Label 6750 1700 0    60   ~ 0
SD_SS
$Comp
L ARDUINO_MEGA_SHIELD SHIELD1
U 1 1 57C3CA3C
P 5750 3550
F 0 "SHIELD1" H 5350 6050 60  0000 C CNN
F 1 "ARDUINO_MEGA_SHIELD" H 5650 850 60  0000 C CNN
F 2 "SHIELD_ARDUINO:ARDUINO_MEGA_2560_R3" H 5750 3550 60  0001 C CNN
F 3 "" H 5750 3550 60  0001 C CNN
	1    5750 3550
	1    0    0    -1  
$EndComp
Text GLabel 3850 1800 0    60   Input ~ 0
+5V
$Comp
L CONN_01X08 P11
U 1 1 57C59FB4
P 3900 2650
F 0 "P11" H 3900 3100 50  0000 C CNN
F 1 "ANALOG INPUT1" V 4000 2650 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 3900 2650 50  0001 C CNN
F 3 "" H 3900 2650 50  0000 C CNN
	1    3900 2650
	-1   0    0    -1  
$EndComp
Text Label 4250 2300 0    60   ~ 0
LCD_RD
Text Label 3250 2300 0    60   ~ 0
LCD_RD
Text Label 4250 2400 0    60   ~ 0
LCD_WR
Text Label 3250 2400 0    60   ~ 0
LCD_WR
Text Label 4250 2500 0    60   ~ 0
LCD_RS
Text Label 3250 2500 0    60   ~ 0
LCD_RS
Text Label 4250 2600 0    60   ~ 0
LCD_CS
Text Label 3250 2600 0    60   ~ 0
LCD_CS
Text Label 4250 2700 0    60   ~ 0
LCD_RST
Text Label 3200 2700 0    60   ~ 0
LCD_RST
$Comp
L CONN_01X08 P10
U 1 1 57C5C16E
P 3800 3550
F 0 "P10" H 3800 4000 50  0000 C CNN
F 1 "ANALOG INPUT2" V 3900 3550 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 3800 3550 50  0001 C CNN
F 3 "" H 3800 3550 50  0000 C CNN
	1    3800 3550
	-1   0    0    -1  
$EndComp
Text Label 4050 3200 0    60   ~ 0
TEMP_SENSOR
$Comp
L CONN_01X08 P12
U 1 1 57C62DD4
P 4150 5200
F 0 "P12" H 4150 5650 50  0000 C CNN
F 1 "PL0 - PL7" V 4250 5200 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 4150 5200 50  0001 C CNN
F 3 "" H 4150 5200 50  0000 C CNN
	1    4150 5200
	-1   0    0    -1  
$EndComp
Text Label 6900 2300 0    60   ~ 0
PWM5
Text Label 6900 2200 0    60   ~ 0
PWM6
Text Label 6900 2100 0    60   ~ 0
PWM7
Text Label 8000 3300 0    60   ~ 0
PWM5
Text Label 8000 3400 0    60   ~ 0
PWM6
Text Label 8000 3500 0    60   ~ 0
PWM7
$Comp
L CONN_01X08 P14
U 1 1 57C6C02C
P 10550 3350
F 0 "P14" H 10550 3800 50  0000 C CNN
F 1 "UNL2003_OUT" V 10650 3350 50  0000 C CNN
F 2 "Connectors_JST:JST_EH_B08B-EH-A_08x2.50mm_Straight" H 10550 3350 50  0001 C CNN
F 3 "" H 10550 3350 50  0000 C CNN
	1    10550 3350
	1    0    0    -1  
$EndComp
Text Label 9800 3000 0    60   ~ 0
RGB_R_OUT
Text Label 9800 3100 0    60   ~ 0
RGB_G_OUT
Text Label 9800 3200 0    60   ~ 0
RGB_B_OUT
Text Label 10100 3700 0    60   ~ 0
GND
Text Label 10250 2500 0    60   ~ 0
RGB_R_OUT
Text Label 10250 2600 0    60   ~ 0
RGB_G_OUT
Text Label 10250 2700 0    60   ~ 0
RGB_B_OUT
Text Label 10250 2800 0    60   ~ 0
12V
Text Label 6650 1600 0    60   ~ 0
SSR_CONTROL
Text Label 2400 3350 0    60   ~ 0
TEMP_SENSOR
Text Label 10200 4250 0    60   ~ 0
12V
Text Label 10050 700  0    60   ~ 0
12V
Text Label 8100 6050 0    60   ~ 0
SSR_CONTROL
Text Label 6500 6200 0    60   ~ 0
+5V
$Comp
L +5V #PWR014
U 1 1 57C7EAB0
P 7200 3850
F 0 "#PWR014" H 7200 3700 50  0001 C CNN
F 1 "+5V" H 7200 3990 50  0000 C CNN
F 2 "" H 7200 3850 50  0000 C CNN
F 3 "" H 7200 3850 50  0000 C CNN
	1    7200 3850
	1    0    0    -1  
$EndComp
Text Label 4100 1700 0    60   ~ 0
3.3V
$Comp
L +3.3V #PWR015
U 1 1 57C83095
P 2750 850
F 0 "#PWR015" H 2750 700 50  0001 C CNN
F 1 "+3.3V" H 2750 990 50  0000 C CNN
F 2 "" H 2750 850 50  0000 C CNN
F 3 "" H 2750 850 50  0000 C CNN
	1    2750 850 
	1    0    0    -1  
$EndComp
Wire Wire Line
	6650 5050 6900 5050
Wire Wire Line
	6650 5150 6900 5150
Wire Wire Line
	6650 5250 6900 5250
Wire Wire Line
	6650 5350 6900 5350
Wire Wire Line
	6650 5450 6900 5450
Wire Wire Line
	6650 5550 6900 5550
Wire Wire Line
	6650 5650 6900 5650
Wire Wire Line
	6750 5750 6900 5750
Wire Wire Line
	6900 6050 6900 5850
Wire Wire Line
	9800 3000 10350 3000
Wire Wire Line
	9800 3100 10350 3100
Wire Wire Line
	9800 3200 10350 3200
Wire Wire Line
	8700 3700 8700 3900
Wire Wire Line
	10050 1150 10750 1150
Wire Wire Line
	10700 1350 10700 1150
Connection ~ 10700 1150
Wire Wire Line
	4250 4250 4750 4250
Wire Wire Line
	4250 4150 4250 4300
Wire Wire Line
	4250 4150 4750 4150
Connection ~ 4250 4250
Wire Wire Line
	1550 3000 1550 3250
Wire Wire Line
	1250 3250 2300 3250
Wire Wire Line
	1250 3350 3050 3350
Wire Wire Line
	1550 3350 1550 3450
Connection ~ 1550 3350
Wire Wire Line
	1550 3750 1550 3900
Wire Wire Line
	2050 3250 2050 3500
Connection ~ 1550 3250
Wire Wire Line
	2300 3250 2300 3500
Connection ~ 2050 3250
Wire Wire Line
	2050 3800 2300 3800
Wire Wire Line
	2200 3900 2200 3800
Connection ~ 2200 3800
Wire Wire Line
	3150 650  3450 650 
Connection ~ 1550 3000
Wire Wire Line
	1200 4450 1050 4450
Wire Wire Line
	3800 750  4050 750 
Connection ~ 8700 3900
Wire Wire Line
	6650 3950 7700 3950
Wire Wire Line
	7400 3750 7400 4000
Wire Wire Line
	7600 3750 7400 3750
Connection ~ 7400 3950
Wire Wire Line
	6650 4050 6750 4050
Wire Wire Line
	6750 4050 6750 3950
Connection ~ 6750 3950
Wire Wire Line
	7400 4300 7400 4400
Wire Wire Line
	7700 3950 7700 4000
Wire Wire Line
	7700 4300 7700 4350
Wire Wire Line
	7700 4350 7400 4350
Connection ~ 7400 4350
Wire Wire Line
	6750 5750 6750 5850
Wire Wire Line
	6750 5850 6450 5850
Wire Wire Line
	6450 5850 6450 6300
Wire Wire Line
	6650 6300 6650 6200
Wire Wire Line
	6650 6200 6450 6200
Connection ~ 6450 6200
Wire Wire Line
	6450 6600 6450 6850
Wire Wire Line
	9900 3700 9900 4000
Wire Wire Line
	9650 3900 9650 4000
Connection ~ 9900 3900
Wire Wire Line
	9900 4300 9900 4400
Wire Wire Line
	9900 4400 9650 4400
Wire Wire Line
	9650 4300 9650 4450
Connection ~ 9650 4400
Wire Wire Line
	10000 700  10750 700 
Wire Wire Line
	10750 700  10750 1050
Wire Wire Line
	10300 700  10300 800 
Connection ~ 10300 700 
Wire Wire Line
	10550 800  10550 700 
Connection ~ 10550 700 
Wire Wire Line
	10550 1100 10550 1150
Connection ~ 10550 1150
Wire Wire Line
	10300 1100 10300 1150
Connection ~ 10300 1150
Wire Wire Line
	8600 1050 9150 1050
Wire Wire Line
	8500 650  9150 650 
Wire Wire Line
	9150 650  9150 950 
Wire Wire Line
	8900 1050 8900 1200
Connection ~ 8900 1050
Wire Wire Line
	8800 1000 8800 1050
Connection ~ 8800 1050
Wire Wire Line
	9000 1000 9000 1050
Connection ~ 9000 1050
Wire Wire Line
	9000 700  9000 650 
Connection ~ 9000 650 
Wire Wire Line
	8800 700  8800 650 
Connection ~ 8800 650 
Wire Wire Line
	3850 850  4050 850 
Wire Wire Line
	4050 850  4050 750 
Connection ~ 4050 750 
Wire Wire Line
	3850 1150 3850 1200
Wire Wire Line
	3850 1200 4050 1200
Wire Wire Line
	4050 1200 4050 1150
Wire Wire Line
	3950 1250 3950 1200
Connection ~ 3950 1200
Wire Wire Line
	3450 650  3450 900 
Connection ~ 3450 650 
Wire Wire Line
	3250 850  3250 900 
Connection ~ 3450 850 
Wire Wire Line
	3250 1200 3250 1300
Wire Wire Line
	3250 1300 3450 1300
Wire Wire Line
	3450 1300 3450 1200
Wire Wire Line
	3350 1350 3350 1300
Connection ~ 3350 1300
Wire Wire Line
	6650 3000 6800 3000
Wire Wire Line
	6650 3100 6800 3100
Wire Wire Line
	6650 3200 6800 3200
Wire Wire Line
	6650 3300 6800 3300
Wire Wire Line
	6650 3400 6800 3400
Wire Wire Line
	6650 3500 6800 3500
Wire Wire Line
	6650 3600 6800 3600
Wire Wire Line
	6650 3700 6800 3700
Wire Wire Line
	6650 2100 7700 2100
Wire Wire Line
	6650 2200 7700 2200
Wire Wire Line
	6650 2300 7700 2300
Wire Wire Line
	6650 2400 7700 2400
Wire Wire Line
	6650 2500 7700 2500
Wire Wire Line
	6650 2600 7700 2600
Wire Wire Line
	6650 2700 7700 2700
Wire Wire Line
	6650 2800 7700 2800
Connection ~ 7650 2600
Connection ~ 7600 2500
Connection ~ 7550 2400
Wire Wire Line
	7550 1850 8350 1850
Wire Wire Line
	7600 1900 8300 1900
Wire Wire Line
	8300 2400 8350 2400
Wire Wire Line
	7650 1950 8250 1950
Wire Wire Line
	8250 2500 8350 2500
Wire Wire Line
	7650 2600 7650 1950
Wire Wire Line
	8350 1850 8350 2300
Wire Wire Line
	8300 1900 8300 2400
Wire Wire Line
	8250 1950 8250 2500
...

This file has been truncated, please download it to see its full contents.

Credits

Yong Hyoung

Yong Hyoung

2 projects • 4 followers
Hi there iot

Comments