ソースを参照

teensystep basic machine implementation
Top PCB
feeder PCB
other production files

eLandon 6 年 前
コミット
81fbca285f
42 ファイル変更109141 行追加4 行削除
  1. BIN
      3Dprints/bouchon.fcstd
  2. BIN
      3Dprints/bouchon.fcstd1
  3. BIN
      3Dprints/bouchon.stl
  4. 135 0
      HTequi-firmware/src/Atm_lien/Atm_TeensyStep.cpp
  5. 69 0
      HTequi-firmware/src/Atm_lien/Atm_TeensyStep.h
  6. 15 3
      HTequi-firmware/src/blobcnc_low/main.cpp
  7. 26 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-Edge.Cuts.gbr
  8. 5059 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-F.Cu.gbr
  9. 11 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-NPTH.drl
  10. 166 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-PTH.drl
  11. 307 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-cache.lib
  12. 872 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.bak
  13. 2280 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.kicad_pcb
  14. 2265 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.kicad_pcb-bak
  15. 493 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.net
  16. 33 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.pro
  17. 872 0
      PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.sch
  18. 31 0
      PCB/BLOBCNC_FEEDER/CNC/blobcnc_feeder_CUT.gcode
  19. 590 0
      PCB/BLOBCNC_FEEDER/CNC/blobcnc_feeder_DRILL.gcode
  20. 40418 0
      PCB/BLOBCNC_FEEDER/CNC/blobcnc_feeder_ISOL.gcode
  21. 1 1
      PCB/BLOBCNC_LOW/BLOBCNC_LOW.net
  22. 555 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-B.Cu.gbr
  23. 247 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-B.Mask.gbr
  24. 15 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-B.Paste.gbr
  25. 1438 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-B.SilkS.gbr
  26. 28 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-Edge.Cuts.gbr
  27. 4856 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-F.Cu.gbr
  28. 247 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-F.Mask.gbr
  29. 15 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-F.Paste.gbr
  30. 15 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-F.SilkS.gbr
  31. 11 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-NPTH.drl
  32. 173 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-PTH.drl
  33. 382 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP-cache.lib
  34. 1031 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP.bak
  35. 2054 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP.kicad_pcb
  36. 2053 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP.kicad_pcb-bak
  37. 568 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP.net
  38. 33 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP.pro
  39. 1035 0
      PCB/BLOBCNC_TOP/BLOBCNC_TOP.sch
  40. 31 0
      PCB/BLOBCNC_TOP/CNC/blobcnc_TOP_CURT.gcode
  41. 618 0
      PCB/BLOBCNC_TOP/CNC/blobcnc_TOP_DRILL.gcode
  42. 40093 0
      PCB/BLOBCNC_TOP/CNC/blobcnc_TOP_ISOL.gcode

BIN
3Dprints/bouchon.fcstd


BIN
3Dprints/bouchon.fcstd1


BIN
3Dprints/bouchon.stl


+ 135 - 0
HTequi-firmware/src/Atm_lien/Atm_TeensyStep.cpp

@@ -0,0 +1,135 @@
+#include "Atm_TeensyStep.h"
+
+/* Add optional parameters for the state machine to begin()
+ * Add extra initialization code
+ */
+
+Atm_TeensyStep& Atm_TeensyStep::begin(Stepper & motorRef) {
+  // clang-format off
+  const static state_t state_table[] PROGMEM = {
+    /*                 ON_ENTER     ON_LOOP       ON_EXIT  EVT_IDLE_TIMER  EVT_ON_TARGET  EVT_GOTO  ELSE */
+    /*     IDLE */     ENT_IDLE,         -1,           -1,             -1,            -1,  RUNNING,   -1,
+    /*    READY */    ENT_READY,         -1,           -1,           IDLE,            -1,  RUNNING,   -1,
+    /*  RUNNING */  ENT_RUNNING, LP_RUNNING,           -1,             -1,      STOPPING,  RUNNING,   -1,
+    /* STOPPING */ ENT_STOPPING,         -1, EXT_STOPPING,             -1,         READY,       -1,   -1,
+  };
+  // clang-format on
+  Machine::begin( state_table, ELSE );
+  // AccelStepper _motor (1, stepPin, dirPin);
+  this-> motor =   &motorRef;
+  // Stepper _motor(stepPin, dirPin );
+  // StepControl _controller;
+  // _motor.setMaxSpeed(20000);
+  // _motor.setAcceleration(1000);
+  //_controller = new StepControl;
+  pinMode(0, OUTPUT);
+  digitalWrite(0, HIGH);
+  return *this;
+}
+
+/* Add C++ code for each internally handled event (input)
+ * The code must return 1 to trigger the event
+ */
+
+int Atm_TeensyStep::event( int id ) {
+  switch ( id ) {
+    case EVT_IDLE_TIMER:
+      return 0;
+    case EVT_ON_TARGET:
+      return 0;
+      // return _motor.distanceToGo()== 0 ;
+  }
+  return 0;
+}
+
+/* Add C++ code for each action
+ * This generates the 'output' for the state machine
+ *
+ * Available connectors:
+ *   push( connectors, ON_ONCHANGE, 0, <v>, <up> );
+ */
+
+void Atm_TeensyStep::action( int id ) {
+  switch ( id ) {
+    case ENT_IDLE:
+      digitalWrite(0, LOW);
+      return;
+    case ENT_READY:
+    digitalWrite(0, HIGH);
+      return;
+    case ENT_RUNNING:
+      digitalWrite(0, HIGH);
+      // _controller.moveAsync(*_motor);
+      return;
+    case LP_RUNNING:
+      // _motor.run();
+
+     // Serial.println(_motor.currentPosition());
+      return;
+    case ENT_STOPPING:
+      return;
+    case EXT_STOPPING:
+      return;
+  }
+}
+
+/* Optionally override the default trigger() method
+ * Control how your machine processes triggers
+ */
+
+Atm_TeensyStep& Atm_TeensyStep::trigger( int event ) {
+  Machine::trigger( event );
+  return *this;
+}
+
+/* Optionally override the default state() method
+ * Control what the machine returns when another process requests its state
+ */
+
+int Atm_TeensyStep::state( void ) {
+  return Machine::state();
+}
+
+/* Nothing customizable below this line
+ ************************************************************************************************
+*/
+
+/* Public event methods
+ *
+ */
+
+Atm_TeensyStep& Atm_TeensyStep::gotoStep(long int targetStep ) {
+  motor->setTargetRel(targetStep);
+
+  // _motor.move(targetStep);
+  // _motor.run();
+  // Serial.println(_motor.distanceToGo());
+  // _motor.setMaxSpeed(5000);
+  // _motor.setAcceleration(6000);
+  trigger( EVT_GOTO );
+  return *this;
+}
+
+/*
+ * onOnchange() push connector variants ( slots 1, autostore 0, broadcast 0 )
+ */
+
+Atm_TeensyStep& Atm_TeensyStep::onOnchange( Machine& machine, int event ) {
+  onPush( connectors, ON_ONCHANGE, 0, 1, 1, machine, event );
+  return *this;
+}
+
+Atm_TeensyStep& Atm_TeensyStep::onOnchange( atm_cb_push_t callback, int idx ) {
+  onPush( connectors, ON_ONCHANGE, 0, 1, 1, callback, idx );
+  return *this;
+}
+
+/* State trace method
+ * Sets the symbol table and the default logging method for serial monitoring
+ */
+
+Atm_TeensyStep& Atm_TeensyStep::trace( Stream & stream ) {
+  Machine::setTrace( &stream, atm_serial_debug::trace,
+    "STEPPER\0EVT_IDLE_TIMER\0EVT_ON_TARGET\0EVT_GOTO\0ELSE\0IDLE\0READY\0RUNNING\0STOPPING" );
+  return *this;
+}

+ 69 - 0
HTequi-firmware/src/Atm_lien/Atm_TeensyStep.h

@@ -0,0 +1,69 @@
+#pragma once
+
+#include <Automaton.h>
+#include <TeensyStep.h>
+// #include <AccelStepper.h>
+class Atm_TeensyStep: public Machine {
+
+ public:
+  enum { IDLE, READY, RUNNING, STOPPING }; // STATES
+  enum { EVT_IDLE_TIMER, EVT_ON_TARGET, EVT_GOTO, ELSE }; // EVENTS
+  Atm_TeensyStep( void ) : Machine()  {};
+  Atm_TeensyStep& begin( Stepper & motorRef ) ;
+  Atm_TeensyStep& trace( Stream & stream );
+  Atm_TeensyStep& trigger( int event );
+  int state( void );
+  Atm_TeensyStep& onOnchange( Machine& machine, int event = 0 );
+  Atm_TeensyStep& onOnchange( atm_cb_push_t callback, int idx = 0 );
+  Atm_TeensyStep& gotoStep( long int targetStep );
+  Stepper * motor;
+
+ private:
+  // AccelStepper _motor;
+  // Stepper *_motor;       // STEP pin: 2, DIR pin: 3
+  // StepControl _controller;
+  enum { ENT_IDLE, ENT_READY, ENT_RUNNING, LP_RUNNING, ENT_STOPPING, EXT_STOPPING }; // ACTIONS
+  enum { ON_ONCHANGE, CONN_MAX }; // CONNECTORS
+  atm_connector connectors[CONN_MAX];
+  int event( int id );
+  void action( int id );
+
+};
+
+/*
+Automaton::ATML::begin - Automaton Markup Language
+
+<?xml version="1.0" encoding="UTF-8"?>
+<machines>
+  <machine name="Atm_stepper">
+    <states>
+      <IDLE index="0" on_enter="ENT_IDLE">
+        <EVT_GOTO>RUNNING</EVT_GOTO>
+      </IDLE>
+      <READY index="1" on_enter="ENT_READY">
+        <EVT_IDLE_TIMER>IDLE</EVT_IDLE_TIMER>
+        <EVT_GOTO>RUNNING</EVT_GOTO>
+      </READY>
+      <RUNNING index="2" on_enter="ENT_RUNNING" on_loop="LP_RUNNING">
+        <EVT_ON_TARGET>STOPPING</EVT_ON_TARGET>
+        <EVT_GOTO>RUNNING</EVT_GOTO>
+      </RUNNING>
+      <STOPPING index="3" on_enter="ENT_STOPPING" on_exit="EXT_STOPPING">
+        <EVT_ON_TARGET>READY</EVT_ON_TARGET>
+      </STOPPING>
+    </states>
+    <events>
+      <EVT_IDLE_TIMER index="0" access="PRIVATE"/>
+      <EVT_ON_TARGET index="1" access="PRIVATE"/>
+      <EVT_GOTO index="2" access="PUBLIC"/>
+    </events>
+    <connectors>
+      <ONCHANGE autostore="0" broadcast="0" dir="PUSH" slots="1"/>
+    </connectors>
+    <methods>
+    </methods>
+  </machine>
+</machines>
+
+Automaton::ATML::end
+*/

+ 15 - 3
HTequi-firmware/src/blobcnc_low/main.cpp

@@ -2,6 +2,7 @@
 
 #include <Automaton.h>
 #include "Atm_lien/Atm_stepper.h"
+#include "Atm_lien/Atm_TeensyStep.h"
 
 #include <SPI.h>
 #include <Ethernet.h>
@@ -29,7 +30,10 @@ byte sendBuffer2[] = {0x80, 0x14, 0x00};        // MIDI Note Off to Multicast ad
 // An EthernetUDP instance to let us send and receive packets over UDP
 EthernetUDP Udp;
 
-Atm_stepper stepper;
+// Atm_stepper stepper;
+Atm_TeensyStep stepper;
+Stepper A_stepper(2, 1);
+StepControl controller ;
 
 class Atm_blink : public Machine {
 
@@ -144,10 +148,18 @@ void setup() {
   delay(1000);
   stepper.trace( Serial );
   Serial.println("Started");
-  stepper.begin(2,1);
+  stepper.begin(A_stepper);
   stepper.cycle(1000);
   Serial.println("Started");
-  stepper.gotoStep(16000);
+  stepper.gotoStep(1000);
+  controller.moveAsync(*stepper.motor);
+  delay(1000);
+  controller.moveAsync(*stepper.motor);
+  delay(10000);
+  stepper.motor->setMaxSpeed(30000);
+  stepper.motor->setAcceleration(10000);
+  stepper.gotoStep(-100000);
+  controller.moveAsync(*stepper.motor);
   Serial.println("Started");
   // stepper.trigger(stepper.EVT_GOTO);
   // pinMode(00, OUTPUT);

+ 26 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-Edge.Cuts.gbr

@@ -0,0 +1,26 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-2*
+G04 #@! TF.CreationDate,2019-05-20T14:59:26+02:00*
+G04 #@! TF.ProjectId,BLOBCNC_FEEDER,424C4F42434E435F4645454445522E6B,rev?*
+G04 #@! TF.SameCoordinates,PXb2a5a48PY2284ab8*
+G04 #@! TF.FileFunction,Profile,NP*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-2) date Mon May 20 14:59:26 2019*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10C,0.200000*%
+G04 APERTURE END LIST*
+D10*
+X-113030000Y0D02*
+X-112395000Y0D01*
+X-113030000Y-88900000D02*
+X-113030000Y0D01*
+X0Y-88900000D02*
+X-113030000Y-88900000D01*
+X0Y0D02*
+X0Y-88900000D01*
+X-112395000Y0D02*
+X0Y0D01*
+M02*

ファイルの差分が大きいため隠しています
+ 5059 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-F.Cu.gbr


+ 11 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-NPTH.drl

@@ -0,0 +1,11 @@
+M48
+;DRILL file {KiCad 5.0.0+dfsg1-2} date Mon May 20 14:59:32 2019
+;FORMAT={-:-/ absolute / metric / decimal}
+FMAT,2
+METRIC,TZ
+%
+G90
+G05
+M71
+T0
+M30

+ 166 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-PTH.drl

@@ -0,0 +1,166 @@
+M48
+;DRILL file {KiCad 5.0.0+dfsg1-2} date Mon May 20 14:59:32 2019
+;FORMAT={-:-/ absolute / metric / decimal}
+FMAT,2
+METRIC,TZ
+T1C0.800
+T2C1.000
+T3C1.000
+T4C1.020
+T5C1.520
+%
+G90
+G05
+M71
+T1
+X-38.1Y-19.685
+X-38.1Y-22.225
+X-38.1Y-24.765
+X-30.48Y-19.685
+X-30.48Y-22.225
+X-30.48Y-24.765
+X-38.051Y-44.957
+X-38.051Y-47.497
+X-38.051Y-50.037
+X-30.431Y-44.957
+X-30.431Y-47.497
+X-30.431Y-50.037
+X-19.636Y-49.402
+X-17.136Y-49.402
+X-19.685Y-24.765
+X-17.185Y-24.765
+T2
+X-85.09Y-36.195
+X-85.09Y-49.53
+X-85.09Y-62.23
+X-85.09Y-75.565
+X-82.55Y-30.48
+X-82.55Y-36.195
+X-82.55Y-49.53
+X-82.55Y-62.23
+X-66.04Y-16.51
+X-52.07Y-16.51
+X-51.435Y-78.74
+X-41.91Y-15.875
+X-41.91Y-50.165
+X-36.83Y-78.74
+X-20.955Y-74.93
+X-11.43Y-74.93
+X-4.396Y-39.877
+X-4.396Y-42.417
+X-4.396Y-44.957
+X-4.396Y-47.497
+X-79.375Y-75.565
+X-76.835Y-75.565
+X-74.295Y-75.565
+X-106.68Y-9.525
+X-106.68Y-27.305
+X-66.04Y-9.525
+X-66.04Y-27.305
+X-79.375Y-62.442
+X-76.835Y-62.442
+X-74.295Y-62.442
+X-47.625Y-16.51
+X-47.625Y-19.05
+X-47.625Y-21.59
+X-93.345Y-62.442
+X-90.805Y-62.442
+X-88.265Y-62.442
+X-93.345Y-49.318
+X-90.805Y-49.318
+X-88.265Y-49.318
+X-33.528Y-60.325
+X-33.528Y-80.645
+X-30.988Y-60.325
+X-30.988Y-80.645
+X-28.448Y-60.325
+X-28.448Y-80.645
+X-25.908Y-60.325
+X-25.908Y-80.645
+X-23.368Y-60.325
+X-23.368Y-80.645
+X-20.828Y-60.325
+X-20.828Y-80.645
+X-79.375Y-36.195
+X-76.835Y-36.195
+X-74.295Y-36.195
+X-4.445Y-14.605
+X-4.445Y-17.145
+X-4.445Y-19.685
+X-4.445Y-22.225
+X-79.375Y-49.318
+X-76.835Y-49.318
+X-74.295Y-49.318
+X-93.345Y-36.195
+X-90.805Y-36.195
+X-88.265Y-36.195
+X-93.345Y-75.565
+X-90.805Y-75.565
+X-88.265Y-75.565
+T3
+X-62.816Y-32.257
+X-62.816Y-34.797
+X-62.816Y-37.337
+X-62.816Y-39.877
+X-62.816Y-42.417
+X-62.816Y-44.957
+X-62.816Y-47.497
+X-62.816Y-50.037
+X-62.816Y-52.577
+X-62.816Y-55.117
+X-62.816Y-57.657
+X-62.816Y-60.197
+X-62.816Y-62.737
+X-62.816Y-65.277
+X-47.576Y-32.257
+X-47.576Y-34.797
+X-47.576Y-37.337
+X-47.576Y-39.877
+X-47.576Y-42.417
+X-47.576Y-44.957
+X-47.576Y-47.497
+X-47.576Y-50.037
+X-47.576Y-52.577
+X-47.576Y-55.117
+X-47.576Y-57.657
+X-47.576Y-60.197
+X-47.576Y-62.737
+X-47.576Y-65.277
+T4
+X-24.716Y-34.797
+X-24.716Y-37.337
+X-24.716Y-39.877
+X-24.716Y-42.417
+X-24.716Y-44.957
+X-24.716Y-47.497
+X-24.716Y-50.037
+X-24.716Y-52.577
+X-12.016Y-34.797
+X-12.016Y-37.337
+X-12.016Y-39.877
+X-12.016Y-42.417
+X-12.016Y-44.957
+X-12.016Y-47.497
+X-12.016Y-50.037
+X-12.016Y-52.577
+X-24.765Y-9.525
+X-24.765Y-12.065
+X-24.765Y-14.605
+X-24.765Y-17.145
+X-24.765Y-19.685
+X-24.765Y-22.225
+X-24.765Y-24.765
+X-24.765Y-27.305
+X-12.065Y-9.525
+X-12.065Y-12.065
+X-12.065Y-14.605
+X-12.065Y-17.145
+X-12.065Y-19.685
+X-12.065Y-22.225
+X-12.065Y-24.765
+X-12.065Y-27.305
+T5
+X-104.14Y-34.29
+X-104.14Y-39.37
+T0
+M30

+ 307 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER-cache.lib

@@ -0,0 +1,307 @@
+EESchema-LIBRARY Version 2.4
+#encoding utf-8
+#
+# Connector_Generic:Conn_01x02
+#
+DEF Connector_Generic:Conn_01x02 J 0 40 Y N 1 F N
+F0 "J" 0 100 50 H V C CNN
+F1 "Connector_Generic:Conn_01x02" 0 -200 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ Connector*:*_1x??_*
+$ENDFPLIST
+DRAW
+S -50 -95 0 -105 1 1 6 N
+S -50 5 0 -5 1 1 6 N
+S -50 50 50 -150 1 1 10 f
+X Pin_1 1 -200 0 150 R 50 50 1 1 P
+X Pin_2 2 -200 -100 150 R 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Connector_Generic:Conn_01x03
+#
+DEF Connector_Generic:Conn_01x03 J 0 40 Y N 1 F N
+F0 "J" 0 200 50 H V C CNN
+F1 "Connector_Generic:Conn_01x03" 0 -200 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ Connector*:*_1x??_*
+$ENDFPLIST
+DRAW
+S -50 -95 0 -105 1 1 6 N
+S -50 5 0 -5 1 1 6 N
+S -50 105 0 95 1 1 6 N
+S -50 150 50 -150 1 1 10 f
+X Pin_1 1 -200 100 150 R 50 50 1 1 P
+X Pin_2 2 -200 0 150 R 50 50 1 1 P
+X Pin_3 3 -200 -100 150 R 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Connector_Generic:Conn_01x04
+#
+DEF Connector_Generic:Conn_01x04 J 0 40 Y N 1 F N
+F0 "J" 0 200 50 H V C CNN
+F1 "Connector_Generic:Conn_01x04" 0 -300 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ Connector*:*_1x??_*
+$ENDFPLIST
+DRAW
+S -50 -195 0 -205 1 1 6 N
+S -50 -95 0 -105 1 1 6 N
+S -50 5 0 -5 1 1 6 N
+S -50 105 0 95 1 1 6 N
+S -50 150 50 -250 1 1 10 f
+X Pin_1 1 -200 100 150 R 50 50 1 1 P
+X Pin_2 2 -200 0 150 R 50 50 1 1 P
+X Pin_3 3 -200 -100 150 R 50 50 1 1 P
+X Pin_4 4 -200 -200 150 R 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Device:CP
+#
+DEF Device:CP C 0 10 N Y 1 F N
+F0 "C" 25 100 50 H V L CNN
+F1 "Device:CP" 25 -100 50 H V L CNN
+F2 "" 38 -150 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ CP_*
+$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 50 50 1 1 P
+X ~ 2 0 -150 110 U 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Lien:DC-DC_MP1584EN
+#
+DEF Lien:DC-DC_MP1584EN U 0 40 Y Y 1 F N
+F0 "U" 0 -100 50 H V C CNN
+F1 "Lien:DC-DC_MP1584EN" 0 0 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+DRAW
+S -350 -450 350 450 0 1 0 N
+X GND_IN 1 -200 -550 100 U 50 50 1 1 W
+X Vcc_IN 2 200 -550 100 U 50 50 1 1 W
+X GND_OUT 3 -200 550 100 D 50 50 1 1 w
+X Vcc_OUT 4 200 550 100 D 50 50 1 1 w
+ENDDRAW
+ENDDEF
+#
+# Lien:POL_A4988
+#
+DEF Lien:POL_A4988 Dr 0 40 Y Y 1 F N
+F0 "Dr" 0 -100 60 H V C CNN
+F1 "Lien:POL_A4988" 0 50 60 H V C CNN
+F2 "" 0 0 60 H V C CNN
+F3 "" 0 0 60 H V C CNN
+DRAW
+S -550 450 500 -550 0 1 0 N
+X !En 1 -750 300 200 R 50 50 1 1 I
+X VDD 10 700 -300 200 L 50 50 1 1 W
+X 1B 11 700 -200 200 L 50 50 1 1 O
+X 1A 12 700 -100 200 L 50 50 1 1 O
+X 2A 13 700 0 200 L 50 50 1 1 O
+X 2B 14 700 100 200 L 50 50 1 1 O
+X GND 15 700 200 200 L 50 50 1 1 O
+X Vmot 16 700 300 200 L 50 50 1 1 O
+X MS1 2 -750 200 200 R 50 50 1 1 I
+X MS2 3 -750 100 200 R 50 50 1 1 I
+X MS3 4 -750 0 200 R 50 50 1 1 I
+X !RST 5 -750 -100 200 R 50 50 1 1 I
+X !SLP 6 -750 -200 200 R 50 50 1 1 I
+X STEP 7 -750 -300 200 R 50 50 1 1 I
+X DIR 8 -750 -400 200 R 50 50 1 1 I
+X GND 9 700 -400 200 L 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+# Lien:Teensy_3.1
+#
+DEF Lien:Teensy_3.1 U 0 40 Y Y 1 F N
+F0 "U" 50 1050 60 H V C CNN
+F1 "Lien:Teensy_3.1" 100 1500 60 H V C CNN
+F2 "" 100 0 60 H V C CNN
+F3 "" 100 0 60 H V C CNN
+DRAW
+S 800 -1000 -800 1550 0 1 0 N
+X 0(RX1) 0 -1000 1150 197 R 79 79 1 1 B
+X 1(TX1) 1 -1000 1000 197 R 79 79 1 1 B
+X 10(CS)(TX2) 10 -1000 -350 197 R 79 79 1 1 B
+X 11(DOUT) 11 -1000 -500 197 R 79 79 1 1 B
+X 12(DIN) 12 -1000 -650 197 R 79 79 1 1 B
+X 13(LED) 13 1000 -650 197 L 79 79 1 1 B
+X 14/A0 14 1000 -500 197 L 79 79 1 1 B
+X 15/A1 15 1000 -350 197 L 79 79 1 1 B
+X 16/A2 16 1000 -200 197 L 79 79 1 1 B
+X 17/A3 17 1000 -50 197 L 79 79 1 1 B
+X 18/A4 18 1000 100 197 L 79 79 1 1 B
+X 19/A5 19 1000 250 197 L 79 79 1 1 B
+X 2 2 -1000 850 197 R 79 79 1 1 B
+X 20/A6 20 1000 400 197 L 79 79 1 1 B
+X 21/A7 21 1000 550 197 L 79 79 1 1 B
+X 22/A8 22 1000 700 197 L 79 79 1 1 B
+X 23/A9 23 1000 850 197 L 79 79 1 1 B
+X 3.3V 24 1000 1000 197 L 79 79 1 1 w
+X AGND 25 1000 1150 197 L 79 79 1 1 W
+X Vin 26 1000 1300 197 L 79 79 1 1 W
+X GND 27 -1000 1300 197 R 79 79 1 1 W
+X A14 28 350 -1200 197 U 79 79 1 1 B
+X Prog 29 200 -1200 197 U 79 79 1 1 B
+X 3(TX) 3 -1000 700 197 R 79 79 1 1 B
+X GND 30 50 -1200 197 U 79 79 1 1 W
+X 3.3V 31 -100 -1200 197 U 79 79 1 1 W
+X VBat 32 -250 -1200 197 U 79 79 1 1 W
+X 4(RX) 4 -1000 550 197 R 79 79 1 1 B
+X 5 5 -1000 400 197 R 79 79 1 1 B
+X 6 6 -1000 250 197 R 79 79 1 1 B
+X 7(RX3) 7 -1000 100 197 R 79 79 1 1 B
+X 8(TX3) 8 -1000 -50 197 R 79 79 1 1 B
+X 9(RX2) 9 -1000 -200 197 R 79 79 1 1 B
+ENDDRAW
+ENDDEF
+#
+# Lien:W5500
+#
+DEF Lien:W5500 U 0 40 Y Y 1 F N
+F0 "U" 0 -50 50 H V C CNN
+F1 "Lien:W5500" 0 50 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+DRAW
+S -500 200 400 -350 0 1 0 N
+X Gnd 1 -400 -450 100 U 50 50 1 1 W
+X MOSI 2 -300 -450 100 U 50 50 1 1 I
+X SCK 3 -200 -450 100 U 50 50 1 1 I
+X CS 4 -100 -450 100 U 50 50 1 1 I
+X INT 5 0 -450 100 U 50 50 1 1 O
+X MISO 6 100 -450 100 U 50 50 1 1 O
+X RST 7 200 -450 100 U 50 50 1 1 I
+X 3V3 8 300 -450 100 U 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+# Switch:SW_DIP_x03
+#
+DEF Switch:SW_DIP_x03 SW 0 0 Y N 1 F N
+F0 "SW" 0 350 50 H V C CNN
+F1 "Switch:SW_DIP_x03" 0 -150 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ SW?DIP?x3*
+$ENDFPLIST
+DRAW
+C -80 0 20 0 0 0 N
+C -80 100 20 0 0 0 N
+C -80 200 20 0 0 0 N
+C 80 0 20 0 0 0 N
+C 80 100 20 0 0 0 N
+C 80 200 20 0 0 0 N
+S -150 300 150 -100 0 1 10 f
+P 2 0 0 0 -60 5 93 46 N
+P 2 0 0 0 -60 105 93 146 N
+P 2 0 0 0 -60 205 93 246 N
+X ~ 1 -300 200 200 R 50 50 1 1 P
+X ~ 2 -300 100 200 R 50 50 1 1 P
+X ~ 3 -300 0 200 R 50 50 1 1 P
+X ~ 4 300 0 200 L 50 50 1 1 P
+X ~ 5 300 100 200 L 50 50 1 1 P
+X ~ 6 300 200 200 L 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# power:+3.3V
+#
+DEF power:+3.3V #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -150 50 H I C CNN
+F1 "power:+3.3V" 0 140 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I 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
+#
+# power:+36V
+#
+DEF power:+36V #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -150 50 H I C CNN
+F1 "power:+36V" 0 140 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I 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 +36V 1 0 0 0 U 50 50 1 1 W N
+ENDDRAW
+ENDDEF
+#
+# power:+5V
+#
+DEF power:+5V #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -150 50 H I C CNN
+F1 "power:+5V" 0 140 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I 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
+#
+# power:GND
+#
+DEF power:GND #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -250 50 H I C CNN
+F1 "power:GND" 0 -150 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I 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
+#
+# power:GNDPWR
+#
+DEF power:GNDPWR #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -200 50 H I C CNN
+F1 "power:GNDPWR" 0 -130 50 H V C CNN
+F2 "" 0 -50 50 H I C CNN
+F3 "" 0 -50 50 H I C CNN
+DRAW
+P 2 0 1 0 0 -50 0 0 N
+P 3 0 1 8 -40 -50 -50 -80 -50 -80 N
+P 3 0 1 8 -20 -50 -30 -80 -30 -80 N
+P 3 0 1 8 0 -50 -10 -80 -10 -80 N
+P 3 0 1 8 20 -50 10 -80 10 -80 N
+P 3 0 1 8 40 -50 -40 -50 -40 -50 N
+P 4 0 1 8 40 -50 30 -80 30 -80 30 -80 N
+X GNDPWR 1 0 0 0 D 50 50 1 1 W N
+ENDDRAW
+ENDDEF
+#
+#End Library

+ 872 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.bak

@@ -0,0 +1,872 @@
+EESchema Schematic File Version 4
+LIBS:BLOBCNC_FEEDER-cache
+EELAYER 26 0
+EELAYER END
+$Descr A4 11693 8268
+encoding utf-8
+Sheet 1 1
+Title ""
+Date ""
+Rev ""
+Comp ""
+Comment1 ""
+Comment2 ""
+Comment3 ""
+Comment4 ""
+$EndDescr
+$Comp
+L Lien:Teensy_3.1 U2
+U 1 1 5CE4BE2D
+P 5800 3950
+F 0 "U2" H 5800 5687 60  0000 C CNN
+F 1 "Teensy_3.1" H 5800 5581 60  0000 C CNN
+F 2 "" H 5900 3950 60  0000 C CNN
+F 3 "" H 5900 3950 60  0000 C CNN
+	1    5800 3950
+	1    0    0    -1  
+$EndComp
+$Comp
+L Lien:POL_A4988 Dr1
+U 1 1 5CE4BF23
+P 2200 3400
+F 0 "Dr1" H 2175 4037 60  0000 C CNN
+F 1 "POL_A4988" H 2175 3931 60  0000 C CNN
+F 2 "" H 2200 3400 60  0000 C CNN
+F 3 "" H 2200 3400 60  0000 C CNN
+	1    2200 3400
+	-1   0    0    1   
+$EndComp
+$Comp
+L Lien:W5500 U3
+U 1 1 5CE4BFE1
+P 5900 6500
+F 0 "U3" V 6465 6369 50  0000 C CNN
+F 1 "W5500" V 6374 6369 50  0000 C CNN
+F 2 "" H 5900 6500 50  0001 C CNN
+F 3 "" H 5900 6500 50  0001 C CNN
+	1    5900 6500
+	-1   0    0    1   
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J4
+U 1 1 5CE4C0F3
+P 3900 2750
+F 0 "J4" H 3820 2425 50  0000 C CNN
+F 1 "Serial" H 3820 2516 50  0000 C CNN
+F 2 "" H 3900 2750 50  0001 C CNN
+F 3 "~" H 3900 2750 50  0001 C CNN
+	1    3900 2750
+	-1   0    0    1   
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J8
+U 1 1 5CE4C152
+P 9550 3850
+F 0 "J8" H 9470 3525 50  0000 C CNN
+F 1 "IO" H 9470 3616 50  0000 C CNN
+F 2 "" H 9550 3850 50  0001 C CNN
+F 3 "~" H 9550 3850 50  0001 C CNN
+	1    9550 3850
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x02 J1
+U 1 1 5CE28FCD
+P 1000 1100
+F 0 "J1" H 920 775 50  0000 C CNN
+F 1 "POWER_IN" H 920 866 50  0000 C CNN
+F 2 "" H 1000 1100 50  0001 C CNN
+F 3 "~" H 1000 1100 50  0001 C CNN
+	1    1000 1100
+	-1   0    0    1   
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x04 J2
+U 1 1 5CE2912B
+P 1100 3400
+F 0 "J2" H 1020 2975 50  0000 C CNN
+F 1 "Stepper1" H 1020 3066 50  0000 C CNN
+F 2 "" H 1100 3400 50  0001 C CNN
+F 3 "~" H 1100 3400 50  0001 C CNN
+	1    1100 3400
+	-1   0    0    1   
+$EndComp
+$Comp
+L power:GND #PWR022
+U 1 1 5CE2929B
+P 9150 5900
+F 0 "#PWR022" H 9150 5650 50  0001 C CNN
+F 1 "GND" H 9155 5727 50  0000 C CNN
+F 2 "" H 9150 5900 50  0001 C CNN
+F 3 "" H 9150 5900 50  0001 C CNN
+	1    9150 5900
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:+5V #PWR021
+U 1 1 5CE292FF
+P 9000 2450
+F 0 "#PWR021" H 9000 2300 50  0001 C CNN
+F 1 "+5V" H 9015 2623 50  0000 C CNN
+F 2 "" H 9000 2450 50  0001 C CNN
+F 3 "" H 9000 2450 50  0001 C CNN
+	1    9000 2450
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GNDPWR #PWR08
+U 1 1 5CE2937F
+P 1450 1100
+F 0 "#PWR08" H 1450 900 50  0001 C CNN
+F 1 "GNDPWR" H 1454 946 50  0000 C CNN
+F 2 "" H 1450 1050 50  0001 C CNN
+F 3 "" H 1450 1050 50  0001 C CNN
+	1    1450 1100
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:+36V #PWR07
+U 1 1 5CE293F8
+P 1450 950
+F 0 "#PWR07" H 1450 800 50  0001 C CNN
+F 1 "+36V" H 1465 1123 50  0000 C CNN
+F 2 "" H 1450 950 50  0001 C CNN
+F 3 "" H 1450 950 50  0001 C CNN
+	1    1450 950 
+	1    0    0    -1  
+$EndComp
+$Comp
+L Lien:DC-DC_MP1584EN U1
+U 1 1 5CE294AB
+P 2650 1200
+F 0 "U1" V 3165 1200 50  0000 C CNN
+F 1 "DC-DC_MP1584EN" V 3074 1200 50  0000 C CNN
+F 2 "" H 2650 1200 50  0001 C CNN
+F 3 "" H 2650 1200 50  0001 C CNN
+	1    2650 1200
+	0    1    -1   0   
+$EndComp
+Wire Wire Line
+	1200 1000 1450 1000
+Wire Wire Line
+	1450 950  1450 1000
+Connection ~ 1450 1000
+Wire Wire Line
+	1450 1000 2100 1000
+Wire Wire Line
+	1200 1100 1450 1100
+Wire Wire Line
+	2100 1100 2100 1400
+Connection ~ 1450 1100
+Wire Wire Line
+	1450 1100 2100 1100
+$Comp
+L power:+5V #PWR011
+U 1 1 5CE29777
+P 3400 1000
+F 0 "#PWR011" H 3400 850 50  0001 C CNN
+F 1 "+5V" H 3415 1173 50  0000 C CNN
+F 2 "" H 3400 1000 50  0001 C CNN
+F 3 "" H 3400 1000 50  0001 C CNN
+	1    3400 1000
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR012
+U 1 1 5CE29794
+P 3400 1400
+F 0 "#PWR012" H 3400 1150 50  0001 C CNN
+F 1 "GND" H 3405 1227 50  0000 C CNN
+F 2 "" H 3400 1400 50  0001 C CNN
+F 3 "" H 3400 1400 50  0001 C CNN
+	1    3400 1400
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	3200 1400 3400 1400
+Wire Wire Line
+	3400 1000 3200 1000
+$Comp
+L Connector_Generic:Conn_01x03 J7
+U 1 1 5CE299C7
+P 9550 3450
+F 0 "J7" H 9470 3125 50  0000 C CNN
+F 1 "IO" H 9470 3216 50  0000 C CNN
+F 2 "" H 9550 3450 50  0001 C CNN
+F 3 "~" H 9550 3450 50  0001 C CNN
+	1    9550 3450
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J6
+U 1 1 5CE299FD
+P 9550 3050
+F 0 "J6" H 9470 2725 50  0000 C CNN
+F 1 "IO" H 9470 2816 50  0000 C CNN
+F 2 "" H 9550 3050 50  0001 C CNN
+F 3 "~" H 9550 3050 50  0001 C CNN
+	1    9550 3050
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J5
+U 1 1 5CE29A33
+P 9550 2650
+F 0 "J5" H 9470 2325 50  0000 C CNN
+F 1 "IO" H 9470 2416 50  0000 C CNN
+F 2 "" H 9550 2650 50  0001 C CNN
+F 3 "~" H 9550 2650 50  0001 C CNN
+	1    9550 2650
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR016
+U 1 1 5CE2A7C2
+P 4600 2500
+F 0 "#PWR016" H 4600 2250 50  0001 C CNN
+F 1 "GND" H 4605 2327 50  0000 C CNN
+F 2 "" H 4600 2500 50  0001 C CNN
+F 3 "" H 4600 2500 50  0001 C CNN
+	1    4600 2500
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:+5V #PWR019
+U 1 1 5CE2A7E5
+P 7000 2650
+F 0 "#PWR019" H 7000 2500 50  0001 C CNN
+F 1 "+5V" H 7015 2823 50  0000 C CNN
+F 2 "" H 7000 2650 50  0001 C CNN
+F 3 "" H 7000 2650 50  0001 C CNN
+	1    7000 2650
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	6800 2650 7000 2650
+Wire Wire Line
+	4800 2650 4800 2500
+Wire Wire Line
+	4800 2500 4600 2500
+$Comp
+L power:GND #PWR015
+U 1 1 5CE2AA14
+P 4200 2850
+F 0 "#PWR015" H 4200 2600 50  0001 C CNN
+F 1 "GND" H 4205 2677 50  0000 C CNN
+F 2 "" H 4200 2850 50  0001 C CNN
+F 3 "" H 4200 2850 50  0001 C CNN
+	1    4200 2850
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	4200 2850 4100 2850
+Wire Wire Line
+	1500 3500 1300 3500
+Wire Wire Line
+	1500 3400 1300 3400
+Wire Wire Line
+	1500 3300 1300 3300
+Wire Wire Line
+	1500 3200 1300 3200
+Wire Wire Line
+	3400 3000 2950 3000
+Wire Wire Line
+	4800 2800 4400 2800
+Wire Wire Line
+	4400 2800 4400 2650
+Wire Wire Line
+	4400 2650 4100 2650
+Wire Wire Line
+	4800 2950 4350 2950
+Wire Wire Line
+	4350 2950 4350 2750
+Wire Wire Line
+	4350 2750 4100 2750
+Wire Wire Line
+	3400 3100 3400 3000
+Wire Wire Line
+	3400 3100 4800 3100
+Wire Wire Line
+	2950 3100 3350 3100
+Wire Wire Line
+	3350 3100 3350 3250
+Wire Wire Line
+	3350 3250 4800 3250
+Wire Wire Line
+	2950 3200 3000 3200
+Wire Wire Line
+	3000 3200 3000 3300
+Wire Wire Line
+	3000 3300 2950 3300
+$Comp
+L Switch:SW_DIP_x03 SW1
+U 1 1 5CE2E39C
+P 3500 3800
+F 0 "SW1" H 3500 4267 50  0000 C CNN
+F 1 "SW_DIP_x03" H 3500 4176 50  0000 C CNN
+F 2 "" H 3500 3800 50  0001 C CNN
+F 3 "" H 3500 3800 50  0001 C CNN
+	1    3500 3800
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	4800 3400 4150 3400
+Wire Wire Line
+	4150 3400 4150 4050
+Wire Wire Line
+	4150 4050 2950 4050
+Wire Wire Line
+	2950 4050 2950 3700
+Wire Wire Line
+	2950 3400 3200 3400
+Wire Wire Line
+	3200 3400 3200 3600
+Wire Wire Line
+	2950 3500 3150 3500
+Wire Wire Line
+	3150 3500 3150 3700
+Wire Wire Line
+	3150 3700 3200 3700
+Wire Wire Line
+	2950 3600 3100 3600
+Wire Wire Line
+	3100 3600 3100 3800
+Wire Wire Line
+	3100 3800 3200 3800
+$Comp
+L power:+5V #PWR05
+U 1 1 5CE30144
+P 1350 2700
+F 0 "#PWR05" H 1350 2550 50  0001 C CNN
+F 1 "+5V" H 1365 2873 50  0000 C CNN
+F 2 "" H 1350 2700 50  0001 C CNN
+F 3 "" H 1350 2700 50  0001 C CNN
+	1    1350 2700
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR09
+U 1 1 5CE30167
+P 1600 2700
+F 0 "#PWR09" H 1600 2450 50  0001 C CNN
+F 1 "GND" H 1605 2527 50  0000 C CNN
+F 2 "" H 1600 2700 50  0001 C CNN
+F 3 "" H 1600 2700 50  0001 C CNN
+	1    1600 2700
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	1500 3000 1500 2700
+Wire Wire Line
+	1500 2700 1600 2700
+Wire Wire Line
+	1350 2700 1450 2700
+Wire Wire Line
+	1450 2700 1450 3100
+Wire Wire Line
+	1450 3100 1500 3100
+$Comp
+L power:+36V #PWR01
+U 1 1 5CE316E9
+P 600 3900
+F 0 "#PWR01" H 600 3750 50  0001 C CNN
+F 1 "+36V" H 615 4073 50  0000 C CNN
+F 2 "" H 600 3900 50  0001 C CNN
+F 3 "" H 600 3900 50  0001 C CNN
+	1    600  3900
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GNDPWR #PWR02
+U 1 1 5CE3170C
+P 950 3600
+F 0 "#PWR02" H 950 3400 50  0001 C CNN
+F 1 "GNDPWR" H 954 3446 50  0000 C CNN
+F 2 "" H 950 3550 50  0001 C CNN
+F 3 "" H 950 3550 50  0001 C CNN
+	1    950  3600
+	1    0    0    -1  
+$EndComp
+$Comp
+L Device:CP C1
+U 1 1 5CE317CB
+P 1250 3750
+F 0 "C1" H 1368 3796 50  0000 L CNN
+F 1 "CP" H 1368 3705 50  0000 L CNN
+F 2 "" H 1288 3600 50  0001 C CNN
+F 3 "~" H 1250 3750 50  0001 C CNN
+	1    1250 3750
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	1250 3600 1500 3600
+Wire Wire Line
+	1500 3700 1500 3900
+Wire Wire Line
+	1500 3900 1250 3900
+$Comp
+L power:+5V #PWR013
+U 1 1 5CE342DF
+P 3950 3550
+F 0 "#PWR013" H 3950 3400 50  0001 C CNN
+F 1 "+5V" H 3965 3723 50  0000 C CNN
+F 2 "" H 3950 3550 50  0001 C CNN
+F 3 "" H 3950 3550 50  0001 C CNN
+	1    3950 3550
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	3800 3800 3950 3800
+Wire Wire Line
+	3950 3800 3950 3700
+Wire Wire Line
+	3800 3700 3950 3700
+Connection ~ 3950 3700
+Wire Wire Line
+	3950 3700 3950 3600
+Wire Wire Line
+	3800 3600 3950 3600
+Connection ~ 3950 3600
+Wire Wire Line
+	3950 3600 3950 3550
+$Comp
+L Lien:POL_A4988 Dr2
+U 1 1 5CE37FE1
+P 2200 5050
+F 0 "Dr2" H 2175 5687 60  0000 C CNN
+F 1 "POL_A4988" H 2175 5581 60  0000 C CNN
+F 2 "" H 2200 5050 60  0000 C CNN
+F 3 "" H 2200 5050 60  0000 C CNN
+	1    2200 5050
+	-1   0    0    1   
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x04 J3
+U 1 1 5CE37FE7
+P 1100 5050
+F 0 "J3" H 1020 4625 50  0000 C CNN
+F 1 "Stepper1" H 1020 4716 50  0000 C CNN
+F 2 "" H 1100 5050 50  0001 C CNN
+F 3 "~" H 1100 5050 50  0001 C CNN
+	1    1100 5050
+	-1   0    0    1   
+$EndComp
+Wire Wire Line
+	1500 5150 1300 5150
+Wire Wire Line
+	1500 5050 1300 5050
+Wire Wire Line
+	1500 4950 1300 4950
+Wire Wire Line
+	1500 4850 1300 4850
+Wire Wire Line
+	2950 4850 3000 4850
+Wire Wire Line
+	3000 4850 3000 4950
+Wire Wire Line
+	3000 4950 2950 4950
+$Comp
+L Switch:SW_DIP_x03 SW2
+U 1 1 5CE37FF9
+P 3500 5450
+F 0 "SW2" H 3500 5917 50  0000 C CNN
+F 1 "SW_DIP_x03" H 3500 5826 50  0000 C CNN
+F 2 "" H 3500 5450 50  0001 C CNN
+F 3 "" H 3500 5450 50  0001 C CNN
+	1    3500 5450
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	2950 5050 3200 5050
+Wire Wire Line
+	3200 5050 3200 5250
+Wire Wire Line
+	2950 5150 3150 5150
+Wire Wire Line
+	3150 5150 3150 5350
+Wire Wire Line
+	3150 5350 3200 5350
+Wire Wire Line
+	2950 5250 3100 5250
+Wire Wire Line
+	3100 5250 3100 5450
+Wire Wire Line
+	3100 5450 3200 5450
+Wire Wire Line
+	1450 4750 1500 4750
+$Comp
+L power:+36V #PWR03
+U 1 1 5CE3800D
+P 600 5550
+F 0 "#PWR03" H 600 5400 50  0001 C CNN
+F 1 "+36V" H 615 5723 50  0000 C CNN
+F 2 "" H 600 5550 50  0001 C CNN
+F 3 "" H 600 5550 50  0001 C CNN
+	1    600  5550
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GNDPWR #PWR04
+U 1 1 5CE38013
+P 950 5250
+F 0 "#PWR04" H 950 5050 50  0001 C CNN
+F 1 "GNDPWR" H 954 5096 50  0000 C CNN
+F 2 "" H 950 5200 50  0001 C CNN
+F 3 "" H 950 5200 50  0001 C CNN
+	1    950  5250
+	1    0    0    -1  
+$EndComp
+$Comp
+L Device:CP C2
+U 1 1 5CE38019
+P 1250 5400
+F 0 "C2" H 1368 5446 50  0000 L CNN
+F 1 "CP" H 1368 5355 50  0000 L CNN
+F 2 "" H 1288 5250 50  0001 C CNN
+F 3 "~" H 1250 5400 50  0001 C CNN
+	1    1250 5400
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	1250 5250 1500 5250
+Wire Wire Line
+	1500 5350 1500 5550
+Wire Wire Line
+	1500 5550 1250 5550
+$Comp
+L power:+5V #PWR014
+U 1 1 5CE38028
+P 3950 5200
+F 0 "#PWR014" H 3950 5050 50  0001 C CNN
+F 1 "+5V" H 3965 5373 50  0000 C CNN
+F 2 "" H 3950 5200 50  0001 C CNN
+F 3 "" H 3950 5200 50  0001 C CNN
+	1    3950 5200
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	3800 5450 3950 5450
+Wire Wire Line
+	3950 5450 3950 5350
+Wire Wire Line
+	3800 5350 3950 5350
+Connection ~ 3950 5350
+Wire Wire Line
+	3950 5350 3950 5250
+Wire Wire Line
+	3800 5250 3950 5250
+Connection ~ 3950 5250
+Wire Wire Line
+	3950 5250 3950 5200
+$Comp
+L power:+5V #PWR06
+U 1 1 5CE3B15C
+P 1350 4350
+F 0 "#PWR06" H 1350 4200 50  0001 C CNN
+F 1 "+5V" H 1365 4523 50  0000 C CNN
+F 2 "" H 1350 4350 50  0001 C CNN
+F 3 "" H 1350 4350 50  0001 C CNN
+	1    1350 4350
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR010
+U 1 1 5CE3B162
+P 1600 4350
+F 0 "#PWR010" H 1600 4100 50  0001 C CNN
+F 1 "GND" H 1605 4177 50  0000 C CNN
+F 2 "" H 1600 4350 50  0001 C CNN
+F 3 "" H 1600 4350 50  0001 C CNN
+	1    1600 4350
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	1500 4650 1500 4350
+Wire Wire Line
+	1500 4350 1600 4350
+Wire Wire Line
+	1350 4350 1450 4350
+Wire Wire Line
+	1450 4350 1450 4750
+Wire Wire Line
+	4800 3550 4400 3550
+Wire Wire Line
+	4400 3550 4400 4650
+Wire Wire Line
+	4400 4650 2950 4650
+Wire Wire Line
+	4800 3700 4450 3700
+Wire Wire Line
+	4450 3700 4450 4750
+Wire Wire Line
+	4450 4750 2950 4750
+Wire Wire Line
+	4800 3850 4500 3850
+Wire Wire Line
+	4500 3850 4500 5700
+Wire Wire Line
+	4500 5700 2950 5700
+Wire Wire Line
+	2950 5700 2950 5350
+$Comp
+L power:GND #PWR018
+U 1 1 5CE4D9FD
+P 6650 6050
+F 0 "#PWR018" H 6650 5800 50  0001 C CNN
+F 1 "GND" H 6655 5877 50  0000 C CNN
+F 2 "" H 6650 6050 50  0001 C CNN
+F 3 "" H 6650 6050 50  0001 C CNN
+	1    6650 6050
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	6300 6050 6650 6050
+$Comp
+L power:+3.3V #PWR020
+U 1 1 5CE5104F
+P 7000 2950
+F 0 "#PWR020" H 7000 2800 50  0001 C CNN
+F 1 "+3.3V" H 7015 3123 50  0000 C CNN
+F 2 "" H 7000 2950 50  0001 C CNN
+F 3 "" H 7000 2950 50  0001 C CNN
+	1    7000 2950
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	7000 2950 6800 2950
+$Comp
+L power:+3.3V #PWR017
+U 1 1 5CE546A5
+P 5300 6050
+F 0 "#PWR017" H 5300 5900 50  0001 C CNN
+F 1 "+3.3V" H 5315 6223 50  0000 C CNN
+F 2 "" H 5300 6050 50  0001 C CNN
+F 3 "" H 5300 6050 50  0001 C CNN
+	1    5300 6050
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	5300 6050 5600 6050
+Wire Wire Line
+	5800 6050 5800 5650
+Wire Wire Line
+	5800 5650 4800 5650
+Wire Wire Line
+	4800 5650 4800 4600
+Wire Wire Line
+	6200 6050 6200 5600
+Wire Wire Line
+	6200 5600 4750 5600
+Wire Wire Line
+	4750 5600 4750 4450
+Wire Wire Line
+	4750 4450 4800 4450
+Wire Wire Line
+	6000 6050 6000 5550
+Wire Wire Line
+	6000 5550 4700 5550
+Wire Wire Line
+	4700 5550 4700 4300
+Wire Wire Line
+	4700 4300 4800 4300
+Wire Wire Line
+	6100 6050 6100 5750
+Wire Wire Line
+	6100 5750 6800 5750
+Wire Wire Line
+	6800 5750 6800 4600
+$Comp
+L Connector_Generic:Conn_01x03 J12
+U 1 1 5CE845EB
+P 9550 5450
+F 0 "J12" H 9470 5125 50  0000 C CNN
+F 1 "IO" H 9470 5216 50  0000 C CNN
+F 2 "" H 9550 5450 50  0001 C CNN
+F 3 "~" H 9550 5450 50  0001 C CNN
+	1    9550 5450
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J11
+U 1 1 5CE845F1
+P 9550 5050
+F 0 "J11" H 9470 4725 50  0000 C CNN
+F 1 "IO" H 9470 4816 50  0000 C CNN
+F 2 "" H 9550 5050 50  0001 C CNN
+F 3 "~" H 9550 5050 50  0001 C CNN
+	1    9550 5050
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J10
+U 1 1 5CE845F7
+P 9550 4650
+F 0 "J10" H 9470 4325 50  0000 C CNN
+F 1 "IO" H 9470 4416 50  0000 C CNN
+F 2 "" H 9550 4650 50  0001 C CNN
+F 3 "~" H 9550 4650 50  0001 C CNN
+	1    9550 4650
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J9
+U 1 1 5CE845FD
+P 9550 4250
+F 0 "J9" H 9470 3925 50  0000 C CNN
+F 1 "IO" H 9470 4016 50  0000 C CNN
+F 2 "" H 9550 4250 50  0001 C CNN
+F 3 "~" H 9550 4250 50  0001 C CNN
+	1    9550 4250
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	9150 2550 9350 2550
+Wire Wire Line
+	9350 2950 9150 2950
+Connection ~ 9150 2950
+Wire Wire Line
+	9150 2950 9150 2550
+Wire Wire Line
+	9350 3350 9150 3350
+Wire Wire Line
+	9150 2950 9150 3350
+Connection ~ 9150 3350
+Wire Wire Line
+	9150 3350 9150 3750
+Wire Wire Line
+	9350 3750 9150 3750
+Connection ~ 9150 3750
+Wire Wire Line
+	9150 3750 9150 4150
+Wire Wire Line
+	9350 4150 9150 4150
+Connection ~ 9150 4150
+Wire Wire Line
+	9350 4550 9150 4550
+Wire Wire Line
+	9150 4150 9150 4550
+Connection ~ 9150 4550
+Wire Wire Line
+	9150 4550 9150 4950
+Wire Wire Line
+	9350 4950 9150 4950
+Connection ~ 9150 4950
+Wire Wire Line
+	9150 4950 9150 5350
+Wire Wire Line
+	9350 5350 9150 5350
+Connection ~ 9150 5350
+Wire Wire Line
+	9150 5350 9150 5900
+Wire Wire Line
+	9000 2450 9000 2650
+Wire Wire Line
+	9000 5450 9350 5450
+Wire Wire Line
+	9350 5050 9000 5050
+Connection ~ 9000 5050
+Wire Wire Line
+	9000 5050 9000 5450
+Wire Wire Line
+	9350 4650 9000 4650
+Connection ~ 9000 4650
+Wire Wire Line
+	9000 4650 9000 5050
+Wire Wire Line
+	9350 4250 9000 4250
+Connection ~ 9000 4250
+Wire Wire Line
+	9000 4250 9000 4650
+Wire Wire Line
+	9350 3850 9000 3850
+Connection ~ 9000 3850
+Wire Wire Line
+	9000 3850 9000 4250
+Wire Wire Line
+	9350 3450 9000 3450
+Connection ~ 9000 3450
+Wire Wire Line
+	9000 3450 9000 3850
+Wire Wire Line
+	9350 3050 9000 3050
+Connection ~ 9000 3050
+Wire Wire Line
+	9000 3050 9000 3450
+Wire Wire Line
+	9350 2650 9000 2650
+Connection ~ 9000 2650
+Wire Wire Line
+	9000 2650 9000 3050
+Wire Wire Line
+	6800 4450 8050 4450
+Wire Wire Line
+	8050 4450 8050 5550
+Wire Wire Line
+	8050 5550 9350 5550
+Wire Wire Line
+	9350 5150 8100 5150
+Wire Wire Line
+	8100 5150 8100 4300
+Wire Wire Line
+	8100 4300 6800 4300
+Wire Wire Line
+	6800 4150 8150 4150
+Wire Wire Line
+	8150 4150 8150 4750
+Wire Wire Line
+	8150 4750 9350 4750
+Wire Wire Line
+	9350 4350 8200 4350
+Wire Wire Line
+	8200 4350 8200 4000
+Wire Wire Line
+	8200 4000 6800 4000
+Wire Wire Line
+	9350 3950 8250 3950
+Wire Wire Line
+	8250 3950 8250 3850
+Wire Wire Line
+	8250 3850 6800 3850
+Wire Wire Line
+	9350 3550 8250 3550
+Wire Wire Line
+	8250 3550 8250 3700
+Wire Wire Line
+	8250 3700 6800 3700
+Wire Wire Line
+	6800 3550 8200 3550
+Wire Wire Line
+	8200 3550 8200 3150
+Wire Wire Line
+	8200 3150 9350 3150
+Wire Wire Line
+	9350 2750 8150 2750
+Wire Wire Line
+	8150 2750 8150 3400
+Wire Wire Line
+	8150 3400 6800 3400
+NoConn ~ 5550 5150
+NoConn ~ 5700 5150
+NoConn ~ 5850 5150
+NoConn ~ 6000 5150
+NoConn ~ 6150 5150
+NoConn ~ 6800 3250
+NoConn ~ 6800 3100
+Connection ~ 1250 3600
+Connection ~ 1250 3900
+Wire Wire Line
+	950  3600 1250 3600
+Wire Wire Line
+	600  3900 1250 3900
+Connection ~ 1250 5250
+Connection ~ 1250 5550
+Wire Wire Line
+	950  5250 1250 5250
+Wire Wire Line
+	600  5550 1250 5550
+NoConn ~ 4800 4000
+NoConn ~ 4800 4150
+NoConn ~ 6800 2800
+NoConn ~ 5900 6050
+NoConn ~ 5700 6050
+$EndSCHEMATC

ファイルの差分が大きいため隠しています
+ 2280 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.kicad_pcb


ファイルの差分が大きいため隠しています
+ 2265 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.kicad_pcb-bak


+ 493 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.net

@@ -0,0 +1,493 @@
+(export (version D)
+  (design
+    (source "/home/titi/work/projets/Fresnoy/Hadrien Tequi/HTequi/PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.sch")
+    (date "lun. 20 mai 2019 13:54:19 CEST")
+    (tool "Eeschema 5.0.0+dfsg1-2")
+    (sheet (number 1) (name /) (tstamps /)
+      (title_block
+        (title)
+        (company)
+        (rev)
+        (date)
+        (source BLOBCNC_FEEDER.sch)
+        (comment (number 1) (value ""))
+        (comment (number 2) (value ""))
+        (comment (number 3) (value ""))
+        (comment (number 4) (value "")))))
+  (components
+    (comp (ref U2)
+      (value Teensy_3.1)
+      (footprint Lien:Teensy-3.1)
+      (libsource (lib Lien) (part Teensy_3.1) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE4BE2D))
+    (comp (ref Dr1)
+      (value POL_A4988)
+      (footprint Lien:POL_A4988)
+      (libsource (lib Lien) (part POL_A4988) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE4BF23))
+    (comp (ref U3)
+      (value W5500)
+      (footprint Lien:W5500)
+      (libsource (lib Lien) (part W5500) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE4BFE1))
+    (comp (ref J4)
+      (value Serial)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE4C0F3))
+    (comp (ref J8)
+      (value IO)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE4C152))
+    (comp (ref J1)
+      (value POWER_IN)
+      (footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE28FCD))
+    (comp (ref J2)
+      (value Stepper1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE2912B))
+    (comp (ref U1)
+      (value DC-DC_MP1584EN)
+      (footprint "Lien:DC-DC LStepdown M2596")
+      (libsource (lib Lien) (part DC-DC_MP1584EN) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE294AB))
+    (comp (ref J7)
+      (value IO)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE299C7))
+    (comp (ref J6)
+      (value IO)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE299FD))
+    (comp (ref J5)
+      (value IO)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE29A33))
+    (comp (ref SW1)
+      (value SW_DIP_x03)
+      (footprint Button_Switch_THT:SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile)
+      (libsource (lib Switch) (part SW_DIP_x03) (description "3x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE2E39C))
+    (comp (ref C1)
+      (value CP)
+      (footprint Capacitor_THT:CP_Radial_D6.3mm_P2.50mm)
+      (datasheet ~)
+      (libsource (lib Device) (part CP) (description "Polarised capacitor"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE317CB))
+    (comp (ref Dr2)
+      (value POL_A4988)
+      (footprint Lien:POL_A4988)
+      (libsource (lib Lien) (part POL_A4988) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE37FE1))
+    (comp (ref J3)
+      (value Stepper1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE37FE7))
+    (comp (ref SW2)
+      (value SW_DIP_x03)
+      (footprint Button_Switch_THT:SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile)
+      (libsource (lib Switch) (part SW_DIP_x03) (description "3x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE37FF9))
+    (comp (ref C2)
+      (value CP)
+      (footprint Capacitor_THT:CP_Radial_D6.3mm_P2.50mm)
+      (datasheet ~)
+      (libsource (lib Device) (part CP) (description "Polarised capacitor"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE38019))
+    (comp (ref J12)
+      (value IO)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE845EB))
+    (comp (ref J11)
+      (value IO)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE845F1))
+    (comp (ref J10)
+      (value IO)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE845F7))
+    (comp (ref J9)
+      (value IO)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE845FD)))
+  (libparts
+    (libpart (lib Connector_Generic) (part Conn_01x02)
+      (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
+      (docs ~)
+      (footprints
+        (fp Connector*:*_1x??_*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) Conn_01x02))
+      (pins
+        (pin (num 1) (name Pin_1) (type passive))
+        (pin (num 2) (name Pin_2) (type passive))))
+    (libpart (lib Connector_Generic) (part Conn_01x03)
+      (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
+      (docs ~)
+      (footprints
+        (fp Connector*:*_1x??_*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) Conn_01x03))
+      (pins
+        (pin (num 1) (name Pin_1) (type passive))
+        (pin (num 2) (name Pin_2) (type passive))
+        (pin (num 3) (name Pin_3) (type passive))))
+    (libpart (lib Connector_Generic) (part Conn_01x04)
+      (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
+      (docs ~)
+      (footprints
+        (fp Connector*:*_1x??_*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) Conn_01x04))
+      (pins
+        (pin (num 1) (name Pin_1) (type passive))
+        (pin (num 2) (name Pin_2) (type passive))
+        (pin (num 3) (name Pin_3) (type passive))
+        (pin (num 4) (name Pin_4) (type passive))))
+    (libpart (lib Device) (part CP)
+      (description "Polarised capacitor")
+      (docs ~)
+      (footprints
+        (fp CP_*))
+      (fields
+        (field (name Reference) C)
+        (field (name Value) CP))
+      (pins
+        (pin (num 1) (name ~) (type passive))
+        (pin (num 2) (name ~) (type passive))))
+    (libpart (lib Lien) (part DC-DC_MP1584EN)
+      (fields
+        (field (name Reference) U)
+        (field (name Value) DC-DC_MP1584EN))
+      (pins
+        (pin (num 1) (name GND_IN) (type power_in))
+        (pin (num 2) (name Vcc_IN) (type power_in))
+        (pin (num 3) (name GND_OUT) (type power_out))
+        (pin (num 4) (name Vcc_OUT) (type power_out))))
+    (libpart (lib Lien) (part POL_A4988)
+      (fields
+        (field (name Reference) Dr)
+        (field (name Value) POL_A4988))
+      (pins
+        (pin (num 1) (name !En) (type input))
+        (pin (num 2) (name MS1) (type input))
+        (pin (num 3) (name MS2) (type input))
+        (pin (num 4) (name MS3) (type input))
+        (pin (num 5) (name !RST) (type input))
+        (pin (num 6) (name !SLP) (type input))
+        (pin (num 7) (name STEP) (type input))
+        (pin (num 8) (name DIR) (type input))
+        (pin (num 9) (name GND) (type power_in))
+        (pin (num 10) (name VDD) (type power_in))
+        (pin (num 11) (name 1B) (type output))
+        (pin (num 12) (name 1A) (type output))
+        (pin (num 13) (name 2A) (type output))
+        (pin (num 14) (name 2B) (type output))
+        (pin (num 15) (name GND) (type output))
+        (pin (num 16) (name Vmot) (type output))))
+    (libpart (lib Lien) (part Teensy_3.1)
+      (fields
+        (field (name Reference) U)
+        (field (name Value) Teensy_3.1))
+      (pins
+        (pin (num 0) (name "0(RX1)") (type BiDi))
+        (pin (num 1) (name "1(TX1)") (type BiDi))
+        (pin (num 2) (name 2) (type BiDi))
+        (pin (num 3) (name "3(TX)") (type BiDi))
+        (pin (num 4) (name "4(RX)") (type BiDi))
+        (pin (num 5) (name 5) (type BiDi))
+        (pin (num 6) (name 6) (type BiDi))
+        (pin (num 7) (name "7(RX3)") (type BiDi))
+        (pin (num 8) (name "8(TX3)") (type BiDi))
+        (pin (num 9) (name "9(RX2)") (type BiDi))
+        (pin (num 10) (name "10(CS)(TX2)") (type BiDi))
+        (pin (num 11) (name "11(DOUT)") (type BiDi))
+        (pin (num 12) (name "12(DIN)") (type BiDi))
+        (pin (num 13) (name "13(LED)") (type BiDi))
+        (pin (num 14) (name 14/A0) (type BiDi))
+        (pin (num 15) (name 15/A1) (type BiDi))
+        (pin (num 16) (name 16/A2) (type BiDi))
+        (pin (num 17) (name 17/A3) (type BiDi))
+        (pin (num 18) (name 18/A4) (type BiDi))
+        (pin (num 19) (name 19/A5) (type BiDi))
+        (pin (num 20) (name 20/A6) (type BiDi))
+        (pin (num 21) (name 21/A7) (type BiDi))
+        (pin (num 22) (name 22/A8) (type BiDi))
+        (pin (num 23) (name 23/A9) (type BiDi))
+        (pin (num 24) (name 3.3V) (type power_out))
+        (pin (num 25) (name AGND) (type power_in))
+        (pin (num 26) (name Vin) (type power_in))
+        (pin (num 27) (name GND) (type power_in))
+        (pin (num 28) (name A14) (type BiDi))
+        (pin (num 29) (name Prog) (type BiDi))
+        (pin (num 30) (name GND) (type power_in))
+        (pin (num 31) (name 3.3V) (type power_in))
+        (pin (num 32) (name VBat) (type power_in))))
+    (libpart (lib Lien) (part W5500)
+      (fields
+        (field (name Reference) U)
+        (field (name Value) W5500))
+      (pins
+        (pin (num 1) (name Gnd) (type power_in))
+        (pin (num 2) (name MOSI) (type input))
+        (pin (num 3) (name SCK) (type input))
+        (pin (num 4) (name CS) (type input))
+        (pin (num 5) (name INT) (type output))
+        (pin (num 6) (name MISO) (type output))
+        (pin (num 7) (name RST) (type input))
+        (pin (num 8) (name 3V3) (type power_in))))
+    (libpart (lib Switch) (part SW_DIP_x03)
+      (description "3x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol")
+      (footprints
+        (fp SW?DIP?x3*))
+      (fields
+        (field (name Reference) SW)
+        (field (name Value) SW_DIP_x03))
+      (pins
+        (pin (num 1) (name ~) (type passive))
+        (pin (num 2) (name ~) (type passive))
+        (pin (num 3) (name ~) (type passive))
+        (pin (num 4) (name ~) (type passive))
+        (pin (num 5) (name ~) (type passive))
+        (pin (num 6) (name ~) (type passive)))))
+  (libraries
+    (library (logical Connector_Generic)
+      (uri /usr/share/kicad/library/Connector_Generic.lib))
+    (library (logical Device)
+      (uri /usr/share/kicad/library/Device.lib))
+    (library (logical Lien)
+      (uri /home/titi/work/dev/pcb/kicad_lien/kicad_lien.lib))
+    (library (logical Switch)
+      (uri /usr/share/kicad/library/Switch.lib)))
+  (nets
+    (net (code 1) (name +3V3)
+      (node (ref U3) (pin 8))
+      (node (ref U2) (pin 24)))
+    (net (code 2) (name GND)
+      (node (ref Dr2) (pin 9))
+      (node (ref J9) (pin 1))
+      (node (ref J6) (pin 1))
+      (node (ref J5) (pin 1))
+      (node (ref J8) (pin 1))
+      (node (ref U2) (pin 27))
+      (node (ref U1) (pin 3))
+      (node (ref Dr1) (pin 9))
+      (node (ref J7) (pin 1))
+      (node (ref U3) (pin 1))
+      (node (ref J4) (pin 1))
+      (node (ref J11) (pin 1))
+      (node (ref J12) (pin 1))
+      (node (ref J10) (pin 1)))
+    (net (code 3) (name "Net-(Dr2-Pad1)")
+      (node (ref Dr2) (pin 1))
+      (node (ref U2) (pin 7)))
+    (net (code 4) (name "Net-(Dr2-Pad7)")
+      (node (ref U2) (pin 6))
+      (node (ref Dr2) (pin 7)))
+    (net (code 5) (name "Net-(Dr2-Pad8)")
+      (node (ref Dr2) (pin 8))
+      (node (ref U2) (pin 5)))
+    (net (code 6) (name +5V)
+      (node (ref J12) (pin 2))
+      (node (ref SW2) (pin 6))
+      (node (ref SW2) (pin 5))
+      (node (ref U1) (pin 4))
+      (node (ref J11) (pin 2))
+      (node (ref U2) (pin 26))
+      (node (ref J7) (pin 2))
+      (node (ref Dr1) (pin 10))
+      (node (ref J8) (pin 2))
+      (node (ref J9) (pin 2))
+      (node (ref J10) (pin 2))
+      (node (ref SW2) (pin 4))
+      (node (ref Dr2) (pin 10))
+      (node (ref SW1) (pin 5))
+      (node (ref J5) (pin 2))
+      (node (ref SW1) (pin 4))
+      (node (ref SW1) (pin 6))
+      (node (ref J6) (pin 2)))
+    (net (code 7) (name "Net-(J10-Pad3)")
+      (node (ref U2) (pin 16))
+      (node (ref J10) (pin 3)))
+    (net (code 8) (name "Net-(J12-Pad3)")
+      (node (ref U2) (pin 14))
+      (node (ref J12) (pin 3)))
+    (net (code 9) (name "Net-(U2-Pad13)")
+      (node (ref U3) (pin 3))
+      (node (ref U2) (pin 13)))
+    (net (code 10) (name "Net-(U2-Pad10)")
+      (node (ref U2) (pin 10))
+      (node (ref U3) (pin 4)))
+    (net (code 11) (name "Net-(U2-Pad11)")
+      (node (ref U3) (pin 2))
+      (node (ref U2) (pin 11)))
+    (net (code 12) (name "Net-(U2-Pad12)")
+      (node (ref U2) (pin 12))
+      (node (ref U3) (pin 6)))
+    (net (code 13) (name "Net-(Dr2-Pad4)")
+      (node (ref SW2) (pin 1))
+      (node (ref Dr2) (pin 4)))
+    (net (code 14) (name "Net-(Dr2-Pad2)")
+      (node (ref SW2) (pin 3))
+      (node (ref Dr2) (pin 2)))
+    (net (code 15) (name "Net-(Dr2-Pad3)")
+      (node (ref SW2) (pin 2))
+      (node (ref Dr2) (pin 3)))
+    (net (code 16) (name "Net-(Dr2-Pad5)")
+      (node (ref Dr2) (pin 5))
+      (node (ref Dr2) (pin 6)))
+    (net (code 17) (name "Net-(Dr2-Pad11)")
+      (node (ref Dr2) (pin 11))
+      (node (ref J3) (pin 4)))
+    (net (code 18) (name "Net-(Dr2-Pad12)")
+      (node (ref J3) (pin 3))
+      (node (ref Dr2) (pin 12)))
+    (net (code 19) (name "Net-(Dr2-Pad13)")
+      (node (ref J3) (pin 2))
+      (node (ref Dr2) (pin 13)))
+    (net (code 20) (name "Net-(Dr2-Pad14)")
+      (node (ref Dr2) (pin 14))
+      (node (ref J3) (pin 1)))
+    (net (code 21) (name GNDPWR)
+      (node (ref J1) (pin 1))
+      (node (ref C1) (pin 2))
+      (node (ref C2) (pin 2))
+      (node (ref Dr1) (pin 15))
+      (node (ref Dr2) (pin 15))
+      (node (ref U1) (pin 1)))
+    (net (code 22) (name +36V)
+      (node (ref J1) (pin 2))
+      (node (ref Dr1) (pin 16))
+      (node (ref U1) (pin 2))
+      (node (ref Dr2) (pin 16))
+      (node (ref C2) (pin 1))
+      (node (ref C1) (pin 1)))
+    (net (code 23) (name "Net-(J9-Pad3)")
+      (node (ref U2) (pin 17))
+      (node (ref J9) (pin 3)))
+    (net (code 24) (name "Net-(J5-Pad3)")
+      (node (ref J5) (pin 3))
+      (node (ref U2) (pin 21)))
+    (net (code 25) (name "Net-(J6-Pad3)")
+      (node (ref J6) (pin 3))
+      (node (ref U2) (pin 20)))
+    (net (code 26) (name "Net-(J7-Pad3)")
+      (node (ref J7) (pin 3))
+      (node (ref U2) (pin 19)))
+    (net (code 27) (name "Net-(J8-Pad3)")
+      (node (ref J8) (pin 3))
+      (node (ref U2) (pin 18)))
+    (net (code 28) (name "Net-(J11-Pad3)")
+      (node (ref U2) (pin 15))
+      (node (ref J11) (pin 3)))
+    (net (code 29) (name "Net-(U2-Pad8)")
+      (node (ref U2) (pin 8)))
+    (net (code 30) (name "Net-(U3-Pad7)")
+      (node (ref U3) (pin 7)))
+    (net (code 31) (name "Net-(U3-Pad5)")
+      (node (ref U3) (pin 5)))
+    (net (code 32) (name "Net-(U2-Pad25)")
+      (node (ref U2) (pin 25)))
+    (net (code 33) (name "Net-(U2-Pad9)")
+      (node (ref U2) (pin 9)))
+    (net (code 34) (name "Net-(U2-Pad23)")
+      (node (ref U2) (pin 23)))
+    (net (code 35) (name "Net-(U2-Pad22)")
+      (node (ref U2) (pin 22)))
+    (net (code 36) (name "Net-(U2-Pad28)")
+      (node (ref U2) (pin 28)))
+    (net (code 37) (name "Net-(U2-Pad29)")
+      (node (ref U2) (pin 29)))
+    (net (code 38) (name "Net-(U2-Pad30)")
+      (node (ref U2) (pin 30)))
+    (net (code 39) (name "Net-(U2-Pad31)")
+      (node (ref U2) (pin 31)))
+    (net (code 40) (name "Net-(U2-Pad32)")
+      (node (ref U2) (pin 32)))
+    (net (code 41) (name "Net-(J4-Pad2)")
+      (node (ref J4) (pin 2))
+      (node (ref U2) (pin 1)))
+    (net (code 42) (name "Net-(Dr1-Pad8)")
+      (node (ref U2) (pin 2))
+      (node (ref Dr1) (pin 8)))
+    (net (code 43) (name "Net-(Dr1-Pad7)")
+      (node (ref U2) (pin 3))
+      (node (ref Dr1) (pin 7)))
+    (net (code 44) (name "Net-(Dr1-Pad12)")
+      (node (ref J2) (pin 3))
+      (node (ref Dr1) (pin 12)))
+    (net (code 45) (name "Net-(Dr1-Pad14)")
+      (node (ref J2) (pin 1))
+      (node (ref Dr1) (pin 14)))
+    (net (code 46) (name "Net-(Dr1-Pad13)")
+      (node (ref J2) (pin 2))
+      (node (ref Dr1) (pin 13)))
+    (net (code 47) (name "Net-(Dr1-Pad11)")
+      (node (ref Dr1) (pin 11))
+      (node (ref J2) (pin 4)))
+    (net (code 48) (name "Net-(Dr1-Pad1)")
+      (node (ref Dr1) (pin 1))
+      (node (ref U2) (pin 4)))
+    (net (code 49) (name "Net-(Dr1-Pad2)")
+      (node (ref Dr1) (pin 2))
+      (node (ref SW1) (pin 3)))
+    (net (code 50) (name "Net-(Dr1-Pad3)")
+      (node (ref SW1) (pin 2))
+      (node (ref Dr1) (pin 3)))
+    (net (code 51) (name "Net-(Dr1-Pad4)")
+      (node (ref Dr1) (pin 4))
+      (node (ref SW1) (pin 1)))
+    (net (code 52) (name "Net-(J4-Pad3)")
+      (node (ref U2) (pin 0))
+      (node (ref J4) (pin 3)))
+    (net (code 53) (name "Net-(Dr1-Pad5)")
+      (node (ref Dr1) (pin 5))
+      (node (ref Dr1) (pin 6)))))

+ 33 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.pro

@@ -0,0 +1,33 @@
+update=22/05/2015 07:44:53
+version=1
+last_client=kicad
+[general]
+version=1
+RootSch=
+BoardNm=
+[pcbnew]
+version=1
+LastNetListRead=
+UseCmpFile=1
+PadDrill=0.600000000000
+PadDrillOvalY=0.600000000000
+PadSizeH=1.500000000000
+PadSizeV=1.500000000000
+PcbTextSizeV=1.500000000000
+PcbTextSizeH=1.500000000000
+PcbTextThickness=0.300000000000
+ModuleTextSizeV=1.000000000000
+ModuleTextSizeH=1.000000000000
+ModuleTextSizeThickness=0.150000000000
+SolderMaskClearance=0.000000000000
+SolderMaskMinWidth=0.000000000000
+DrawSegmentWidth=0.200000000000
+BoardOutlineThickness=0.100000000000
+ModuleOutlineThickness=0.150000000000
+[cvpcb]
+version=1
+NetIExt=net
+[eeschema]
+version=1
+LibDir=
+[eeschema/libraries]

+ 872 - 0
PCB/BLOBCNC_FEEDER/BLOBCNC_FEEDER.sch

@@ -0,0 +1,872 @@
+EESchema Schematic File Version 4
+LIBS:BLOBCNC_FEEDER-cache
+EELAYER 26 0
+EELAYER END
+$Descr A4 11693 8268
+encoding utf-8
+Sheet 1 1
+Title ""
+Date ""
+Rev ""
+Comp ""
+Comment1 ""
+Comment2 ""
+Comment3 ""
+Comment4 ""
+$EndDescr
+$Comp
+L Lien:Teensy_3.1 U2
+U 1 1 5CE4BE2D
+P 5800 3950
+F 0 "U2" H 5800 5687 60  0000 C CNN
+F 1 "Teensy_3.1" H 5800 5581 60  0000 C CNN
+F 2 "Lien:Teensy-3.1" H 5900 3950 60  0001 C CNN
+F 3 "" H 5900 3950 60  0000 C CNN
+	1    5800 3950
+	1    0    0    -1  
+$EndComp
+$Comp
+L Lien:POL_A4988 Dr1
+U 1 1 5CE4BF23
+P 2200 3400
+F 0 "Dr1" H 2175 4037 60  0000 C CNN
+F 1 "POL_A4988" H 2175 3931 60  0000 C CNN
+F 2 "Lien:POL_A4988" H 2200 3400 60  0001 C CNN
+F 3 "" H 2200 3400 60  0000 C CNN
+	1    2200 3400
+	-1   0    0    1   
+$EndComp
+$Comp
+L Lien:W5500 U3
+U 1 1 5CE4BFE1
+P 5900 6500
+F 0 "U3" V 6465 6369 50  0000 C CNN
+F 1 "W5500" V 6374 6369 50  0000 C CNN
+F 2 "Lien:W5500" H 5900 6500 50  0001 C CNN
+F 3 "" H 5900 6500 50  0001 C CNN
+	1    5900 6500
+	-1   0    0    1   
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J4
+U 1 1 5CE4C0F3
+P 3900 2750
+F 0 "J4" H 3820 2425 50  0000 C CNN
+F 1 "Serial" H 3820 2516 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 3900 2750 50  0001 C CNN
+F 3 "~" H 3900 2750 50  0001 C CNN
+	1    3900 2750
+	-1   0    0    1   
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J8
+U 1 1 5CE4C152
+P 9550 3850
+F 0 "J8" H 9470 3525 50  0000 C CNN
+F 1 "IO" H 9470 3616 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 9550 3850 50  0001 C CNN
+F 3 "~" H 9550 3850 50  0001 C CNN
+	1    9550 3850
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x02 J1
+U 1 1 5CE28FCD
+P 1000 1100
+F 0 "J1" H 920 775 50  0000 C CNN
+F 1 "POWER_IN" H 920 866 50  0000 C CNN
+F 2 "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" H 1000 1100 50  0001 C CNN
+F 3 "~" H 1000 1100 50  0001 C CNN
+	1    1000 1100
+	-1   0    0    1   
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x04 J2
+U 1 1 5CE2912B
+P 1100 3400
+F 0 "J2" H 1020 2975 50  0000 C CNN
+F 1 "Stepper1" H 1020 3066 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 1100 3400 50  0001 C CNN
+F 3 "~" H 1100 3400 50  0001 C CNN
+	1    1100 3400
+	-1   0    0    1   
+$EndComp
+$Comp
+L power:GND #PWR022
+U 1 1 5CE2929B
+P 9150 5900
+F 0 "#PWR022" H 9150 5650 50  0001 C CNN
+F 1 "GND" H 9155 5727 50  0000 C CNN
+F 2 "" H 9150 5900 50  0001 C CNN
+F 3 "" H 9150 5900 50  0001 C CNN
+	1    9150 5900
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:+5V #PWR021
+U 1 1 5CE292FF
+P 9000 2450
+F 0 "#PWR021" H 9000 2300 50  0001 C CNN
+F 1 "+5V" H 9015 2623 50  0000 C CNN
+F 2 "" H 9000 2450 50  0001 C CNN
+F 3 "" H 9000 2450 50  0001 C CNN
+	1    9000 2450
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GNDPWR #PWR08
+U 1 1 5CE2937F
+P 1450 1100
+F 0 "#PWR08" H 1450 900 50  0001 C CNN
+F 1 "GNDPWR" H 1454 946 50  0000 C CNN
+F 2 "" H 1450 1050 50  0001 C CNN
+F 3 "" H 1450 1050 50  0001 C CNN
+	1    1450 1100
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:+36V #PWR07
+U 1 1 5CE293F8
+P 1450 950
+F 0 "#PWR07" H 1450 800 50  0001 C CNN
+F 1 "+36V" H 1465 1123 50  0000 C CNN
+F 2 "" H 1450 950 50  0001 C CNN
+F 3 "" H 1450 950 50  0001 C CNN
+	1    1450 950 
+	1    0    0    -1  
+$EndComp
+$Comp
+L Lien:DC-DC_MP1584EN U1
+U 1 1 5CE294AB
+P 2650 1200
+F 0 "U1" V 3165 1200 50  0000 C CNN
+F 1 "DC-DC_MP1584EN" V 3074 1200 50  0000 C CNN
+F 2 "Lien:DC-DC LStepdown M2596" H 2650 1200 50  0001 C CNN
+F 3 "" H 2650 1200 50  0001 C CNN
+	1    2650 1200
+	0    1    -1   0   
+$EndComp
+Wire Wire Line
+	1200 1000 1450 1000
+Wire Wire Line
+	1450 950  1450 1000
+Connection ~ 1450 1000
+Wire Wire Line
+	1450 1000 2100 1000
+Wire Wire Line
+	1200 1100 1450 1100
+Wire Wire Line
+	2100 1100 2100 1400
+Connection ~ 1450 1100
+Wire Wire Line
+	1450 1100 2100 1100
+$Comp
+L power:+5V #PWR011
+U 1 1 5CE29777
+P 3400 1000
+F 0 "#PWR011" H 3400 850 50  0001 C CNN
+F 1 "+5V" H 3415 1173 50  0000 C CNN
+F 2 "" H 3400 1000 50  0001 C CNN
+F 3 "" H 3400 1000 50  0001 C CNN
+	1    3400 1000
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR012
+U 1 1 5CE29794
+P 3400 1400
+F 0 "#PWR012" H 3400 1150 50  0001 C CNN
+F 1 "GND" H 3405 1227 50  0000 C CNN
+F 2 "" H 3400 1400 50  0001 C CNN
+F 3 "" H 3400 1400 50  0001 C CNN
+	1    3400 1400
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	3200 1400 3400 1400
+Wire Wire Line
+	3400 1000 3200 1000
+$Comp
+L Connector_Generic:Conn_01x03 J7
+U 1 1 5CE299C7
+P 9550 3450
+F 0 "J7" H 9470 3125 50  0000 C CNN
+F 1 "IO" H 9470 3216 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 9550 3450 50  0001 C CNN
+F 3 "~" H 9550 3450 50  0001 C CNN
+	1    9550 3450
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J6
+U 1 1 5CE299FD
+P 9550 3050
+F 0 "J6" H 9470 2725 50  0000 C CNN
+F 1 "IO" H 9470 2816 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 9550 3050 50  0001 C CNN
+F 3 "~" H 9550 3050 50  0001 C CNN
+	1    9550 3050
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J5
+U 1 1 5CE29A33
+P 9550 2650
+F 0 "J5" H 9470 2325 50  0000 C CNN
+F 1 "IO" H 9470 2416 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 9550 2650 50  0001 C CNN
+F 3 "~" H 9550 2650 50  0001 C CNN
+	1    9550 2650
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR016
+U 1 1 5CE2A7C2
+P 4600 2500
+F 0 "#PWR016" H 4600 2250 50  0001 C CNN
+F 1 "GND" H 4605 2327 50  0000 C CNN
+F 2 "" H 4600 2500 50  0001 C CNN
+F 3 "" H 4600 2500 50  0001 C CNN
+	1    4600 2500
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:+5V #PWR019
+U 1 1 5CE2A7E5
+P 7000 2650
+F 0 "#PWR019" H 7000 2500 50  0001 C CNN
+F 1 "+5V" H 7015 2823 50  0000 C CNN
+F 2 "" H 7000 2650 50  0001 C CNN
+F 3 "" H 7000 2650 50  0001 C CNN
+	1    7000 2650
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	6800 2650 7000 2650
+Wire Wire Line
+	4800 2650 4800 2500
+Wire Wire Line
+	4800 2500 4600 2500
+$Comp
+L power:GND #PWR015
+U 1 1 5CE2AA14
+P 4200 2850
+F 0 "#PWR015" H 4200 2600 50  0001 C CNN
+F 1 "GND" H 4205 2677 50  0000 C CNN
+F 2 "" H 4200 2850 50  0001 C CNN
+F 3 "" H 4200 2850 50  0001 C CNN
+	1    4200 2850
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	4200 2850 4100 2850
+Wire Wire Line
+	1500 3500 1300 3500
+Wire Wire Line
+	1500 3400 1300 3400
+Wire Wire Line
+	1500 3300 1300 3300
+Wire Wire Line
+	1500 3200 1300 3200
+Wire Wire Line
+	3400 3000 2950 3000
+Wire Wire Line
+	4800 2800 4400 2800
+Wire Wire Line
+	4400 2800 4400 2650
+Wire Wire Line
+	4400 2650 4100 2650
+Wire Wire Line
+	4800 2950 4350 2950
+Wire Wire Line
+	4350 2950 4350 2750
+Wire Wire Line
+	4350 2750 4100 2750
+Wire Wire Line
+	3400 3100 3400 3000
+Wire Wire Line
+	3400 3100 4800 3100
+Wire Wire Line
+	2950 3100 3350 3100
+Wire Wire Line
+	3350 3100 3350 3250
+Wire Wire Line
+	3350 3250 4800 3250
+Wire Wire Line
+	2950 3200 3000 3200
+Wire Wire Line
+	3000 3200 3000 3300
+Wire Wire Line
+	3000 3300 2950 3300
+$Comp
+L Switch:SW_DIP_x03 SW1
+U 1 1 5CE2E39C
+P 3500 3800
+F 0 "SW1" H 3500 4267 50  0000 C CNN
+F 1 "SW_DIP_x03" H 3500 4176 50  0000 C CNN
+F 2 "Button_Switch_THT:SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile" H 3500 3800 50  0001 C CNN
+F 3 "" H 3500 3800 50  0001 C CNN
+	1    3500 3800
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	4800 3400 4150 3400
+Wire Wire Line
+	4150 3400 4150 4050
+Wire Wire Line
+	4150 4050 2950 4050
+Wire Wire Line
+	2950 4050 2950 3700
+Wire Wire Line
+	2950 3400 3200 3400
+Wire Wire Line
+	3200 3400 3200 3600
+Wire Wire Line
+	2950 3500 3150 3500
+Wire Wire Line
+	3150 3500 3150 3700
+Wire Wire Line
+	3150 3700 3200 3700
+Wire Wire Line
+	2950 3600 3100 3600
+Wire Wire Line
+	3100 3600 3100 3800
+Wire Wire Line
+	3100 3800 3200 3800
+$Comp
+L power:+5V #PWR05
+U 1 1 5CE30144
+P 1350 2700
+F 0 "#PWR05" H 1350 2550 50  0001 C CNN
+F 1 "+5V" H 1365 2873 50  0000 C CNN
+F 2 "" H 1350 2700 50  0001 C CNN
+F 3 "" H 1350 2700 50  0001 C CNN
+	1    1350 2700
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR09
+U 1 1 5CE30167
+P 1600 2700
+F 0 "#PWR09" H 1600 2450 50  0001 C CNN
+F 1 "GND" H 1605 2527 50  0000 C CNN
+F 2 "" H 1600 2700 50  0001 C CNN
+F 3 "" H 1600 2700 50  0001 C CNN
+	1    1600 2700
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	1500 3000 1500 2700
+Wire Wire Line
+	1500 2700 1600 2700
+Wire Wire Line
+	1350 2700 1450 2700
+Wire Wire Line
+	1450 2700 1450 3100
+Wire Wire Line
+	1450 3100 1500 3100
+$Comp
+L power:+36V #PWR01
+U 1 1 5CE316E9
+P 600 3900
+F 0 "#PWR01" H 600 3750 50  0001 C CNN
+F 1 "+36V" H 615 4073 50  0000 C CNN
+F 2 "" H 600 3900 50  0001 C CNN
+F 3 "" H 600 3900 50  0001 C CNN
+	1    600  3900
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GNDPWR #PWR02
+U 1 1 5CE3170C
+P 950 3600
+F 0 "#PWR02" H 950 3400 50  0001 C CNN
+F 1 "GNDPWR" H 954 3446 50  0000 C CNN
+F 2 "" H 950 3550 50  0001 C CNN
+F 3 "" H 950 3550 50  0001 C CNN
+	1    950  3600
+	1    0    0    -1  
+$EndComp
+$Comp
+L Device:CP C1
+U 1 1 5CE317CB
+P 1250 3750
+F 0 "C1" H 1132 3704 50  0000 R CNN
+F 1 "CP" H 1132 3795 50  0000 R CNN
+F 2 "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" H 1288 3600 50  0001 C CNN
+F 3 "~" H 1250 3750 50  0001 C CNN
+	1    1250 3750
+	-1   0    0    1   
+$EndComp
+$Comp
+L power:+5V #PWR013
+U 1 1 5CE342DF
+P 3950 3550
+F 0 "#PWR013" H 3950 3400 50  0001 C CNN
+F 1 "+5V" H 3965 3723 50  0000 C CNN
+F 2 "" H 3950 3550 50  0001 C CNN
+F 3 "" H 3950 3550 50  0001 C CNN
+	1    3950 3550
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	3800 3800 3950 3800
+Wire Wire Line
+	3950 3800 3950 3700
+Wire Wire Line
+	3800 3700 3950 3700
+Connection ~ 3950 3700
+Wire Wire Line
+	3950 3700 3950 3600
+Wire Wire Line
+	3800 3600 3950 3600
+Connection ~ 3950 3600
+Wire Wire Line
+	3950 3600 3950 3550
+$Comp
+L Lien:POL_A4988 Dr2
+U 1 1 5CE37FE1
+P 2200 5050
+F 0 "Dr2" H 2175 5687 60  0000 C CNN
+F 1 "POL_A4988" H 2175 5581 60  0000 C CNN
+F 2 "Lien:POL_A4988" H 2200 5050 60  0001 C CNN
+F 3 "" H 2200 5050 60  0000 C CNN
+	1    2200 5050
+	-1   0    0    1   
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x04 J3
+U 1 1 5CE37FE7
+P 1100 5050
+F 0 "J3" H 1020 4625 50  0000 C CNN
+F 1 "Stepper1" H 1020 4716 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 1100 5050 50  0001 C CNN
+F 3 "~" H 1100 5050 50  0001 C CNN
+	1    1100 5050
+	-1   0    0    1   
+$EndComp
+Wire Wire Line
+	1500 5150 1300 5150
+Wire Wire Line
+	1500 5050 1300 5050
+Wire Wire Line
+	1500 4950 1300 4950
+Wire Wire Line
+	1500 4850 1300 4850
+Wire Wire Line
+	2950 4850 3000 4850
+Wire Wire Line
+	3000 4850 3000 4950
+Wire Wire Line
+	3000 4950 2950 4950
+$Comp
+L Switch:SW_DIP_x03 SW2
+U 1 1 5CE37FF9
+P 3500 5450
+F 0 "SW2" H 3500 5917 50  0000 C CNN
+F 1 "SW_DIP_x03" H 3500 5826 50  0000 C CNN
+F 2 "Button_Switch_THT:SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile" H 3500 5450 50  0001 C CNN
+F 3 "" H 3500 5450 50  0001 C CNN
+	1    3500 5450
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	2950 5050 3200 5050
+Wire Wire Line
+	3200 5050 3200 5250
+Wire Wire Line
+	2950 5150 3150 5150
+Wire Wire Line
+	3150 5150 3150 5350
+Wire Wire Line
+	3150 5350 3200 5350
+Wire Wire Line
+	2950 5250 3100 5250
+Wire Wire Line
+	3100 5250 3100 5450
+Wire Wire Line
+	3100 5450 3200 5450
+Wire Wire Line
+	1450 4750 1500 4750
+$Comp
+L power:+36V #PWR03
+U 1 1 5CE3800D
+P 600 5550
+F 0 "#PWR03" H 600 5400 50  0001 C CNN
+F 1 "+36V" H 615 5723 50  0000 C CNN
+F 2 "" H 600 5550 50  0001 C CNN
+F 3 "" H 600 5550 50  0001 C CNN
+	1    600  5550
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GNDPWR #PWR04
+U 1 1 5CE38013
+P 950 5250
+F 0 "#PWR04" H 950 5050 50  0001 C CNN
+F 1 "GNDPWR" H 954 5096 50  0000 C CNN
+F 2 "" H 950 5200 50  0001 C CNN
+F 3 "" H 950 5200 50  0001 C CNN
+	1    950  5250
+	1    0    0    -1  
+$EndComp
+$Comp
+L Device:CP C2
+U 1 1 5CE38019
+P 1250 5400
+F 0 "C2" H 1132 5354 50  0000 R CNN
+F 1 "CP" H 1132 5445 50  0000 R CNN
+F 2 "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" H 1288 5250 50  0001 C CNN
+F 3 "~" H 1250 5400 50  0001 C CNN
+	1    1250 5400
+	-1   0    0    1   
+$EndComp
+Wire Wire Line
+	1250 5250 1500 5250
+Wire Wire Line
+	1500 5350 1500 5550
+Wire Wire Line
+	1500 5550 1250 5550
+$Comp
+L power:+5V #PWR014
+U 1 1 5CE38028
+P 3950 5200
+F 0 "#PWR014" H 3950 5050 50  0001 C CNN
+F 1 "+5V" H 3965 5373 50  0000 C CNN
+F 2 "" H 3950 5200 50  0001 C CNN
+F 3 "" H 3950 5200 50  0001 C CNN
+	1    3950 5200
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	3800 5450 3950 5450
+Wire Wire Line
+	3950 5450 3950 5350
+Wire Wire Line
+	3800 5350 3950 5350
+Connection ~ 3950 5350
+Wire Wire Line
+	3950 5350 3950 5250
+Wire Wire Line
+	3800 5250 3950 5250
+Connection ~ 3950 5250
+Wire Wire Line
+	3950 5250 3950 5200
+$Comp
+L power:+5V #PWR06
+U 1 1 5CE3B15C
+P 1350 4350
+F 0 "#PWR06" H 1350 4200 50  0001 C CNN
+F 1 "+5V" H 1365 4523 50  0000 C CNN
+F 2 "" H 1350 4350 50  0001 C CNN
+F 3 "" H 1350 4350 50  0001 C CNN
+	1    1350 4350
+	1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR010
+U 1 1 5CE3B162
+P 1600 4350
+F 0 "#PWR010" H 1600 4100 50  0001 C CNN
+F 1 "GND" H 1605 4177 50  0000 C CNN
+F 2 "" H 1600 4350 50  0001 C CNN
+F 3 "" H 1600 4350 50  0001 C CNN
+	1    1600 4350
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	1500 4650 1500 4350
+Wire Wire Line
+	1500 4350 1600 4350
+Wire Wire Line
+	1350 4350 1450 4350
+Wire Wire Line
+	1450 4350 1450 4750
+Wire Wire Line
+	4800 3550 4400 3550
+Wire Wire Line
+	4400 3550 4400 4650
+Wire Wire Line
+	4400 4650 2950 4650
+Wire Wire Line
+	4800 3700 4450 3700
+Wire Wire Line
+	4450 3700 4450 4750
+Wire Wire Line
+	4450 4750 2950 4750
+Wire Wire Line
+	4800 3850 4500 3850
+Wire Wire Line
+	4500 3850 4500 5700
+Wire Wire Line
+	4500 5700 2950 5700
+Wire Wire Line
+	2950 5700 2950 5350
+$Comp
+L power:GND #PWR018
+U 1 1 5CE4D9FD
+P 6650 6050
+F 0 "#PWR018" H 6650 5800 50  0001 C CNN
+F 1 "GND" H 6655 5877 50  0000 C CNN
+F 2 "" H 6650 6050 50  0001 C CNN
+F 3 "" H 6650 6050 50  0001 C CNN
+	1    6650 6050
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	6300 6050 6650 6050
+$Comp
+L power:+3.3V #PWR020
+U 1 1 5CE5104F
+P 7000 2950
+F 0 "#PWR020" H 7000 2800 50  0001 C CNN
+F 1 "+3.3V" H 7015 3123 50  0000 C CNN
+F 2 "" H 7000 2950 50  0001 C CNN
+F 3 "" H 7000 2950 50  0001 C CNN
+	1    7000 2950
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	7000 2950 6800 2950
+$Comp
+L power:+3.3V #PWR017
+U 1 1 5CE546A5
+P 5300 6050
+F 0 "#PWR017" H 5300 5900 50  0001 C CNN
+F 1 "+3.3V" H 5315 6223 50  0000 C CNN
+F 2 "" H 5300 6050 50  0001 C CNN
+F 3 "" H 5300 6050 50  0001 C CNN
+	1    5300 6050
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	5300 6050 5600 6050
+Wire Wire Line
+	5800 6050 5800 5650
+Wire Wire Line
+	5800 5650 4800 5650
+Wire Wire Line
+	4800 5650 4800 4600
+Wire Wire Line
+	6200 6050 6200 5600
+Wire Wire Line
+	6200 5600 4750 5600
+Wire Wire Line
+	4750 5600 4750 4450
+Wire Wire Line
+	4750 4450 4800 4450
+Wire Wire Line
+	6000 6050 6000 5550
+Wire Wire Line
+	6000 5550 4700 5550
+Wire Wire Line
+	4700 5550 4700 4300
+Wire Wire Line
+	4700 4300 4800 4300
+Wire Wire Line
+	6100 6050 6100 5750
+Wire Wire Line
+	6100 5750 6800 5750
+Wire Wire Line
+	6800 5750 6800 4600
+$Comp
+L Connector_Generic:Conn_01x03 J12
+U 1 1 5CE845EB
+P 9550 5450
+F 0 "J12" H 9470 5125 50  0000 C CNN
+F 1 "IO" H 9470 5216 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 9550 5450 50  0001 C CNN
+F 3 "~" H 9550 5450 50  0001 C CNN
+	1    9550 5450
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J11
+U 1 1 5CE845F1
+P 9550 5050
+F 0 "J11" H 9470 4725 50  0000 C CNN
+F 1 "IO" H 9470 4816 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 9550 5050 50  0001 C CNN
+F 3 "~" H 9550 5050 50  0001 C CNN
+	1    9550 5050
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J10
+U 1 1 5CE845F7
+P 9550 4650
+F 0 "J10" H 9470 4325 50  0000 C CNN
+F 1 "IO" H 9470 4416 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 9550 4650 50  0001 C CNN
+F 3 "~" H 9550 4650 50  0001 C CNN
+	1    9550 4650
+	1    0    0    -1  
+$EndComp
+$Comp
+L Connector_Generic:Conn_01x03 J9
+U 1 1 5CE845FD
+P 9550 4250
+F 0 "J9" H 9470 3925 50  0000 C CNN
+F 1 "IO" H 9470 4016 50  0000 C CNN
+F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 9550 4250 50  0001 C CNN
+F 3 "~" H 9550 4250 50  0001 C CNN
+	1    9550 4250
+	1    0    0    -1  
+$EndComp
+Wire Wire Line
+	9150 2550 9350 2550
+Wire Wire Line
+	9350 2950 9150 2950
+Connection ~ 9150 2950
+Wire Wire Line
+	9150 2950 9150 2550
+Wire Wire Line
+	9350 3350 9150 3350
+Wire Wire Line
+	9150 2950 9150 3350
+Connection ~ 9150 3350
+Wire Wire Line
+	9150 3350 9150 3750
+Wire Wire Line
+	9350 3750 9150 3750
+Connection ~ 9150 3750
+Wire Wire Line
+	9150 3750 9150 4150
+Wire Wire Line
+	9350 4150 9150 4150
+Connection ~ 9150 4150
+Wire Wire Line
+	9350 4550 9150 4550
+Wire Wire Line
+	9150 4150 9150 4550
+Connection ~ 9150 4550
+Wire Wire Line
+	9150 4550 9150 4950
+Wire Wire Line
+	9350 4950 9150 4950
+Connection ~ 9150 4950
+Wire Wire Line
+	9150 4950 9150 5350
+Wire Wire Line
+	9350 5350 9150 5350
+Connection ~ 9150 5350
+Wire Wire Line
+	9150 5350 9150 5900
+Wire Wire Line
+	9000 2450 9000 2650
+Wire Wire Line
+	9000 5450 9350 5450
+Wire Wire Line
+	9350 5050 9000 5050
+Connection ~ 9000 5050
+Wire Wire Line
+	9000 5050 9000 5450
+Wire Wire Line
+	9350 4650 9000 4650
+Connection ~ 9000 4650
+Wire Wire Line
+	9000 4650 9000 5050
+Wire Wire Line
+	9350 4250 9000 4250
+Connection ~ 9000 4250
+Wire Wire Line
+	9000 4250 9000 4650
+Wire Wire Line
+	9350 3850 9000 3850
+Connection ~ 9000 3850
+Wire Wire Line
+	9000 3850 9000 4250
+Wire Wire Line
+	9350 3450 9000 3450
+Connection ~ 9000 3450
+Wire Wire Line
+	9000 3450 9000 3850
+Wire Wire Line
+	9350 3050 9000 3050
+Connection ~ 9000 3050
+Wire Wire Line
+	9000 3050 9000 3450
+Wire Wire Line
+	9350 2650 9000 2650
+Connection ~ 9000 2650
+Wire Wire Line
+	9000 2650 9000 3050
+Wire Wire Line
+	6800 4450 8050 4450
+Wire Wire Line
+	8050 4450 8050 5550
+Wire Wire Line
+	8050 5550 9350 5550
+Wire Wire Line
+	9350 5150 8100 5150
+Wire Wire Line
+	8100 5150 8100 4300
+Wire Wire Line
+	8100 4300 6800 4300
+Wire Wire Line
+	6800 4150 8150 4150
+Wire Wire Line
+	8150 4150 8150 4750
+Wire Wire Line
+	8150 4750 9350 4750
+Wire Wire Line
+	9350 4350 8200 4350
+Wire Wire Line
+	8200 4350 8200 4000
+Wire Wire Line
+	8200 4000 6800 4000
+Wire Wire Line
+	9350 3950 8250 3950
+Wire Wire Line
+	8250 3950 8250 3850
+Wire Wire Line
+	8250 3850 6800 3850
+Wire Wire Line
+	9350 3550 8250 3550
+Wire Wire Line
+	8250 3550 8250 3700
+Wire Wire Line
+	8250 3700 6800 3700
+Wire Wire Line
+	6800 3550 8200 3550
+Wire Wire Line
+	8200 3550 8200 3150
+Wire Wire Line
+	8200 3150 9350 3150
+Wire Wire Line
+	9350 2750 8150 2750
+Wire Wire Line
+	8150 2750 8150 3400
+Wire Wire Line
+	8150 3400 6800 3400
+NoConn ~ 5550 5150
+NoConn ~ 5700 5150
+NoConn ~ 5850 5150
+NoConn ~ 6000 5150
+NoConn ~ 6150 5150
+NoConn ~ 6800 3250
+NoConn ~ 6800 3100
+Connection ~ 1250 5250
+Connection ~ 1250 5550
+Wire Wire Line
+	950  5250 1250 5250
+Wire Wire Line
+	600  5550 1250 5550
+NoConn ~ 4800 4000
+NoConn ~ 4800 4150
+NoConn ~ 6800 2800
+NoConn ~ 5900 6050
+NoConn ~ 5700 6050
+Wire Wire Line
+	1500 3600 1250 3600
+Wire Wire Line
+	1250 3600 950  3600
+Connection ~ 1250 3600
+Wire Wire Line
+	600  3900 1250 3900
+Wire Wire Line
+	1250 3900 1500 3900
+Wire Wire Line
+	1500 3900 1500 3700
+Connection ~ 1250 3900
+$EndSCHEMATC

+ 31 - 0
PCB/BLOBCNC_FEEDER/CNC/blobcnc_feeder_CUT.gcode

@@ -0,0 +1,31 @@
+
+G21
+G90
+G94
+F100.00
+G00 Z0.5000
+M03 S10000
+G4 P1
+G00 X0.7420Y-43.1250
+G01 Z-1.8000
+G01 X0.7420Y0.7420
+G01 X-55.1900Y0.7420
+G00 Z0.5000
+G00 X-57.8400Y0.7420
+G01 Z-1.8000
+G01 X-113.7720Y0.7420
+G01 X-113.7720Y-43.1250
+G00 Z0.5000
+G00 X-113.7720Y-45.7750
+G01 Z-1.8000
+G01 X-113.7720Y-89.6420
+G01 X-57.8400Y-89.6420
+G00 Z0.5000
+G00 X-55.1900Y-89.6420
+G01 Z-1.8000
+G01 X0.7420Y-89.6420
+G01 X0.7420Y-45.7750
+G00 Z0.5000
+G00 Z0.5000
+G00 X0Y0
+M05

+ 590 - 0
PCB/BLOBCNC_FEEDER/CNC/blobcnc_feeder_DRILL.gcode

@@ -0,0 +1,590 @@
+
+G21
+G90
+G94
+F150.00
+G00 Z1.0000
+M03 S10000
+G4 P1
+G00 X-38.1000Y-19.6850
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-38.1000Y-22.2250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-38.1000Y-24.7650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-30.4800Y-19.6850
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-30.4800Y-22.2250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-30.4800Y-24.7650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-38.0510Y-44.9570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-38.0510Y-47.4970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-38.0510Y-50.0370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-30.4310Y-44.9570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-30.4310Y-47.4970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-30.4310Y-50.0370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-19.6360Y-49.4020
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-17.1360Y-49.4020
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-19.6850Y-24.7650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-17.1850Y-24.7650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-32.2570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-34.7970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-37.3370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-39.8770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-42.4170
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-44.9570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-47.4970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-50.0370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-52.5770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-55.1170
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-57.6570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-60.1970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-62.7370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-62.8160Y-65.2770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-32.2570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-34.7970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-37.3370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-39.8770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-42.4170
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-44.9570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-47.4970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-50.0370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-52.5770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-55.1170
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-57.6570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-60.1970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-62.7370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.5760Y-65.2770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-85.0900Y-36.1950
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-85.0900Y-49.5300
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-85.0900Y-62.2300
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-85.0900Y-75.5650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-82.5500Y-30.4800
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-82.5500Y-36.1950
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-82.5500Y-49.5300
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-82.5500Y-62.2300
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-66.0400Y-16.5100
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-52.0700Y-16.5100
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-51.4350Y-78.7400
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-41.9100Y-15.8750
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-41.9100Y-50.1650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-36.8300Y-78.7400
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-20.9550Y-74.9300
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-11.4300Y-74.9300
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-4.3960Y-39.8770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-4.3960Y-42.4170
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-4.3960Y-44.9570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-4.3960Y-47.4970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-79.3750Y-75.5650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-76.8350Y-75.5650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-74.2950Y-75.5650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-106.6800Y-9.5250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-106.6800Y-27.3050
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-66.0400Y-9.5250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-66.0400Y-27.3050
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-79.3750Y-62.4420
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-76.8350Y-62.4420
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-74.2950Y-62.4420
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.6250Y-16.5100
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.6250Y-19.0500
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-47.6250Y-21.5900
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-93.3450Y-62.4420
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-90.8050Y-62.4420
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-88.2650Y-62.4420
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-93.3450Y-49.3180
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-90.8050Y-49.3180
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-88.2650Y-49.3180
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-33.5280Y-60.3250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-33.5280Y-80.6450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-30.9880Y-60.3250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-30.9880Y-80.6450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-28.4480Y-60.3250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-28.4480Y-80.6450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-25.9080Y-60.3250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-25.9080Y-80.6450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-23.3680Y-60.3250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-23.3680Y-80.6450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-20.8280Y-60.3250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-20.8280Y-80.6450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-79.3750Y-36.1950
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-76.8350Y-36.1950
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-74.2950Y-36.1950
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-4.4450Y-14.6050
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-4.4450Y-17.1450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-4.4450Y-19.6850
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-4.4450Y-22.2250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-79.3750Y-49.3180
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-76.8350Y-49.3180
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-74.2950Y-49.3180
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-93.3450Y-36.1950
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-90.8050Y-36.1950
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-88.2650Y-36.1950
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-93.3450Y-75.5650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-90.8050Y-75.5650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-88.2650Y-75.5650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7160Y-34.7970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7160Y-37.3370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7160Y-39.8770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7160Y-42.4170
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7160Y-44.9570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7160Y-47.4970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7160Y-50.0370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7160Y-52.5770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0160Y-34.7970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0160Y-37.3370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0160Y-39.8770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0160Y-42.4170
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0160Y-44.9570
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0160Y-47.4970
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0160Y-50.0370
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0160Y-52.5770
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7650Y-9.5250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7650Y-12.0650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7650Y-14.6050
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7650Y-17.1450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7650Y-19.6850
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7650Y-22.2250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7650Y-24.7650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-24.7650Y-27.3050
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0650Y-9.5250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0650Y-12.0650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0650Y-14.6050
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0650Y-17.1450
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0650Y-19.6850
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0650Y-22.2250
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0650Y-24.7650
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-12.0650Y-27.3050
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-104.1400Y-34.2900
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X-104.1400Y-39.3700
+G01 Z-1.8000
+G01 Z0
+G00 Z1.0000
+G00 X0.0000Y0.0000
+M05

ファイルの差分が大きいため隠しています
+ 40418 - 0
PCB/BLOBCNC_FEEDER/CNC/blobcnc_feeder_ISOL.gcode


+ 1 - 1
PCB/BLOBCNC_LOW/BLOBCNC_LOW.net

@@ -1,7 +1,7 @@
 (export (version D)
   (design
     (source "/home/titi/work/projets/Fresnoy/Hadrien Tequi/HTequi/PCB/BLOBCNC_LOW/BLOBCNC_LOW.sch")
-    (date "sam. 27 avril 2019 23:38:56 CEST")
+    (date "lun. 20 mai 2019 00:29:24 CEST")
     (tool "Eeschema 5.0.0+dfsg1-2")
     (sheet (number 1) (name /) (tstamps /)
       (title_block

+ 555 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-B.Cu.gbr

@@ -0,0 +1,555 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-2*
+G04 #@! TF.CreationDate,2019-05-22T11:33:39+02:00*
+G04 #@! TF.ProjectId,BLOBCNC_TOP,424C4F42434E435F544F502E6B696361,rev?*
+G04 #@! TF.SameCoordinates,PXb438b80PY1b9d560*
+G04 #@! TF.FileFunction,Copper,L2,Bot,Signal*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-2) date Wed May 22 11:33:39 2019*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD10R,1.600000X1.600000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD11C,1.600000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD12O,2.600000X2.000000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD13C,3.000000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD14R,3.000000X3.000000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD15O,1.700000X1.700000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD16R,1.700000X1.700000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD17O,1.600000X1.600000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD18O,2.000000X2.600000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD19R,2.000000X2.600000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD20O,3.175000X1.524000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD21R,1.600000X2.400000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ComponentPad*
+%ADD22O,1.600000X2.400000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ViaPad*
+%ADD23C,2.000000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,Conductor*
+%ADD24C,0.500000*%
+G04 #@! TD*
+G04 APERTURE END LIST*
+D10*
+G04 #@! TO.P,C1,1*
+G04 #@! TO.N,+36V*
+X-93091000Y-33274000D03*
+D11*
+G04 #@! TO.P,C1,2*
+G04 #@! TO.N,GNDPWR*
+X-90591000Y-33274000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.P,Dr1,1*
+G04 #@! TO.N,Net-(Dr1-Pad1)*
+X-85471000Y-30734000D03*
+G04 #@! TO.P,Dr1,2*
+G04 #@! TO.N,Net-(Dr1-Pad2)*
+X-85471000Y-33274000D03*
+G04 #@! TO.P,Dr1,3*
+G04 #@! TO.N,Net-(Dr1-Pad3)*
+X-85471000Y-35814000D03*
+G04 #@! TO.P,Dr1,4*
+G04 #@! TO.N,Net-(Dr1-Pad4)*
+X-85471000Y-38354000D03*
+G04 #@! TO.P,Dr1,5*
+G04 #@! TO.N,Net-(Dr1-Pad5)*
+X-85471000Y-40894000D03*
+G04 #@! TO.P,Dr1,6*
+X-85471000Y-43434000D03*
+G04 #@! TO.P,Dr1,7*
+G04 #@! TO.N,Net-(Dr1-Pad7)*
+X-85471000Y-45974000D03*
+G04 #@! TO.P,Dr1,8*
+G04 #@! TO.N,Net-(Dr1-Pad8)*
+X-85471000Y-48514000D03*
+G04 #@! TO.P,Dr1,9*
+G04 #@! TO.N,GND*
+X-98171000Y-48514000D03*
+G04 #@! TO.P,Dr1,10*
+G04 #@! TO.N,+5V*
+X-98171000Y-45974000D03*
+G04 #@! TO.P,Dr1,11*
+G04 #@! TO.N,Net-(Dr1-Pad11)*
+X-98171000Y-43434000D03*
+G04 #@! TO.P,Dr1,12*
+G04 #@! TO.N,Net-(Dr1-Pad12)*
+X-98171000Y-40894000D03*
+G04 #@! TO.P,Dr1,13*
+G04 #@! TO.N,Net-(Dr1-Pad13)*
+X-98171000Y-38354000D03*
+G04 #@! TO.P,Dr1,14*
+G04 #@! TO.N,Net-(Dr1-Pad14)*
+X-98171000Y-35814000D03*
+G04 #@! TO.P,Dr1,15*
+G04 #@! TO.N,GNDPWR*
+X-98171000Y-33274000D03*
+G04 #@! TO.P,Dr1,16*
+G04 #@! TO.N,+36V*
+X-98171000Y-30734000D03*
+G04 #@! TD*
+D13*
+G04 #@! TO.P,J1,2*
+G04 #@! TO.N,Net-(J1-Pad2)*
+X-4191000Y-7874000D03*
+D14*
+G04 #@! TO.P,J1,1*
+G04 #@! TO.N,Net-(J1-Pad1)*
+X-4191000Y-12954000D03*
+G04 #@! TD*
+G04 #@! TO.P,J2,1*
+G04 #@! TO.N,Net-(J2-Pad1)*
+X-4191000Y-32004000D03*
+D13*
+G04 #@! TO.P,J2,2*
+G04 #@! TO.N,Net-(J2-Pad2)*
+X-4191000Y-26924000D03*
+G04 #@! TD*
+D14*
+G04 #@! TO.P,J3,1*
+G04 #@! TO.N,GNDPWR*
+X-110871000Y-10414000D03*
+D13*
+G04 #@! TO.P,J3,2*
+G04 #@! TO.N,+36V*
+X-110871000Y-15494000D03*
+G04 #@! TD*
+D15*
+G04 #@! TO.P,J4,3*
+G04 #@! TO.N,Net-(J4-Pad3)*
+X-14986000Y-46609000D03*
+G04 #@! TO.P,J4,2*
+G04 #@! TO.N,+5V*
+X-12446000Y-46609000D03*
+D16*
+G04 #@! TO.P,J4,1*
+G04 #@! TO.N,GND*
+X-9906000Y-46609000D03*
+G04 #@! TD*
+G04 #@! TO.P,J5,1*
+G04 #@! TO.N,GND*
+X-9906000Y-56134000D03*
+D15*
+G04 #@! TO.P,J5,2*
+G04 #@! TO.N,+5V*
+X-12446000Y-56134000D03*
+G04 #@! TO.P,J5,3*
+G04 #@! TO.N,Net-(J5-Pad3)*
+X-14986000Y-56134000D03*
+G04 #@! TD*
+G04 #@! TO.P,J6,3*
+G04 #@! TO.N,Net-(J6-Pad3)*
+X-14986000Y-65659000D03*
+G04 #@! TO.P,J6,2*
+G04 #@! TO.N,+5V*
+X-12446000Y-65659000D03*
+D16*
+G04 #@! TO.P,J6,1*
+G04 #@! TO.N,GND*
+X-9906000Y-65659000D03*
+G04 #@! TD*
+D15*
+G04 #@! TO.P,J7,3*
+G04 #@! TO.N,Net-(J7-Pad3)*
+X-46736000Y-18034000D03*
+G04 #@! TO.P,J7,2*
+G04 #@! TO.N,Net-(J7-Pad2)*
+X-44196000Y-18034000D03*
+D16*
+G04 #@! TO.P,J7,1*
+G04 #@! TO.N,GND*
+X-41656000Y-18034000D03*
+G04 #@! TD*
+G04 #@! TO.P,J8,1*
+G04 #@! TO.N,GND*
+X-41656000Y-5334000D03*
+D15*
+G04 #@! TO.P,J8,2*
+G04 #@! TO.N,Net-(J8-Pad2)*
+X-44196000Y-5334000D03*
+G04 #@! TO.P,J8,3*
+G04 #@! TO.N,Net-(J8-Pad3)*
+X-46736000Y-5334000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.P,J9,1*
+G04 #@! TO.N,GND*
+X-94996000Y-82169000D03*
+D15*
+G04 #@! TO.P,J9,2*
+G04 #@! TO.N,+5V*
+X-94996000Y-79629000D03*
+G04 #@! TO.P,J9,3*
+G04 #@! TO.N,Net-(J9-Pad3)*
+X-94996000Y-77089000D03*
+G04 #@! TD*
+G04 #@! TO.P,J10,3*
+G04 #@! TO.N,Net-(J10-Pad3)*
+X-79121000Y-77089000D03*
+G04 #@! TO.P,J10,2*
+G04 #@! TO.N,+5V*
+X-79121000Y-79629000D03*
+D16*
+G04 #@! TO.P,J10,1*
+G04 #@! TO.N,GND*
+X-79121000Y-82169000D03*
+G04 #@! TD*
+G04 #@! TO.P,J11,1*
+G04 #@! TO.N,GND*
+X-63881000Y-82169000D03*
+D15*
+G04 #@! TO.P,J11,2*
+G04 #@! TO.N,+5V*
+X-63881000Y-79629000D03*
+G04 #@! TO.P,J11,3*
+G04 #@! TO.N,Net-(J11-Pad3)*
+X-63881000Y-77089000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.P,J12,1*
+G04 #@! TO.N,Net-(Dr1-Pad14)*
+X-110236000Y-35814000D03*
+D15*
+G04 #@! TO.P,J12,2*
+G04 #@! TO.N,Net-(Dr1-Pad13)*
+X-110236000Y-38354000D03*
+G04 #@! TO.P,J12,3*
+G04 #@! TO.N,Net-(Dr1-Pad12)*
+X-110236000Y-40894000D03*
+G04 #@! TO.P,J12,4*
+G04 #@! TO.N,Net-(Dr1-Pad11)*
+X-110236000Y-43434000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.P,J13,1*
+G04 #@! TO.N,Net-(J13-Pad1)*
+X-110236000Y-68834000D03*
+D15*
+G04 #@! TO.P,J13,2*
+G04 #@! TO.N,+5V*
+X-110236000Y-66294000D03*
+G04 #@! TO.P,J13,3*
+G04 #@! TO.N,Net-(J13-Pad3)*
+X-110236000Y-63754000D03*
+G04 #@! TO.P,J13,4*
+G04 #@! TO.N,+5V*
+X-110236000Y-61214000D03*
+G04 #@! TO.P,J13,5*
+G04 #@! TO.N,Net-(J13-Pad5)*
+X-110236000Y-58674000D03*
+G04 #@! TO.P,J13,6*
+G04 #@! TO.N,+5V*
+X-110236000Y-56134000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.P,MotorDriver1,1*
+G04 #@! TO.N,Net-(MotorDriver1-Pad1)*
+X-28956000Y-15494000D03*
+G04 #@! TO.P,MotorDriver1,2*
+G04 #@! TO.N,Net-(MotorDriver1-Pad2)*
+X-28956000Y-12954000D03*
+G04 #@! TO.P,MotorDriver1,3*
+G04 #@! TO.N,N/C*
+X-28956000Y-10414000D03*
+G04 #@! TO.P,MotorDriver1,4*
+X-28956000Y-7874000D03*
+G04 #@! TO.P,MotorDriver1,5*
+G04 #@! TO.N,GND*
+X-28956000Y-5334000D03*
+G04 #@! TO.P,MotorDriver1,6*
+X-16256000Y-5334000D03*
+G04 #@! TO.P,MotorDriver1,7*
+G04 #@! TO.N,+5V*
+X-16256000Y-7874000D03*
+G04 #@! TO.P,MotorDriver1,8*
+G04 #@! TO.N,Net-(J1-Pad2)*
+X-16256000Y-10414000D03*
+G04 #@! TO.P,MotorDriver1,9*
+G04 #@! TO.N,Net-(J1-Pad1)*
+X-16256000Y-12954000D03*
+G04 #@! TO.P,MotorDriver1,10*
+G04 #@! TO.N,N/C*
+X-16256000Y-15494000D03*
+G04 #@! TD*
+G04 #@! TO.P,MotorDriver2,10*
+G04 #@! TO.N,N/C*
+X-16256000Y-33909000D03*
+G04 #@! TO.P,MotorDriver2,9*
+G04 #@! TO.N,Net-(J2-Pad1)*
+X-16256000Y-31369000D03*
+G04 #@! TO.P,MotorDriver2,8*
+G04 #@! TO.N,Net-(J2-Pad2)*
+X-16256000Y-28829000D03*
+G04 #@! TO.P,MotorDriver2,7*
+G04 #@! TO.N,+5V*
+X-16256000Y-26289000D03*
+G04 #@! TO.P,MotorDriver2,6*
+G04 #@! TO.N,GND*
+X-16256000Y-23749000D03*
+G04 #@! TO.P,MotorDriver2,5*
+X-28956000Y-23749000D03*
+G04 #@! TO.P,MotorDriver2,4*
+G04 #@! TO.N,N/C*
+X-28956000Y-26289000D03*
+G04 #@! TO.P,MotorDriver2,3*
+X-28956000Y-28829000D03*
+G04 #@! TO.P,MotorDriver2,2*
+G04 #@! TO.N,Net-(MotorDriver2-Pad2)*
+X-28956000Y-31369000D03*
+G04 #@! TO.P,MotorDriver2,1*
+G04 #@! TO.N,Net-(MotorDriver2-Pad1)*
+X-28956000Y-33909000D03*
+G04 #@! TD*
+D10*
+G04 #@! TO.P,SW1,1*
+G04 #@! TO.N,+5V*
+X-70231000Y-33274000D03*
+D17*
+G04 #@! TO.P,SW1,4*
+G04 #@! TO.N,Net-(Dr1-Pad4)*
+X-77851000Y-38354000D03*
+G04 #@! TO.P,SW1,2*
+G04 #@! TO.N,+5V*
+X-70231000Y-35814000D03*
+G04 #@! TO.P,SW1,5*
+G04 #@! TO.N,Net-(Dr1-Pad3)*
+X-77851000Y-35814000D03*
+G04 #@! TO.P,SW1,3*
+G04 #@! TO.N,+5V*
+X-70231000Y-38354000D03*
+G04 #@! TO.P,SW1,6*
+G04 #@! TO.N,Net-(Dr1-Pad2)*
+X-77851000Y-33274000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.P,U1,1*
+G04 #@! TO.N,GNDPWR*
+X-102616000Y-4699000D03*
+G04 #@! TO.P,U1,2*
+G04 #@! TO.N,+36V*
+X-102616000Y-22479000D03*
+G04 #@! TO.P,U1,3*
+G04 #@! TO.N,GND*
+X-61976000Y-4699000D03*
+G04 #@! TO.P,U1,4*
+G04 #@! TO.N,+5V*
+X-61976000Y-22479000D03*
+G04 #@! TD*
+D18*
+G04 #@! TO.P,U2,5*
+G04 #@! TO.N,N/C*
+X-42799000Y-90424000D03*
+G04 #@! TO.P,U2,4*
+G04 #@! TO.N,Net-(U2-Pad4)*
+X-40259000Y-90424000D03*
+G04 #@! TO.P,U2,3*
+G04 #@! TO.N,Net-(U2-Pad3)*
+X-37719000Y-90424000D03*
+G04 #@! TO.P,U2,2*
+G04 #@! TO.N,Net-(U2-Pad2)*
+X-35179000Y-90424000D03*
+G04 #@! TO.P,U2,1*
+G04 #@! TO.N,GND*
+X-32639000Y-90424000D03*
+D19*
+X-30099000Y-90424000D03*
+X-30099000Y-70104000D03*
+D18*
+G04 #@! TO.P,U2,8*
+G04 #@! TO.N,+3V3*
+X-32639000Y-70104000D03*
+X-35179000Y-70104000D03*
+G04 #@! TO.P,U2,*
+G04 #@! TO.N,*
+X-37719000Y-70104000D03*
+G04 #@! TO.P,U2,7*
+G04 #@! TO.N,N/C*
+X-40259000Y-70104000D03*
+G04 #@! TO.P,U2,6*
+G04 #@! TO.N,Net-(U2-Pad6)*
+X-42799000Y-70104000D03*
+G04 #@! TD*
+D20*
+G04 #@! TO.P,U3,0*
+G04 #@! TO.N,Net-(J7-Pad3)*
+X-45466000Y-32004000D03*
+G04 #@! TO.P,U3,1*
+G04 #@! TO.N,Net-(J7-Pad2)*
+X-45466000Y-34544000D03*
+G04 #@! TO.P,U3,2*
+G04 #@! TO.N,Net-(MotorDriver1-Pad2)*
+X-45466000Y-37084000D03*
+G04 #@! TO.P,U3,3*
+G04 #@! TO.N,Net-(MotorDriver1-Pad1)*
+X-45466000Y-39624000D03*
+G04 #@! TO.P,U3,4*
+G04 #@! TO.N,Net-(MotorDriver2-Pad2)*
+X-45466000Y-42164000D03*
+G04 #@! TO.P,U3,5*
+G04 #@! TO.N,Net-(MotorDriver2-Pad1)*
+X-45466000Y-44704000D03*
+G04 #@! TO.P,U3,6*
+G04 #@! TO.N,Net-(J4-Pad3)*
+X-45466000Y-47244000D03*
+G04 #@! TO.P,U3,7*
+G04 #@! TO.N,Net-(J5-Pad3)*
+X-45466000Y-49784000D03*
+G04 #@! TO.P,U3,8*
+G04 #@! TO.N,Net-(J6-Pad3)*
+X-45466000Y-52324000D03*
+G04 #@! TO.P,U3,9*
+G04 #@! TO.N,Net-(J8-Pad3)*
+X-45466000Y-54864000D03*
+G04 #@! TO.P,U3,10*
+G04 #@! TO.N,Net-(J8-Pad2)*
+X-45466000Y-57404000D03*
+G04 #@! TO.P,U3,11*
+G04 #@! TO.N,Net-(U2-Pad2)*
+X-45466000Y-59944000D03*
+G04 #@! TO.P,U3,12*
+G04 #@! TO.N,Net-(U2-Pad6)*
+X-45466000Y-62484000D03*
+G04 #@! TO.P,U3,13*
+G04 #@! TO.N,Net-(U2-Pad3)*
+X-60706000Y-62484000D03*
+G04 #@! TO.P,U3,14*
+G04 #@! TO.N,Net-(J11-Pad3)*
+X-60706000Y-59944000D03*
+G04 #@! TO.P,U3,15*
+G04 #@! TO.N,Net-(U2-Pad4)*
+X-60706000Y-57404000D03*
+G04 #@! TO.P,U3,16*
+G04 #@! TO.N,Net-(J10-Pad3)*
+X-60706000Y-54864000D03*
+G04 #@! TO.P,U3,17*
+G04 #@! TO.N,Net-(J9-Pad3)*
+X-60706000Y-52324000D03*
+G04 #@! TO.P,U3,18*
+G04 #@! TO.N,Net-(U3-Pad18)*
+X-60706000Y-49784000D03*
+G04 #@! TO.P,U3,19*
+G04 #@! TO.N,Net-(U3-Pad19)*
+X-60706000Y-47244000D03*
+G04 #@! TO.P,U3,20*
+G04 #@! TO.N,Net-(U3-Pad20)*
+X-60706000Y-44704000D03*
+G04 #@! TO.P,U3,21*
+G04 #@! TO.N,Net-(Dr1-Pad8)*
+X-60706000Y-42164000D03*
+G04 #@! TO.P,U3,22*
+G04 #@! TO.N,Net-(Dr1-Pad7)*
+X-60706000Y-39624000D03*
+G04 #@! TO.P,U3,23*
+G04 #@! TO.N,Net-(Dr1-Pad1)*
+X-60706000Y-37084000D03*
+G04 #@! TO.P,U3,24*
+G04 #@! TO.N,+3V3*
+X-60706000Y-34544000D03*
+G04 #@! TO.P,U3,25*
+G04 #@! TO.N,N/C*
+X-60706000Y-32004000D03*
+G04 #@! TO.P,U3,26*
+G04 #@! TO.N,+5V*
+X-60706000Y-29464000D03*
+G04 #@! TO.P,U3,27*
+G04 #@! TO.N,GND*
+X-45466000Y-29464000D03*
+G04 #@! TD*
+D21*
+G04 #@! TO.P,U4,1*
+G04 #@! TO.N,GND*
+X-75311000Y-62484000D03*
+D22*
+G04 #@! TO.P,U4,8*
+G04 #@! TO.N,Net-(J13-Pad5)*
+X-90551000Y-54864000D03*
+G04 #@! TO.P,U4,2*
+G04 #@! TO.N,Net-(U3-Pad18)*
+X-77851000Y-62484000D03*
+G04 #@! TO.P,U4,9*
+G04 #@! TO.N,Net-(U3-Pad20)*
+X-88011000Y-54864000D03*
+G04 #@! TO.P,U4,3*
+G04 #@! TO.N,Net-(J13-Pad1)*
+X-80391000Y-62484000D03*
+G04 #@! TO.P,U4,10*
+G04 #@! TO.N,GND*
+X-85471000Y-54864000D03*
+G04 #@! TO.P,U4,4*
+X-82931000Y-62484000D03*
+G04 #@! TO.P,U4,11*
+G04 #@! TO.N,N/C*
+X-82931000Y-54864000D03*
+G04 #@! TO.P,U4,5*
+G04 #@! TO.N,Net-(U3-Pad19)*
+X-85471000Y-62484000D03*
+G04 #@! TO.P,U4,12*
+G04 #@! TO.N,GND*
+X-80391000Y-54864000D03*
+G04 #@! TO.P,U4,6*
+G04 #@! TO.N,Net-(J13-Pad3)*
+X-88011000Y-62484000D03*
+G04 #@! TO.P,U4,13*
+G04 #@! TO.N,N/C*
+X-77851000Y-54864000D03*
+G04 #@! TO.P,U4,7*
+G04 #@! TO.N,GND*
+X-90551000Y-62484000D03*
+G04 #@! TO.P,U4,14*
+G04 #@! TO.N,+5V*
+X-75311000Y-54864000D03*
+G04 #@! TD*
+D23*
+G04 #@! TO.N,GND*
+X-29972000Y-75184000D03*
+X-20828000Y-75184000D03*
+X-99060000Y-84836000D03*
+X-99060000Y-72644000D03*
+X-104140000Y-72644000D03*
+X-104140000Y-66040000D03*
+X-102108000Y-51308000D03*
+X-110236000Y-51308000D03*
+X-16256000Y-19812000D03*
+X-23876000Y-19812000D03*
+G04 #@! TD*
+D24*
+G04 #@! TO.N,GND*
+X-29972000Y-75184000D02*
+X-20828000Y-75184000D01*
+X-99060000Y-84836000D02*
+X-99060000Y-72644000D01*
+X-104140000Y-72644000D02*
+X-104140000Y-66040000D01*
+X-102108000Y-51308000D02*
+X-110236000Y-51308000D01*
+X-16256000Y-19812000D02*
+X-23876000Y-19812000D01*
+G04 #@! TD*
+M02*

+ 247 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-B.Mask.gbr

@@ -0,0 +1,247 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-2*
+G04 #@! TF.CreationDate,2019-05-22T11:33:39+02:00*
+G04 #@! TF.ProjectId,BLOBCNC_TOP,424C4F42434E435F544F502E6B696361,rev?*
+G04 #@! TF.SameCoordinates,PXb438b80PY1b9d560*
+G04 #@! TF.FileFunction,Soldermask,Bot*
+G04 #@! TF.FilePolarity,Negative*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-2) date Wed May 22 11:33:39 2019*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10R,2.000000X2.000000*%
+%ADD11C,2.000000*%
+%ADD12O,3.000000X2.400000*%
+%ADD13C,3.400000*%
+%ADD14R,3.400000X3.400000*%
+%ADD15O,2.100000X2.100000*%
+%ADD16R,2.100000X2.100000*%
+%ADD17O,2.000000X2.000000*%
+%ADD18O,2.400000X3.000000*%
+%ADD19R,2.400000X3.000000*%
+%ADD20O,3.575000X1.924000*%
+%ADD21R,2.000000X2.800000*%
+%ADD22O,2.000000X2.800000*%
+G04 APERTURE END LIST*
+D10*
+G04 #@! TO.C,C1*
+X-93091000Y-33274000D03*
+D11*
+X-90591000Y-33274000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.C,Dr1*
+X-85471000Y-30734000D03*
+X-85471000Y-33274000D03*
+X-85471000Y-35814000D03*
+X-85471000Y-38354000D03*
+X-85471000Y-40894000D03*
+X-85471000Y-43434000D03*
+X-85471000Y-45974000D03*
+X-85471000Y-48514000D03*
+X-98171000Y-48514000D03*
+X-98171000Y-45974000D03*
+X-98171000Y-43434000D03*
+X-98171000Y-40894000D03*
+X-98171000Y-38354000D03*
+X-98171000Y-35814000D03*
+X-98171000Y-33274000D03*
+X-98171000Y-30734000D03*
+G04 #@! TD*
+D13*
+G04 #@! TO.C,J1*
+X-4191000Y-7874000D03*
+D14*
+X-4191000Y-12954000D03*
+G04 #@! TD*
+G04 #@! TO.C,J2*
+X-4191000Y-32004000D03*
+D13*
+X-4191000Y-26924000D03*
+G04 #@! TD*
+D14*
+G04 #@! TO.C,J3*
+X-110871000Y-10414000D03*
+D13*
+X-110871000Y-15494000D03*
+G04 #@! TD*
+D15*
+G04 #@! TO.C,J4*
+X-14986000Y-46609000D03*
+X-12446000Y-46609000D03*
+D16*
+X-9906000Y-46609000D03*
+G04 #@! TD*
+G04 #@! TO.C,J5*
+X-9906000Y-56134000D03*
+D15*
+X-12446000Y-56134000D03*
+X-14986000Y-56134000D03*
+G04 #@! TD*
+G04 #@! TO.C,J6*
+X-14986000Y-65659000D03*
+X-12446000Y-65659000D03*
+D16*
+X-9906000Y-65659000D03*
+G04 #@! TD*
+D15*
+G04 #@! TO.C,J7*
+X-46736000Y-18034000D03*
+X-44196000Y-18034000D03*
+D16*
+X-41656000Y-18034000D03*
+G04 #@! TD*
+G04 #@! TO.C,J8*
+X-41656000Y-5334000D03*
+D15*
+X-44196000Y-5334000D03*
+X-46736000Y-5334000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.C,J9*
+X-94996000Y-82169000D03*
+D15*
+X-94996000Y-79629000D03*
+X-94996000Y-77089000D03*
+G04 #@! TD*
+G04 #@! TO.C,J10*
+X-79121000Y-77089000D03*
+X-79121000Y-79629000D03*
+D16*
+X-79121000Y-82169000D03*
+G04 #@! TD*
+G04 #@! TO.C,J11*
+X-63881000Y-82169000D03*
+D15*
+X-63881000Y-79629000D03*
+X-63881000Y-77089000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.C,J12*
+X-110236000Y-35814000D03*
+D15*
+X-110236000Y-38354000D03*
+X-110236000Y-40894000D03*
+X-110236000Y-43434000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.C,J13*
+X-110236000Y-68834000D03*
+D15*
+X-110236000Y-66294000D03*
+X-110236000Y-63754000D03*
+X-110236000Y-61214000D03*
+X-110236000Y-58674000D03*
+X-110236000Y-56134000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.C,MotorDriver1*
+X-28956000Y-15494000D03*
+X-28956000Y-12954000D03*
+X-28956000Y-10414000D03*
+X-28956000Y-7874000D03*
+X-28956000Y-5334000D03*
+X-16256000Y-5334000D03*
+X-16256000Y-7874000D03*
+X-16256000Y-10414000D03*
+X-16256000Y-12954000D03*
+X-16256000Y-15494000D03*
+G04 #@! TD*
+G04 #@! TO.C,MotorDriver2*
+X-16256000Y-33909000D03*
+X-16256000Y-31369000D03*
+X-16256000Y-28829000D03*
+X-16256000Y-26289000D03*
+X-16256000Y-23749000D03*
+X-28956000Y-23749000D03*
+X-28956000Y-26289000D03*
+X-28956000Y-28829000D03*
+X-28956000Y-31369000D03*
+X-28956000Y-33909000D03*
+G04 #@! TD*
+D10*
+G04 #@! TO.C,SW1*
+X-70231000Y-33274000D03*
+D17*
+X-77851000Y-38354000D03*
+X-70231000Y-35814000D03*
+X-77851000Y-35814000D03*
+X-70231000Y-38354000D03*
+X-77851000Y-33274000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.C,U1*
+X-102616000Y-4699000D03*
+X-102616000Y-22479000D03*
+X-61976000Y-4699000D03*
+X-61976000Y-22479000D03*
+G04 #@! TD*
+D18*
+G04 #@! TO.C,U2*
+X-42799000Y-90424000D03*
+X-40259000Y-90424000D03*
+X-37719000Y-90424000D03*
+X-35179000Y-90424000D03*
+X-32639000Y-90424000D03*
+D19*
+X-30099000Y-90424000D03*
+X-30099000Y-70104000D03*
+D18*
+X-32639000Y-70104000D03*
+X-35179000Y-70104000D03*
+X-37719000Y-70104000D03*
+X-40259000Y-70104000D03*
+X-42799000Y-70104000D03*
+G04 #@! TD*
+D20*
+G04 #@! TO.C,U3*
+X-45466000Y-32004000D03*
+X-45466000Y-34544000D03*
+X-45466000Y-37084000D03*
+X-45466000Y-39624000D03*
+X-45466000Y-42164000D03*
+X-45466000Y-44704000D03*
+X-45466000Y-47244000D03*
+X-45466000Y-49784000D03*
+X-45466000Y-52324000D03*
+X-45466000Y-54864000D03*
+X-45466000Y-57404000D03*
+X-45466000Y-59944000D03*
+X-45466000Y-62484000D03*
+X-60706000Y-62484000D03*
+X-60706000Y-59944000D03*
+X-60706000Y-57404000D03*
+X-60706000Y-54864000D03*
+X-60706000Y-52324000D03*
+X-60706000Y-49784000D03*
+X-60706000Y-47244000D03*
+X-60706000Y-44704000D03*
+X-60706000Y-42164000D03*
+X-60706000Y-39624000D03*
+X-60706000Y-37084000D03*
+X-60706000Y-34544000D03*
+X-60706000Y-32004000D03*
+X-60706000Y-29464000D03*
+X-45466000Y-29464000D03*
+G04 #@! TD*
+D21*
+G04 #@! TO.C,U4*
+X-75311000Y-62484000D03*
+D22*
+X-90551000Y-54864000D03*
+X-77851000Y-62484000D03*
+X-88011000Y-54864000D03*
+X-80391000Y-62484000D03*
+X-85471000Y-54864000D03*
+X-82931000Y-62484000D03*
+X-82931000Y-54864000D03*
+X-85471000Y-62484000D03*
+X-80391000Y-54864000D03*
+X-88011000Y-62484000D03*
+X-77851000Y-54864000D03*
+X-90551000Y-62484000D03*
+X-75311000Y-54864000D03*
+G04 #@! TD*
+M02*

+ 15 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-B.Paste.gbr

@@ -0,0 +1,15 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-2*
+G04 #@! TF.CreationDate,2019-05-22T11:33:39+02:00*
+G04 #@! TF.ProjectId,BLOBCNC_TOP,424C4F42434E435F544F502E6B696361,rev?*
+G04 #@! TF.SameCoordinates,PXb438b80PY1b9d560*
+G04 #@! TF.FileFunction,Paste,Bot*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-2) date Wed May 22 11:33:39 2019*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 APERTURE END LIST*
+M02*

ファイルの差分が大きいため隠しています
+ 1438 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-B.SilkS.gbr


+ 28 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-Edge.Cuts.gbr

@@ -0,0 +1,28 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-2*
+G04 #@! TF.CreationDate,2019-05-22T11:33:45+02:00*
+G04 #@! TF.ProjectId,BLOBCNC_TOP,424C4F42434E435F544F502E6B696361,rev?*
+G04 #@! TF.SameCoordinates,PXb438b80PY1b9d560*
+G04 #@! TF.FileFunction,Profile,NP*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-2) date Wed May 22 11:33:45 2019*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10C,0.150000*%
+%ADD11C,0.200000*%
+G04 APERTURE END LIST*
+D10*
+X-115316000Y-94996000D02*
+X-115316000Y0D01*
+X-113284000Y-94996000D02*
+X-115316000Y-94996000D01*
+X0Y-94996000D02*
+X-113284000Y-94996000D01*
+D11*
+X0Y0D02*
+X0Y-94996000D01*
+X-115316000Y0D02*
+X0Y0D01*
+M02*

ファイルの差分が大きいため隠しています
+ 4856 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-F.Cu.gbr


+ 247 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-F.Mask.gbr

@@ -0,0 +1,247 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-2*
+G04 #@! TF.CreationDate,2019-05-22T11:33:39+02:00*
+G04 #@! TF.ProjectId,BLOBCNC_TOP,424C4F42434E435F544F502E6B696361,rev?*
+G04 #@! TF.SameCoordinates,PXb438b80PY1b9d560*
+G04 #@! TF.FileFunction,Soldermask,Top*
+G04 #@! TF.FilePolarity,Negative*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-2) date Wed May 22 11:33:39 2019*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10R,2.000000X2.000000*%
+%ADD11C,2.000000*%
+%ADD12O,3.000000X2.400000*%
+%ADD13C,3.400000*%
+%ADD14R,3.400000X3.400000*%
+%ADD15O,2.100000X2.100000*%
+%ADD16R,2.100000X2.100000*%
+%ADD17O,2.000000X2.000000*%
+%ADD18O,2.400000X3.000000*%
+%ADD19R,2.400000X3.000000*%
+%ADD20O,3.575000X1.924000*%
+%ADD21R,2.000000X2.800000*%
+%ADD22O,2.000000X2.800000*%
+G04 APERTURE END LIST*
+D10*
+G04 #@! TO.C,C1*
+X-93091000Y-33274000D03*
+D11*
+X-90591000Y-33274000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.C,Dr1*
+X-85471000Y-30734000D03*
+X-85471000Y-33274000D03*
+X-85471000Y-35814000D03*
+X-85471000Y-38354000D03*
+X-85471000Y-40894000D03*
+X-85471000Y-43434000D03*
+X-85471000Y-45974000D03*
+X-85471000Y-48514000D03*
+X-98171000Y-48514000D03*
+X-98171000Y-45974000D03*
+X-98171000Y-43434000D03*
+X-98171000Y-40894000D03*
+X-98171000Y-38354000D03*
+X-98171000Y-35814000D03*
+X-98171000Y-33274000D03*
+X-98171000Y-30734000D03*
+G04 #@! TD*
+D13*
+G04 #@! TO.C,J1*
+X-4191000Y-7874000D03*
+D14*
+X-4191000Y-12954000D03*
+G04 #@! TD*
+G04 #@! TO.C,J2*
+X-4191000Y-32004000D03*
+D13*
+X-4191000Y-26924000D03*
+G04 #@! TD*
+D14*
+G04 #@! TO.C,J3*
+X-110871000Y-10414000D03*
+D13*
+X-110871000Y-15494000D03*
+G04 #@! TD*
+D15*
+G04 #@! TO.C,J4*
+X-14986000Y-46609000D03*
+X-12446000Y-46609000D03*
+D16*
+X-9906000Y-46609000D03*
+G04 #@! TD*
+G04 #@! TO.C,J5*
+X-9906000Y-56134000D03*
+D15*
+X-12446000Y-56134000D03*
+X-14986000Y-56134000D03*
+G04 #@! TD*
+G04 #@! TO.C,J6*
+X-14986000Y-65659000D03*
+X-12446000Y-65659000D03*
+D16*
+X-9906000Y-65659000D03*
+G04 #@! TD*
+D15*
+G04 #@! TO.C,J7*
+X-46736000Y-18034000D03*
+X-44196000Y-18034000D03*
+D16*
+X-41656000Y-18034000D03*
+G04 #@! TD*
+G04 #@! TO.C,J8*
+X-41656000Y-5334000D03*
+D15*
+X-44196000Y-5334000D03*
+X-46736000Y-5334000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.C,J9*
+X-94996000Y-82169000D03*
+D15*
+X-94996000Y-79629000D03*
+X-94996000Y-77089000D03*
+G04 #@! TD*
+G04 #@! TO.C,J10*
+X-79121000Y-77089000D03*
+X-79121000Y-79629000D03*
+D16*
+X-79121000Y-82169000D03*
+G04 #@! TD*
+G04 #@! TO.C,J11*
+X-63881000Y-82169000D03*
+D15*
+X-63881000Y-79629000D03*
+X-63881000Y-77089000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.C,J12*
+X-110236000Y-35814000D03*
+D15*
+X-110236000Y-38354000D03*
+X-110236000Y-40894000D03*
+X-110236000Y-43434000D03*
+G04 #@! TD*
+D16*
+G04 #@! TO.C,J13*
+X-110236000Y-68834000D03*
+D15*
+X-110236000Y-66294000D03*
+X-110236000Y-63754000D03*
+X-110236000Y-61214000D03*
+X-110236000Y-58674000D03*
+X-110236000Y-56134000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.C,MotorDriver1*
+X-28956000Y-15494000D03*
+X-28956000Y-12954000D03*
+X-28956000Y-10414000D03*
+X-28956000Y-7874000D03*
+X-28956000Y-5334000D03*
+X-16256000Y-5334000D03*
+X-16256000Y-7874000D03*
+X-16256000Y-10414000D03*
+X-16256000Y-12954000D03*
+X-16256000Y-15494000D03*
+G04 #@! TD*
+G04 #@! TO.C,MotorDriver2*
+X-16256000Y-33909000D03*
+X-16256000Y-31369000D03*
+X-16256000Y-28829000D03*
+X-16256000Y-26289000D03*
+X-16256000Y-23749000D03*
+X-28956000Y-23749000D03*
+X-28956000Y-26289000D03*
+X-28956000Y-28829000D03*
+X-28956000Y-31369000D03*
+X-28956000Y-33909000D03*
+G04 #@! TD*
+D10*
+G04 #@! TO.C,SW1*
+X-70231000Y-33274000D03*
+D17*
+X-77851000Y-38354000D03*
+X-70231000Y-35814000D03*
+X-77851000Y-35814000D03*
+X-70231000Y-38354000D03*
+X-77851000Y-33274000D03*
+G04 #@! TD*
+D12*
+G04 #@! TO.C,U1*
+X-102616000Y-4699000D03*
+X-102616000Y-22479000D03*
+X-61976000Y-4699000D03*
+X-61976000Y-22479000D03*
+G04 #@! TD*
+D18*
+G04 #@! TO.C,U2*
+X-42799000Y-90424000D03*
+X-40259000Y-90424000D03*
+X-37719000Y-90424000D03*
+X-35179000Y-90424000D03*
+X-32639000Y-90424000D03*
+D19*
+X-30099000Y-90424000D03*
+X-30099000Y-70104000D03*
+D18*
+X-32639000Y-70104000D03*
+X-35179000Y-70104000D03*
+X-37719000Y-70104000D03*
+X-40259000Y-70104000D03*
+X-42799000Y-70104000D03*
+G04 #@! TD*
+D20*
+G04 #@! TO.C,U3*
+X-45466000Y-32004000D03*
+X-45466000Y-34544000D03*
+X-45466000Y-37084000D03*
+X-45466000Y-39624000D03*
+X-45466000Y-42164000D03*
+X-45466000Y-44704000D03*
+X-45466000Y-47244000D03*
+X-45466000Y-49784000D03*
+X-45466000Y-52324000D03*
+X-45466000Y-54864000D03*
+X-45466000Y-57404000D03*
+X-45466000Y-59944000D03*
+X-45466000Y-62484000D03*
+X-60706000Y-62484000D03*
+X-60706000Y-59944000D03*
+X-60706000Y-57404000D03*
+X-60706000Y-54864000D03*
+X-60706000Y-52324000D03*
+X-60706000Y-49784000D03*
+X-60706000Y-47244000D03*
+X-60706000Y-44704000D03*
+X-60706000Y-42164000D03*
+X-60706000Y-39624000D03*
+X-60706000Y-37084000D03*
+X-60706000Y-34544000D03*
+X-60706000Y-32004000D03*
+X-60706000Y-29464000D03*
+X-45466000Y-29464000D03*
+G04 #@! TD*
+D21*
+G04 #@! TO.C,U4*
+X-75311000Y-62484000D03*
+D22*
+X-90551000Y-54864000D03*
+X-77851000Y-62484000D03*
+X-88011000Y-54864000D03*
+X-80391000Y-62484000D03*
+X-85471000Y-54864000D03*
+X-82931000Y-62484000D03*
+X-82931000Y-54864000D03*
+X-85471000Y-62484000D03*
+X-80391000Y-54864000D03*
+X-88011000Y-62484000D03*
+X-77851000Y-54864000D03*
+X-90551000Y-62484000D03*
+X-75311000Y-54864000D03*
+G04 #@! TD*
+M02*

+ 15 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-F.Paste.gbr

@@ -0,0 +1,15 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-2*
+G04 #@! TF.CreationDate,2019-05-22T11:33:39+02:00*
+G04 #@! TF.ProjectId,BLOBCNC_TOP,424C4F42434E435F544F502E6B696361,rev?*
+G04 #@! TF.SameCoordinates,PXb438b80PY1b9d560*
+G04 #@! TF.FileFunction,Paste,Top*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-2) date Wed May 22 11:33:39 2019*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 APERTURE END LIST*
+M02*

+ 15 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-F.SilkS.gbr

@@ -0,0 +1,15 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-2*
+G04 #@! TF.CreationDate,2019-05-22T11:33:39+02:00*
+G04 #@! TF.ProjectId,BLOBCNC_TOP,424C4F42434E435F544F502E6B696361,rev?*
+G04 #@! TF.SameCoordinates,PXb438b80PY1b9d560*
+G04 #@! TF.FileFunction,Legend,Top*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-2) date Wed May 22 11:33:39 2019*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 APERTURE END LIST*
+M02*

+ 11 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-NPTH.drl

@@ -0,0 +1,11 @@
+M48
+;DRILL file {KiCad 5.0.0+dfsg1-2} date Wed May 22 11:33:50 2019
+;FORMAT={-:-/ absolute / metric / decimal}
+FMAT,2
+METRIC,TZ
+%
+G90
+G05
+M71
+T0
+M30

+ 173 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-PTH.drl

@@ -0,0 +1,173 @@
+M48
+;DRILL file {KiCad 5.0.0+dfsg1-2} date Wed May 22 11:33:50 2019
+;FORMAT={-:-/ absolute / metric / decimal}
+FMAT,2
+METRIC,TZ
+T1C0.800
+T2C1.000
+T3C1.000
+T4C1.020
+T5C1.520
+%
+G90
+G05
+M71
+T1
+X-90.551Y-54.864
+X-90.551Y-62.484
+X-88.011Y-54.864
+X-88.011Y-62.484
+X-85.471Y-54.864
+X-85.471Y-62.484
+X-82.931Y-54.864
+X-82.931Y-62.484
+X-80.391Y-54.864
+X-80.391Y-62.484
+X-77.851Y-54.864
+X-77.851Y-62.484
+X-75.311Y-54.864
+X-75.311Y-62.484
+X-93.091Y-33.274
+X-90.591Y-33.274
+X-77.851Y-33.274
+X-77.851Y-35.814
+X-77.851Y-38.354
+X-70.231Y-33.274
+X-70.231Y-35.814
+X-70.231Y-38.354
+T2
+X-110.236Y-51.308
+X-104.14Y-66.04
+X-104.14Y-72.644
+X-102.108Y-51.308
+X-99.06Y-72.644
+X-99.06Y-84.836
+X-29.972Y-75.184
+X-23.876Y-19.812
+X-20.828Y-75.184
+X-16.256Y-19.812
+X-63.881Y-77.089
+X-63.881Y-79.629
+X-63.881Y-82.169
+X-14.986Y-46.609
+X-12.446Y-46.609
+X-9.906Y-46.609
+X-102.616Y-4.699
+X-102.616Y-22.479
+X-61.976Y-4.699
+X-61.976Y-22.479
+X-28.956Y-5.334
+X-28.956Y-7.874
+X-28.956Y-10.414
+X-28.956Y-12.954
+X-28.956Y-15.494
+X-16.256Y-5.334
+X-16.256Y-7.874
+X-16.256Y-10.414
+X-16.256Y-12.954
+X-16.256Y-15.494
+X-14.986Y-65.659
+X-12.446Y-65.659
+X-9.906Y-65.659
+X-46.736Y-5.334
+X-44.196Y-5.334
+X-41.656Y-5.334
+X-94.996Y-77.089
+X-94.996Y-79.629
+X-94.996Y-82.169
+X-110.236Y-35.814
+X-110.236Y-38.354
+X-110.236Y-40.894
+X-110.236Y-43.434
+X-28.956Y-23.749
+X-28.956Y-26.289
+X-28.956Y-28.829
+X-28.956Y-31.369
+X-28.956Y-33.909
+X-16.256Y-23.749
+X-16.256Y-26.289
+X-16.256Y-28.829
+X-16.256Y-31.369
+X-16.256Y-33.909
+X-46.736Y-18.034
+X-44.196Y-18.034
+X-41.656Y-18.034
+X-14.986Y-56.134
+X-12.446Y-56.134
+X-9.906Y-56.134
+X-79.121Y-77.089
+X-79.121Y-79.629
+X-79.121Y-82.169
+X-110.236Y-56.134
+X-110.236Y-58.674
+X-110.236Y-61.214
+X-110.236Y-63.754
+X-110.236Y-66.294
+X-110.236Y-68.834
+X-42.799Y-70.104
+X-42.799Y-90.424
+X-40.259Y-70.104
+X-40.259Y-90.424
+X-37.719Y-70.104
+X-37.719Y-90.424
+X-35.179Y-70.104
+X-35.179Y-90.424
+X-32.639Y-70.104
+X-32.639Y-90.424
+X-30.099Y-70.104
+X-30.099Y-90.424
+T3
+X-60.706Y-29.464
+X-60.706Y-32.004
+X-60.706Y-34.544
+X-60.706Y-37.084
+X-60.706Y-39.624
+X-60.706Y-42.164
+X-60.706Y-44.704
+X-60.706Y-47.244
+X-60.706Y-49.784
+X-60.706Y-52.324
+X-60.706Y-54.864
+X-60.706Y-57.404
+X-60.706Y-59.944
+X-60.706Y-62.484
+X-45.466Y-29.464
+X-45.466Y-32.004
+X-45.466Y-34.544
+X-45.466Y-37.084
+X-45.466Y-39.624
+X-45.466Y-42.164
+X-45.466Y-44.704
+X-45.466Y-47.244
+X-45.466Y-49.784
+X-45.466Y-52.324
+X-45.466Y-54.864
+X-45.466Y-57.404
+X-45.466Y-59.944
+X-45.466Y-62.484
+T4
+X-98.171Y-30.734
+X-98.171Y-33.274
+X-98.171Y-35.814
+X-98.171Y-38.354
+X-98.171Y-40.894
+X-98.171Y-43.434
+X-98.171Y-45.974
+X-98.171Y-48.514
+X-85.471Y-30.734
+X-85.471Y-33.274
+X-85.471Y-35.814
+X-85.471Y-38.354
+X-85.471Y-40.894
+X-85.471Y-43.434
+X-85.471Y-45.974
+X-85.471Y-48.514
+T5
+X-4.191Y-26.924
+X-4.191Y-32.004
+X-4.191Y-7.874
+X-4.191Y-12.954
+X-110.871Y-10.414
+X-110.871Y-15.494
+T0
+M30

+ 382 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP-cache.lib

@@ -0,0 +1,382 @@
+EESchema-LIBRARY Version 2.4
+#encoding utf-8
+#
+# Connector_Generic:Conn_01x02
+#
+DEF Connector_Generic:Conn_01x02 J 0 40 Y N 1 F N
+F0 "J" 0 100 50 H V C CNN
+F1 "Connector_Generic:Conn_01x02" 0 -200 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ Connector*:*_1x??_*
+$ENDFPLIST
+DRAW
+S -50 -95 0 -105 1 1 6 N
+S -50 5 0 -5 1 1 6 N
+S -50 50 50 -150 1 1 10 f
+X Pin_1 1 -200 0 150 R 50 50 1 1 P
+X Pin_2 2 -200 -100 150 R 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Connector_Generic:Conn_01x03
+#
+DEF Connector_Generic:Conn_01x03 J 0 40 Y N 1 F N
+F0 "J" 0 200 50 H V C CNN
+F1 "Connector_Generic:Conn_01x03" 0 -200 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ Connector*:*_1x??_*
+$ENDFPLIST
+DRAW
+S -50 -95 0 -105 1 1 6 N
+S -50 5 0 -5 1 1 6 N
+S -50 105 0 95 1 1 6 N
+S -50 150 50 -150 1 1 10 f
+X Pin_1 1 -200 100 150 R 50 50 1 1 P
+X Pin_2 2 -200 0 150 R 50 50 1 1 P
+X Pin_3 3 -200 -100 150 R 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Connector_Generic:Conn_01x04
+#
+DEF Connector_Generic:Conn_01x04 J 0 40 Y N 1 F N
+F0 "J" 0 200 50 H V C CNN
+F1 "Connector_Generic:Conn_01x04" 0 -300 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ Connector*:*_1x??_*
+$ENDFPLIST
+DRAW
+S -50 -195 0 -205 1 1 6 N
+S -50 -95 0 -105 1 1 6 N
+S -50 5 0 -5 1 1 6 N
+S -50 105 0 95 1 1 6 N
+S -50 150 50 -250 1 1 10 f
+X Pin_1 1 -200 100 150 R 50 50 1 1 P
+X Pin_2 2 -200 0 150 R 50 50 1 1 P
+X Pin_3 3 -200 -100 150 R 50 50 1 1 P
+X Pin_4 4 -200 -200 150 R 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Connector_Generic:Conn_01x06
+#
+DEF Connector_Generic:Conn_01x06 J 0 40 Y N 1 F N
+F0 "J" 0 300 50 H V C CNN
+F1 "Connector_Generic:Conn_01x06" 0 -400 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ Connector*:*_1x??_*
+$ENDFPLIST
+DRAW
+S -50 -295 0 -305 1 1 6 N
+S -50 -195 0 -205 1 1 6 N
+S -50 -95 0 -105 1 1 6 N
+S -50 5 0 -5 1 1 6 N
+S -50 105 0 95 1 1 6 N
+S -50 205 0 195 1 1 6 N
+S -50 250 50 -350 1 1 10 f
+X Pin_1 1 -200 200 150 R 50 50 1 1 P
+X Pin_2 2 -200 100 150 R 50 50 1 1 P
+X Pin_3 3 -200 0 150 R 50 50 1 1 P
+X Pin_4 4 -200 -100 150 R 50 50 1 1 P
+X Pin_5 5 -200 -200 150 R 50 50 1 1 P
+X Pin_6 6 -200 -300 150 R 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Device:CP
+#
+DEF Device:CP C 0 10 N Y 1 F N
+F0 "C" 25 100 50 H V L CNN
+F1 "Device:CP" 25 -100 50 H V L CNN
+F2 "" 38 -150 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ CP_*
+$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 50 50 1 1 P
+X ~ 2 0 -150 110 U 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Lien:74HCT125N
+#
+DEF Lien:74HCT125N U 0 40 Y Y 1 F N
+F0 "U" 50 -50 50 H V C CNN
+F1 "Lien:74HCT125N" 50 50 50 H V C CNN
+F2 "" 50 0 50 H I C CNN
+F3 "" 50 0 50 H I C CNN
+DRAW
+S -450 450 500 -450 0 1 0 N
+X 1!OE 1 -550 300 100 R 50 50 1 1 I
+X 3!OE 10 600 -100 100 L 50 50 1 1 I
+X 4Y 11 600 0 100 L 50 50 1 1 O
+X 4A 12 600 100 100 L 50 50 1 1 I
+X 4!OE 13 600 200 100 L 50 50 1 1 I
+X Vcc 14 600 300 100 L 50 50 1 1 W
+X 1A 2 -550 200 100 R 50 50 1 1 I
+X 1Y 3 -550 100 100 R 50 50 1 1 O
+X 2!OE 4 -550 0 100 R 50 50 1 1 I
+X 2A 5 -550 -100 100 R 50 50 1 1 I
+X 2Y 6 -550 -200 100 R 50 50 1 1 O
+X GND 7 -550 -300 100 R 50 50 1 1 W
+X 3Y 8 600 -300 100 L 50 50 1 1 O
+X 3A 9 600 -200 100 L 50 50 1 1 I
+ENDDRAW
+ENDDEF
+#
+# Lien:DC-DC_MP1584EN
+#
+DEF Lien:DC-DC_MP1584EN U 0 40 Y Y 1 F N
+F0 "U" 0 -100 50 H V C CNN
+F1 "Lien:DC-DC_MP1584EN" 0 0 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+DRAW
+S -350 -450 350 450 0 1 0 N
+X GND_IN 1 -200 -550 100 U 50 50 1 1 W
+X Vcc_IN 2 200 -550 100 U 50 50 1 1 W
+X GND_OUT 3 -200 550 100 D 50 50 1 1 w
+X Vcc_OUT 4 200 550 100 D 50 50 1 1 w
+ENDDRAW
+ENDDEF
+#
+# Lien:POL_A4988
+#
+DEF Lien:POL_A4988 Dr 0 40 Y Y 1 F N
+F0 "Dr" 0 -100 60 H V C CNN
+F1 "Lien:POL_A4988" 0 50 60 H V C CNN
+F2 "" 0 0 60 H V C CNN
+F3 "" 0 0 60 H V C CNN
+DRAW
+S -550 450 500 -550 0 1 0 N
+X !En 1 -750 300 200 R 50 50 1 1 I
+X VDD 10 700 -300 200 L 50 50 1 1 W
+X 1B 11 700 -200 200 L 50 50 1 1 O
+X 1A 12 700 -100 200 L 50 50 1 1 O
+X 2A 13 700 0 200 L 50 50 1 1 O
+X 2B 14 700 100 200 L 50 50 1 1 O
+X GND 15 700 200 200 L 50 50 1 1 O
+X Vmot 16 700 300 200 L 50 50 1 1 O
+X MS1 2 -750 200 200 R 50 50 1 1 I
+X MS2 3 -750 100 200 R 50 50 1 1 I
+X MS3 4 -750 0 200 R 50 50 1 1 I
+X !RST 5 -750 -100 200 R 50 50 1 1 I
+X !SLP 6 -750 -200 200 R 50 50 1 1 I
+X STEP 7 -750 -300 200 R 50 50 1 1 I
+X DIR 8 -750 -400 200 R 50 50 1 1 I
+X GND 9 700 -400 200 L 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+# Lien:POL_MAX14870
+#
+DEF Lien:POL_MAX14870 MotorDriver 0 40 Y Y 1 F N
+F0 "MotorDriver" 0 -50 50 H V C CNN
+F1 "Lien:POL_MAX14870" 0 50 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+DRAW
+S 550 300 -550 -300 0 1 0 N
+X PWM 1 -650 200 100 R 50 50 1 1 I
+X Vm 10 650 200 100 L 50 50 1 1 w
+X DIR 2 -650 100 100 R 50 50 1 1 I
+X !FLT 3 -650 0 100 R 50 50 1 1 I
+X !EN 4 -650 -100 100 R 50 50 1 1 I
+X GND 5 -650 -200 100 R 50 50 1 1 W
+X GND 6 650 -200 100 L 50 50 1 1 W
+X Vin 7 650 -100 100 L 50 50 1 1 W
+X M2 8 650 0 100 L 50 50 1 1 w
+X M1 9 650 100 100 L 50 50 1 1 w
+ENDDRAW
+ENDDEF
+#
+# Lien:Teensy_3.1
+#
+DEF Lien:Teensy_3.1 U 0 40 Y Y 1 F N
+F0 "U" 50 1050 60 H V C CNN
+F1 "Lien:Teensy_3.1" 100 1500 60 H V C CNN
+F2 "" 100 0 60 H V C CNN
+F3 "" 100 0 60 H V C CNN
+DRAW
+S 800 -1000 -800 1550 0 1 0 N
+X 0(RX1) 0 -1000 1150 197 R 79 79 1 1 B
+X 1(TX1) 1 -1000 1000 197 R 79 79 1 1 B
+X 10(CS)(TX2) 10 -1000 -350 197 R 79 79 1 1 B
+X 11(DOUT) 11 -1000 -500 197 R 79 79 1 1 B
+X 12(DIN) 12 -1000 -650 197 R 79 79 1 1 B
+X 13(LED) 13 1000 -650 197 L 79 79 1 1 B
+X 14/A0 14 1000 -500 197 L 79 79 1 1 B
+X 15/A1 15 1000 -350 197 L 79 79 1 1 B
+X 16/A2 16 1000 -200 197 L 79 79 1 1 B
+X 17/A3 17 1000 -50 197 L 79 79 1 1 B
+X 18/A4 18 1000 100 197 L 79 79 1 1 B
+X 19/A5 19 1000 250 197 L 79 79 1 1 B
+X 2 2 -1000 850 197 R 79 79 1 1 B
+X 20/A6 20 1000 400 197 L 79 79 1 1 B
+X 21/A7 21 1000 550 197 L 79 79 1 1 B
+X 22/A8 22 1000 700 197 L 79 79 1 1 B
+X 23/A9 23 1000 850 197 L 79 79 1 1 B
+X 3.3V 24 1000 1000 197 L 79 79 1 1 w
+X AGND 25 1000 1150 197 L 79 79 1 1 W
+X Vin 26 1000 1300 197 L 79 79 1 1 W
+X GND 27 -1000 1300 197 R 79 79 1 1 W
+X A14 28 350 -1200 197 U 79 79 1 1 B
+X Prog 29 200 -1200 197 U 79 79 1 1 B
+X 3(TX) 3 -1000 700 197 R 79 79 1 1 B
+X GND 30 50 -1200 197 U 79 79 1 1 W
+X 3.3V 31 -100 -1200 197 U 79 79 1 1 W
+X VBat 32 -250 -1200 197 U 79 79 1 1 W
+X 4(RX) 4 -1000 550 197 R 79 79 1 1 B
+X 5 5 -1000 400 197 R 79 79 1 1 B
+X 6 6 -1000 250 197 R 79 79 1 1 B
+X 7(RX3) 7 -1000 100 197 R 79 79 1 1 B
+X 8(TX3) 8 -1000 -50 197 R 79 79 1 1 B
+X 9(RX2) 9 -1000 -200 197 R 79 79 1 1 B
+ENDDRAW
+ENDDEF
+#
+# Lien:W5500
+#
+DEF Lien:W5500 U 0 40 Y Y 1 F N
+F0 "U" 0 -50 50 H V C CNN
+F1 "Lien:W5500" 0 50 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+DRAW
+S -500 200 400 -350 0 1 0 N
+X Gnd 1 -400 -450 100 U 50 50 1 1 W
+X MOSI 2 -300 -450 100 U 50 50 1 1 I
+X SCK 3 -200 -450 100 U 50 50 1 1 I
+X CS 4 -100 -450 100 U 50 50 1 1 I
+X INT 5 0 -450 100 U 50 50 1 1 O
+X MISO 6 100 -450 100 U 50 50 1 1 O
+X RST 7 200 -450 100 U 50 50 1 1 I
+X 3V3 8 300 -450 100 U 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+# Switch:SW_DIP_x03
+#
+DEF Switch:SW_DIP_x03 SW 0 0 Y N 1 F N
+F0 "SW" 0 350 50 H V C CNN
+F1 "Switch:SW_DIP_x03" 0 -150 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ SW?DIP?x3*
+$ENDFPLIST
+DRAW
+C -80 0 20 0 0 0 N
+C -80 100 20 0 0 0 N
+C -80 200 20 0 0 0 N
+C 80 0 20 0 0 0 N
+C 80 100 20 0 0 0 N
+C 80 200 20 0 0 0 N
+S -150 300 150 -100 0 1 10 f
+P 2 0 0 0 -60 5 93 46 N
+P 2 0 0 0 -60 105 93 146 N
+P 2 0 0 0 -60 205 93 246 N
+X ~ 1 -300 200 200 R 50 50 1 1 P
+X ~ 2 -300 100 200 R 50 50 1 1 P
+X ~ 3 -300 0 200 R 50 50 1 1 P
+X ~ 4 300 0 200 L 50 50 1 1 P
+X ~ 5 300 100 200 L 50 50 1 1 P
+X ~ 6 300 200 200 L 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# power:+36V
+#
+DEF power:+36V #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -150 50 H I C CNN
+F1 "power:+36V" 0 140 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I 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 +36V 1 0 0 0 U 50 50 1 1 W N
+ENDDRAW
+ENDDEF
+#
+# power:+3V3
+#
+DEF power:+3V3 #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -150 50 H I C CNN
+F1 "power:+3V3" 0 140 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I 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
+#
+# power:+5V
+#
+DEF power:+5V #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -150 50 H I C CNN
+F1 "power:+5V" 0 140 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I 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
+#
+# power:GND
+#
+DEF power:GND #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -250 50 H I C CNN
+F1 "power:GND" 0 -150 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I 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
+#
+# power:GNDPWR
+#
+DEF power:GNDPWR #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -200 50 H I C CNN
+F1 "power:GNDPWR" 0 -130 50 H V C CNN
+F2 "" 0 -50 50 H I C CNN
+F3 "" 0 -50 50 H I C CNN
+DRAW
+P 2 0 1 0 0 -50 0 0 N
+P 3 0 1 8 -40 -50 -50 -80 -50 -80 N
+P 3 0 1 8 -20 -50 -30 -80 -30 -80 N
+P 3 0 1 8 0 -50 -10 -80 -10 -80 N
+P 3 0 1 8 20 -50 10 -80 10 -80 N
+P 3 0 1 8 40 -50 -40 -50 -40 -50 N
+P 4 0 1 8 40 -50 30 -80 30 -80 30 -80 N
+X GNDPWR 1 0 0 0 D 50 50 1 1 W N
+ENDDRAW
+ENDDEF
+#
+#End Library

ファイルの差分が大きいため隠しています
+ 1031 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP.bak


ファイルの差分が大きいため隠しています
+ 2054 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP.kicad_pcb


ファイルの差分が大きいため隠しています
+ 2053 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP.kicad_pcb-bak


+ 568 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP.net

@@ -0,0 +1,568 @@
+(export (version D)
+  (design
+    (source "/home/titi/work/projets/Fresnoy/Hadrien Tequi/HTequi/PCB/BLOBCNC_TOP/BLOBCNC_TOP.sch")
+    (date "lun. 20 mai 2019 01:00:13 CEST")
+    (tool "Eeschema 5.0.0+dfsg1-2")
+    (sheet (number 1) (name /) (tstamps /)
+      (title_block
+        (title)
+        (company)
+        (rev)
+        (date)
+        (source BLOBCNC_TOP.sch)
+        (comment (number 1) (value ""))
+        (comment (number 2) (value ""))
+        (comment (number 3) (value ""))
+        (comment (number 4) (value "")))))
+  (components
+    (comp (ref U3)
+      (value Teensy_3.1)
+      (footprint Lien:Teensy-3.1)
+      (libsource (lib Lien) (part Teensy_3.1) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1C047))
+    (comp (ref U2)
+      (value W5500)
+      (footprint Lien:W5500)
+      (libsource (lib Lien) (part W5500) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1C168))
+    (comp (ref U4)
+      (value 74HCT125N)
+      (footprint Package_DIP:DIP-14_W7.62mm_Socket_LongPads)
+      (libsource (lib Lien) (part 74HCT125N) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1C272))
+    (comp (ref Dr1)
+      (value POL_A4988)
+      (footprint Lien:POL_A4988)
+      (libsource (lib Lien) (part POL_A4988) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1C2F5))
+    (comp (ref J3)
+      (value POWER_IN)
+      (footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1C5A7))
+    (comp (ref U1)
+      (value DC-DC_MP1584EN)
+      (footprint "Lien:DC-DC LStepdown M2596")
+      (libsource (lib Lien) (part DC-DC_MP1584EN) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1C6E1))
+    (comp (ref MotorDriver1)
+      (value POL_MAX14870)
+      (footprint Lien:POL_MAX14870)
+      (libsource (lib Lien) (part POL_MAX14870) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1D5A3))
+    (comp (ref MotorDriver2)
+      (value POL_MAX14870)
+      (footprint Lien:POL_MAX14870)
+      (libsource (lib Lien) (part POL_MAX14870) (description ""))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1D649))
+    (comp (ref J7)
+      (value SERIAL1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1E555))
+    (comp (ref J8)
+      (value SERIAL2)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE1E639))
+    (comp (ref J1)
+      (value Motor1)
+      (footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE2895B))
+    (comp (ref J2)
+      (value Motor1)
+      (footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE2C451))
+    (comp (ref J4)
+      (value IO1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE3D769))
+    (comp (ref J5)
+      (value IO1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE455D4))
+    (comp (ref J6)
+      (value IO1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE4717A))
+    (comp (ref J13)
+      (value Conn_01x06)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CE546DC))
+    (comp (ref J12)
+      (value Conn_01x04)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CEBD107))
+    (comp (ref SW1)
+      (value SW_DIP_x03)
+      (footprint Button_Switch_THT:SW_DIP_SPSTx03_Slide_9.78x9.8mm_W7.62mm_P2.54mm)
+      (libsource (lib Switch) (part SW_DIP_x03) (description "3x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CEE5DC9))
+    (comp (ref C1)
+      (value 100uF)
+      (footprint Capacitor_THT:CP_Radial_D6.3mm_P2.50mm)
+      (datasheet ~)
+      (libsource (lib Device) (part CP) (description "Polarised capacitor"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CEFEFB4))
+    (comp (ref J11)
+      (value IO1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CF36BCE))
+    (comp (ref J10)
+      (value IO1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CF36BE2))
+    (comp (ref J9)
+      (value IO1)
+      (footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
+      (datasheet ~)
+      (libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5CF36BF7)))
+  (libparts
+    (libpart (lib Connector_Generic) (part Conn_01x02)
+      (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
+      (docs ~)
+      (footprints
+        (fp Connector*:*_1x??_*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) Conn_01x02))
+      (pins
+        (pin (num 1) (name Pin_1) (type passive))
+        (pin (num 2) (name Pin_2) (type passive))))
+    (libpart (lib Connector_Generic) (part Conn_01x03)
+      (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
+      (docs ~)
+      (footprints
+        (fp Connector*:*_1x??_*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) Conn_01x03))
+      (pins
+        (pin (num 1) (name Pin_1) (type passive))
+        (pin (num 2) (name Pin_2) (type passive))
+        (pin (num 3) (name Pin_3) (type passive))))
+    (libpart (lib Connector_Generic) (part Conn_01x04)
+      (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
+      (docs ~)
+      (footprints
+        (fp Connector*:*_1x??_*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) Conn_01x04))
+      (pins
+        (pin (num 1) (name Pin_1) (type passive))
+        (pin (num 2) (name Pin_2) (type passive))
+        (pin (num 3) (name Pin_3) (type passive))
+        (pin (num 4) (name Pin_4) (type passive))))
+    (libpart (lib Connector_Generic) (part Conn_01x06)
+      (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
+      (docs ~)
+      (footprints
+        (fp Connector*:*_1x??_*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) Conn_01x06))
+      (pins
+        (pin (num 1) (name Pin_1) (type passive))
+        (pin (num 2) (name Pin_2) (type passive))
+        (pin (num 3) (name Pin_3) (type passive))
+        (pin (num 4) (name Pin_4) (type passive))
+        (pin (num 5) (name Pin_5) (type passive))
+        (pin (num 6) (name Pin_6) (type passive))))
+    (libpart (lib Device) (part CP)
+      (description "Polarised capacitor")
+      (docs ~)
+      (footprints
+        (fp CP_*))
+      (fields
+        (field (name Reference) C)
+        (field (name Value) CP))
+      (pins
+        (pin (num 1) (name ~) (type passive))
+        (pin (num 2) (name ~) (type passive))))
+    (libpart (lib Lien) (part 74HCT125N)
+      (fields
+        (field (name Reference) U)
+        (field (name Value) 74HCT125N))
+      (pins
+        (pin (num 1) (name 1!OE) (type input))
+        (pin (num 2) (name 1A) (type input))
+        (pin (num 3) (name 1Y) (type output))
+        (pin (num 4) (name 2!OE) (type input))
+        (pin (num 5) (name 2A) (type input))
+        (pin (num 6) (name 2Y) (type output))
+        (pin (num 7) (name GND) (type power_in))
+        (pin (num 8) (name 3Y) (type output))
+        (pin (num 9) (name 3A) (type input))
+        (pin (num 10) (name 3!OE) (type input))
+        (pin (num 11) (name 4Y) (type output))
+        (pin (num 12) (name 4A) (type input))
+        (pin (num 13) (name 4!OE) (type input))
+        (pin (num 14) (name Vcc) (type power_in))))
+    (libpart (lib Lien) (part DC-DC_MP1584EN)
+      (fields
+        (field (name Reference) U)
+        (field (name Value) DC-DC_MP1584EN))
+      (pins
+        (pin (num 1) (name GND_IN) (type power_in))
+        (pin (num 2) (name Vcc_IN) (type power_in))
+        (pin (num 3) (name GND_OUT) (type power_out))
+        (pin (num 4) (name Vcc_OUT) (type power_out))))
+    (libpart (lib Lien) (part POL_A4988)
+      (fields
+        (field (name Reference) Dr)
+        (field (name Value) POL_A4988))
+      (pins
+        (pin (num 1) (name !En) (type input))
+        (pin (num 2) (name MS1) (type input))
+        (pin (num 3) (name MS2) (type input))
+        (pin (num 4) (name MS3) (type input))
+        (pin (num 5) (name !RST) (type input))
+        (pin (num 6) (name !SLP) (type input))
+        (pin (num 7) (name STEP) (type input))
+        (pin (num 8) (name DIR) (type input))
+        (pin (num 9) (name GND) (type power_in))
+        (pin (num 10) (name VDD) (type power_in))
+        (pin (num 11) (name 1B) (type output))
+        (pin (num 12) (name 1A) (type output))
+        (pin (num 13) (name 2A) (type output))
+        (pin (num 14) (name 2B) (type output))
+        (pin (num 15) (name GND) (type output))
+        (pin (num 16) (name Vmot) (type output))))
+    (libpart (lib Lien) (part POL_MAX14870)
+      (fields
+        (field (name Reference) MotorDriver)
+        (field (name Value) POL_MAX14870))
+      (pins
+        (pin (num 1) (name PWM) (type input))
+        (pin (num 2) (name DIR) (type input))
+        (pin (num 3) (name !FLT) (type input))
+        (pin (num 4) (name !EN) (type input))
+        (pin (num 5) (name GND) (type power_in))
+        (pin (num 6) (name GND) (type power_in))
+        (pin (num 7) (name Vin) (type power_in))
+        (pin (num 8) (name M2) (type power_out))
+        (pin (num 9) (name M1) (type power_out))
+        (pin (num 10) (name Vm) (type power_out))))
+    (libpart (lib Lien) (part Teensy_3.1)
+      (fields
+        (field (name Reference) U)
+        (field (name Value) Teensy_3.1))
+      (pins
+        (pin (num 0) (name "0(RX1)") (type BiDi))
+        (pin (num 1) (name "1(TX1)") (type BiDi))
+        (pin (num 2) (name 2) (type BiDi))
+        (pin (num 3) (name "3(TX)") (type BiDi))
+        (pin (num 4) (name "4(RX)") (type BiDi))
+        (pin (num 5) (name 5) (type BiDi))
+        (pin (num 6) (name 6) (type BiDi))
+        (pin (num 7) (name "7(RX3)") (type BiDi))
+        (pin (num 8) (name "8(TX3)") (type BiDi))
+        (pin (num 9) (name "9(RX2)") (type BiDi))
+        (pin (num 10) (name "10(CS)(TX2)") (type BiDi))
+        (pin (num 11) (name "11(DOUT)") (type BiDi))
+        (pin (num 12) (name "12(DIN)") (type BiDi))
+        (pin (num 13) (name "13(LED)") (type BiDi))
+        (pin (num 14) (name 14/A0) (type BiDi))
+        (pin (num 15) (name 15/A1) (type BiDi))
+        (pin (num 16) (name 16/A2) (type BiDi))
+        (pin (num 17) (name 17/A3) (type BiDi))
+        (pin (num 18) (name 18/A4) (type BiDi))
+        (pin (num 19) (name 19/A5) (type BiDi))
+        (pin (num 20) (name 20/A6) (type BiDi))
+        (pin (num 21) (name 21/A7) (type BiDi))
+        (pin (num 22) (name 22/A8) (type BiDi))
+        (pin (num 23) (name 23/A9) (type BiDi))
+        (pin (num 24) (name 3.3V) (type power_out))
+        (pin (num 25) (name AGND) (type power_in))
+        (pin (num 26) (name Vin) (type power_in))
+        (pin (num 27) (name GND) (type power_in))
+        (pin (num 28) (name A14) (type BiDi))
+        (pin (num 29) (name Prog) (type BiDi))
+        (pin (num 30) (name GND) (type power_in))
+        (pin (num 31) (name 3.3V) (type power_in))
+        (pin (num 32) (name VBat) (type power_in))))
+    (libpart (lib Lien) (part W5500)
+      (fields
+        (field (name Reference) U)
+        (field (name Value) W5500))
+      (pins
+        (pin (num 1) (name Gnd) (type power_in))
+        (pin (num 2) (name MOSI) (type input))
+        (pin (num 3) (name SCK) (type input))
+        (pin (num 4) (name CS) (type input))
+        (pin (num 5) (name INT) (type output))
+        (pin (num 6) (name MISO) (type output))
+        (pin (num 7) (name RST) (type input))
+        (pin (num 8) (name 3V3) (type power_in))))
+    (libpart (lib Switch) (part SW_DIP_x03)
+      (description "3x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol")
+      (footprints
+        (fp SW?DIP?x3*))
+      (fields
+        (field (name Reference) SW)
+        (field (name Value) SW_DIP_x03))
+      (pins
+        (pin (num 1) (name ~) (type passive))
+        (pin (num 2) (name ~) (type passive))
+        (pin (num 3) (name ~) (type passive))
+        (pin (num 4) (name ~) (type passive))
+        (pin (num 5) (name ~) (type passive))
+        (pin (num 6) (name ~) (type passive)))))
+  (libraries
+    (library (logical Connector_Generic)
+      (uri /usr/share/kicad/library/Connector_Generic.lib))
+    (library (logical Device)
+      (uri /usr/share/kicad/library/Device.lib))
+    (library (logical Lien)
+      (uri /home/titi/work/dev/pcb/kicad_lien/kicad_lien.lib))
+    (library (logical Switch)
+      (uri /usr/share/kicad/library/Switch.lib)))
+  (nets
+    (net (code 1) (name "Net-(J13-Pad3)")
+      (node (ref U4) (pin 6))
+      (node (ref J13) (pin 3)))
+    (net (code 2) (name "Net-(J13-Pad5)")
+      (node (ref J13) (pin 5))
+      (node (ref U4) (pin 8)))
+    (net (code 3) (name GND)
+      (node (ref U4) (pin 1))
+      (node (ref U2) (pin 1))
+      (node (ref J7) (pin 1))
+      (node (ref J8) (pin 1))
+      (node (ref U4) (pin 7))
+      (node (ref U4) (pin 10))
+      (node (ref U4) (pin 12))
+      (node (ref U4) (pin 4))
+      (node (ref J5) (pin 1))
+      (node (ref U3) (pin 27))
+      (node (ref MotorDriver1) (pin 5))
+      (node (ref J6) (pin 1))
+      (node (ref MotorDriver2) (pin 5))
+      (node (ref J10) (pin 1))
+      (node (ref J4) (pin 1))
+      (node (ref J9) (pin 1))
+      (node (ref MotorDriver1) (pin 6))
+      (node (ref MotorDriver2) (pin 6))
+      (node (ref Dr1) (pin 9))
+      (node (ref U1) (pin 3))
+      (node (ref J11) (pin 1)))
+    (net (code 4) (name "Net-(Dr1-Pad5)")
+      (node (ref Dr1) (pin 6))
+      (node (ref Dr1) (pin 5)))
+    (net (code 5) (name +5V)
+      (node (ref SW1) (pin 1))
+      (node (ref U4) (pin 14))
+      (node (ref MotorDriver1) (pin 7))
+      (node (ref U3) (pin 26))
+      (node (ref MotorDriver2) (pin 7))
+      (node (ref J11) (pin 2))
+      (node (ref Dr1) (pin 10))
+      (node (ref SW1) (pin 2))
+      (node (ref U1) (pin 4))
+      (node (ref SW1) (pin 3))
+      (node (ref J6) (pin 2))
+      (node (ref J13) (pin 4))
+      (node (ref J5) (pin 2))
+      (node (ref J10) (pin 2))
+      (node (ref J4) (pin 2))
+      (node (ref J9) (pin 2))
+      (node (ref J13) (pin 6))
+      (node (ref J13) (pin 2)))
+    (net (code 6) (name "Net-(Dr1-Pad8)")
+      (node (ref U3) (pin 21))
+      (node (ref Dr1) (pin 8)))
+    (net (code 7) (name "Net-(Dr1-Pad7)")
+      (node (ref U3) (pin 22))
+      (node (ref Dr1) (pin 7)))
+    (net (code 8) (name "Net-(Dr1-Pad1)")
+      (node (ref U3) (pin 23))
+      (node (ref Dr1) (pin 1)))
+    (net (code 9) (name "Net-(U4-Pad11)")
+      (node (ref U4) (pin 11)))
+    (net (code 10) (name "Net-(U4-Pad13)")
+      (node (ref U4) (pin 13)))
+    (net (code 11) (name "Net-(J13-Pad1)")
+      (node (ref U4) (pin 3))
+      (node (ref J13) (pin 1)))
+    (net (code 12) (name "Net-(J4-Pad3)")
+      (node (ref U3) (pin 6))
+      (node (ref J4) (pin 3)))
+    (net (code 13) (name "Net-(J5-Pad3)")
+      (node (ref J5) (pin 3))
+      (node (ref U3) (pin 7)))
+    (net (code 14) (name "Net-(J6-Pad3)")
+      (node (ref U3) (pin 8))
+      (node (ref J6) (pin 3)))
+    (net (code 15) (name "Net-(J9-Pad3)")
+      (node (ref U3) (pin 17))
+      (node (ref J9) (pin 3)))
+    (net (code 16) (name "Net-(U3-Pad20)")
+      (node (ref U3) (pin 20))
+      (node (ref U4) (pin 9)))
+    (net (code 17) (name "Net-(U3-Pad19)")
+      (node (ref U4) (pin 5))
+      (node (ref U3) (pin 19)))
+    (net (code 18) (name "Net-(U3-Pad18)")
+      (node (ref U4) (pin 2))
+      (node (ref U3) (pin 18)))
+    (net (code 19) (name "Net-(U3-Pad25)")
+      (node (ref U3) (pin 25)))
+    (net (code 20) (name "Net-(Dr1-Pad4)")
+      (node (ref SW1) (pin 4))
+      (node (ref Dr1) (pin 4)))
+    (net (code 21) (name "Net-(Dr1-Pad3)")
+      (node (ref SW1) (pin 5))
+      (node (ref Dr1) (pin 3)))
+    (net (code 22) (name "Net-(Dr1-Pad2)")
+      (node (ref SW1) (pin 6))
+      (node (ref Dr1) (pin 2)))
+    (net (code 23) (name "Net-(U3-Pad28)")
+      (node (ref U3) (pin 28)))
+    (net (code 24) (name "Net-(U3-Pad29)")
+      (node (ref U3) (pin 29)))
+    (net (code 25) (name "Net-(U3-Pad30)")
+      (node (ref U3) (pin 30)))
+    (net (code 26) (name "Net-(U3-Pad31)")
+      (node (ref U3) (pin 31)))
+    (net (code 27) (name "Net-(U3-Pad32)")
+      (node (ref U3) (pin 32)))
+    (net (code 28) (name "Net-(J11-Pad3)")
+      (node (ref U3) (pin 14))
+      (node (ref J11) (pin 3)))
+    (net (code 29) (name "Net-(J10-Pad3)")
+      (node (ref J10) (pin 3))
+      (node (ref U3) (pin 16)))
+    (net (code 30) (name "Net-(Dr1-Pad11)")
+      (node (ref J12) (pin 4))
+      (node (ref Dr1) (pin 11)))
+    (net (code 31) (name "Net-(Dr1-Pad12)")
+      (node (ref J12) (pin 3))
+      (node (ref Dr1) (pin 12)))
+    (net (code 32) (name "Net-(Dr1-Pad13)")
+      (node (ref Dr1) (pin 13))
+      (node (ref J12) (pin 2)))
+    (net (code 33) (name "Net-(Dr1-Pad14)")
+      (node (ref J12) (pin 1))
+      (node (ref Dr1) (pin 14)))
+    (net (code 34) (name GNDPWR)
+      (node (ref C1) (pin 2))
+      (node (ref Dr1) (pin 15))
+      (node (ref J3) (pin 1))
+      (node (ref U1) (pin 1)))
+    (net (code 35) (name +36V)
+      (node (ref J3) (pin 2))
+      (node (ref U1) (pin 2))
+      (node (ref Dr1) (pin 16))
+      (node (ref C1) (pin 1)))
+    (net (code 36) (name "Net-(MotorDriver1-Pad10)")
+      (node (ref MotorDriver1) (pin 10)))
+    (net (code 37) (name "Net-(MotorDriver1-Pad1)")
+      (node (ref MotorDriver1) (pin 1))
+      (node (ref U3) (pin 3)))
+    (net (code 38) (name "Net-(MotorDriver1-Pad3)")
+      (node (ref MotorDriver1) (pin 3)))
+    (net (code 39) (name "Net-(J2-Pad1)")
+      (node (ref J2) (pin 1))
+      (node (ref MotorDriver2) (pin 9)))
+    (net (code 40) (name "Net-(J2-Pad2)")
+      (node (ref MotorDriver2) (pin 8))
+      (node (ref J2) (pin 2)))
+    (net (code 41) (name "Net-(MotorDriver2-Pad4)")
+      (node (ref MotorDriver2) (pin 4)))
+    (net (code 42) (name "Net-(MotorDriver2-Pad3)")
+      (node (ref MotorDriver2) (pin 3)))
+    (net (code 43) (name "Net-(MotorDriver2-Pad10)")
+      (node (ref MotorDriver2) (pin 10)))
+    (net (code 44) (name "Net-(MotorDriver2-Pad1)")
+      (node (ref U3) (pin 5))
+      (node (ref MotorDriver2) (pin 1)))
+    (net (code 45) (name "Net-(MotorDriver1-Pad4)")
+      (node (ref MotorDriver1) (pin 4)))
+    (net (code 46) (name "Net-(MotorDriver2-Pad2)")
+      (node (ref U3) (pin 4))
+      (node (ref MotorDriver2) (pin 2)))
+    (net (code 47) (name "Net-(MotorDriver1-Pad2)")
+      (node (ref U3) (pin 2))
+      (node (ref MotorDriver1) (pin 2)))
+    (net (code 48) (name "Net-(U2-Pad4)")
+      (node (ref U2) (pin 4))
+      (node (ref U3) (pin 15)))
+    (net (code 49) (name "Net-(J8-Pad2)")
+      (node (ref J8) (pin 2))
+      (node (ref U3) (pin 10)))
+    (net (code 50) (name "Net-(J7-Pad2)")
+      (node (ref U3) (pin 1))
+      (node (ref J7) (pin 2)))
+    (net (code 51) (name +3V3)
+      (node (ref U3) (pin 24))
+      (node (ref U2) (pin 8)))
+    (net (code 52) (name "Net-(U2-Pad7)")
+      (node (ref U2) (pin 7)))
+    (net (code 53) (name "Net-(U2-Pad6)")
+      (node (ref U3) (pin 12))
+      (node (ref U2) (pin 6)))
+    (net (code 54) (name "Net-(U2-Pad5)")
+      (node (ref U2) (pin 5)))
+    (net (code 55) (name "Net-(U2-Pad3)")
+      (node (ref U3) (pin 13))
+      (node (ref U2) (pin 3)))
+    (net (code 56) (name "Net-(U2-Pad2)")
+      (node (ref U2) (pin 2))
+      (node (ref U3) (pin 11)))
+    (net (code 57) (name "Net-(J1-Pad2)")
+      (node (ref MotorDriver1) (pin 8))
+      (node (ref J1) (pin 2)))
+    (net (code 58) (name "Net-(J1-Pad1)")
+      (node (ref MotorDriver1) (pin 9))
+      (node (ref J1) (pin 1)))
+    (net (code 59) (name "Net-(J7-Pad3)")
+      (node (ref U3) (pin 0))
+      (node (ref J7) (pin 3)))
+    (net (code 60) (name "Net-(J8-Pad3)")
+      (node (ref U3) (pin 9))
+      (node (ref J8) (pin 3)))))

+ 33 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP.pro

@@ -0,0 +1,33 @@
+update=22/05/2015 07:44:53
+version=1
+last_client=kicad
+[general]
+version=1
+RootSch=
+BoardNm=
+[pcbnew]
+version=1
+LastNetListRead=
+UseCmpFile=1
+PadDrill=0.600000000000
+PadDrillOvalY=0.600000000000
+PadSizeH=1.500000000000
+PadSizeV=1.500000000000
+PcbTextSizeV=1.500000000000
+PcbTextSizeH=1.500000000000
+PcbTextThickness=0.300000000000
+ModuleTextSizeV=1.000000000000
+ModuleTextSizeH=1.000000000000
+ModuleTextSizeThickness=0.150000000000
+SolderMaskClearance=0.000000000000
+SolderMaskMinWidth=0.000000000000
+DrawSegmentWidth=0.200000000000
+BoardOutlineThickness=0.100000000000
+ModuleOutlineThickness=0.150000000000
+[cvpcb]
+version=1
+NetIExt=net
+[eeschema]
+version=1
+LibDir=
+[eeschema/libraries]

ファイルの差分が大きいため隠しています
+ 1035 - 0
PCB/BLOBCNC_TOP/BLOBCNC_TOP.sch


+ 31 - 0
PCB/BLOBCNC_TOP/CNC/blobcnc_TOP_CURT.gcode

@@ -0,0 +1,31 @@
+
+G21
+G90
+G94
+F100.00
+G00 Z0.2000
+M03 S10000
+G4 P1
+G00 X0.7420Y-46.1855
+G01 Z-1.8000
+G01 X0.7420Y0.7420
+G01 X-56.3455Y0.7420
+G00 Z0.2000
+G00 X-58.9955Y0.7420
+G01 Z-1.8000
+G01 X-116.0830Y0.7420
+G01 X-116.0830Y-46.1855
+G00 Z0.2000
+G00 X-116.0830Y-48.8355
+G01 Z-1.8000
+G01 X-116.0830Y-95.7630
+G01 X-58.9955Y-95.7630
+G00 Z0.2000
+G00 X-56.3455Y-95.7630
+G01 Z-1.8000
+G01 X0.7420Y-95.7630
+G01 X0.7420Y-48.8355
+G00 Z0.2000
+G00 Z0.2000
+G00 X0Y0
+M05

+ 618 - 0
PCB/BLOBCNC_TOP/CNC/blobcnc_TOP_DRILL.gcode

@@ -0,0 +1,618 @@
+
+G21
+G90
+G94
+F150.00
+G00 Z2.0000
+M03 S10000
+G4 P1
+G00 X-90.5510Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-90.5510Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-88.0110Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-88.0110Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-82.9310Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-82.9310Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-80.3910Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-80.3910Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-77.8510Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-77.8510Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-75.3110Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-75.3110Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-93.0910Y-33.2740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-90.5910Y-33.2740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-77.8510Y-33.2740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-77.8510Y-35.8140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-77.8510Y-38.3540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-70.2310Y-33.2740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-70.2310Y-35.8140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-70.2310Y-38.3540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-29.4640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-32.0040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-34.5440
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-37.0840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-39.6240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-42.1640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-44.7040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-47.2440
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-49.7840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-52.3240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-57.4040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-59.9440
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-60.7060Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-29.4640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-32.0040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-34.5440
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-37.0840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-39.6240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-42.1640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-44.7040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-47.2440
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-49.7840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-52.3240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-54.8640
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-57.4040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-59.9440
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-45.4660Y-62.4840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-51.3080
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-104.1400Y-66.0400
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-104.1400Y-72.6440
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-102.1080Y-51.3080
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-99.0600Y-72.6440
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-99.0600Y-84.8360
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-29.9720Y-75.1840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-23.8760Y-19.8120
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-20.8280Y-75.1840
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-19.8120
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-63.8810Y-77.0890
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-63.8810Y-79.6290
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-63.8810Y-82.1690
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-14.9860Y-46.6090
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-12.4460Y-46.6090
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-9.9060Y-46.6090
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-102.6160Y-4.6990
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-102.6160Y-22.4790
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-61.9760Y-4.6990
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-61.9760Y-22.4790
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-5.3340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-7.8740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-10.4140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-12.9540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-15.4940
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-5.3340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-7.8740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-10.4140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-12.9540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-15.4940
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-14.9860Y-65.6590
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-12.4460Y-65.6590
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-9.9060Y-65.6590
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-46.7360Y-5.3340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-44.1960Y-5.3340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-41.6560Y-5.3340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-94.9960Y-77.0890
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-94.9960Y-79.6290
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-94.9960Y-82.1690
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-35.8140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-38.3540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-40.8940
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-43.4340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-23.7490
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-26.2890
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-28.8290
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-31.3690
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-28.9560Y-33.9090
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-23.7490
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-26.2890
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-28.8290
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-31.3690
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-16.2560Y-33.9090
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-46.7360Y-18.0340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-44.1960Y-18.0340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-41.6560Y-18.0340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-14.9860Y-56.1340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-12.4460Y-56.1340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-9.9060Y-56.1340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-79.1210Y-77.0890
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-79.1210Y-79.6290
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-79.1210Y-82.1690
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-56.1340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-58.6740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-61.2140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-63.7540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-66.2940
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.2360Y-68.8340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-42.7990Y-70.1040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-42.7990Y-90.4240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-40.2590Y-70.1040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-40.2590Y-90.4240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-37.7190Y-70.1040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-37.7190Y-90.4240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-35.1790Y-70.1040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-35.1790Y-90.4240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-32.6390Y-70.1040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-32.6390Y-90.4240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-30.0990Y-70.1040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-30.0990Y-90.4240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-98.1710Y-30.7340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-98.1710Y-33.2740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-98.1710Y-35.8140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-98.1710Y-38.3540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-98.1710Y-40.8940
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-98.1710Y-43.4340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-98.1710Y-45.9740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-98.1710Y-48.5140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-30.7340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-33.2740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-35.8140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-38.3540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-40.8940
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-43.4340
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-45.9740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-85.4710Y-48.5140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-4.1910Y-26.9240
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-4.1910Y-32.0040
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-4.1910Y-7.8740
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-4.1910Y-12.9540
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.8710Y-10.4140
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X-110.8710Y-15.4940
+G01 Z-1.8000
+G01 Z0
+G00 Z2.0000
+G00 X0.0000Y0.0000
+M05

ファイルの差分が大きいため隠しています
+ 40093 - 0
PCB/BLOBCNC_TOP/CNC/blobcnc_TOP_ISOL.gcode