diff --git a/README.md b/README.md
index 99fdfd5027d885603cf5d071fd0b25af04ad2af2..1bc98de2b20de38a2135315c6822df51c613b3be 100644
--- a/README.md
+++ b/README.md
@@ -18,191 +18,10 @@ You'll notice this encoder has two other reference markings - those are super in
 
 **So** my goal here is develop an encoder that I can put on whatever-I-want without spending too much money, and without fussing too much about setup. Critically, I also want to un-constrain myself from particular sizes - whenever I have to source a particular size ring or strip (for reference) I end up boxed-in in terms of the *~ design spaces ~* I can get into. I don't like that.
 
-## Solution?
+## Solution: Capacitive Encoder
 
-So I'm going to try rolling<sup>2</sup> a magnetic encoder<sup>3</sup> with a custom array of magnets. This way I can roll a ring or line of magnets into whatever structure I want, and hover one of these encoders above it to read position.
+[Go Here](https://gitlab.cba.mit.edu/jakeread/mkencoder/tree/master/capacitive.md) for Capacitive Writeup and Doc
 
-The chip I'm going to use is an AS5304 - a product offered by AMS that does all of the hard work on the hall-array end for me. I can read quadrature output from this ('ABI' interface - 'I' being an Index Pulse)
+## Solution: Magnetic Encoder
 
-So, in summary, I am basically just building a big ring magnet, and trying to read that with the AS5304.
-
-## Problems 
-
-I am using an AS5304 (4mm poles) or an AS5406 (2.4mm poles). Each has 160 positions per magnetic period. This translates to a resolution of 25um and 15um steps, respectively. If I wrap this around some diameter D I have that 
-
-angular resolution = 360 / (((PI x D)/pole_length) x 160)
-
-Of course, I have to set the circumference equal to an integer value of magnets. I wrote a quick spreadsheet for this, and get that w/ a Diameter ~ 100mm (where the gearbox currently stands) I can get 0.017 deg/step with a 2.4mm pole pair, and ~ 0.03 deg/step with a 4mm pole spacing. Nice. 
-
-![rough spreadsheet](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/spreadsheet-resolution-approx.png)
-
-Now, this is not so straightforward. The important thing to remember is that **Resolution != Accuracy** - while I have ~ 0.03 deg / step, those steps are not exactly mapped perfectly in a circle. I will actually be referencing magnets that are glued in place - so my glueing and magnet placement would have to be *perfect<sup>4</sup>* for Resolution to = Accuracy. In addition, not all magnetic fields will be identical, etc.
-
-In addition to these mappings between poles, I will have some deviation, I'm sure, within the poles. As in, the magnets will likely have small gaps (finding a magnet which is perfectly 2mm across... not likely) and so I expect readings to deviate in a kind of sine-wave around *actual* position... one period of the wave corresponding to one period of the poles. 
-
-This can be overcome in implementation by mapping in memory a lookup table, with respect to some 'home' position, of how measured ticks of the encoder match up with reference positions. For example, I would rotate the encoder to known positions (with some other, higher precision system) and map readings -> known values.
-
-This is not ideal! And it requires a deal of labor, some good routines and memory-storage games, and a reference point.
-
-In this exercise (which I am trying to keep bounded)<sup>5</sup> I will try only to measure this deviation-from-perfection. Or, at least, deviation from some other, better positioning system. 
-
-At best, I hope to cancel periodic deviation (i.e. map the sine-wave between individual poles into a more linear interpolation. my encoders have an Index pulse (on every top-of-pole) that I can use as a reference point for this.  
-
-## Design
-
-Without further ado, here's a sketch of how I plan to build the encoder:
-
-![layout test](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/layout-encoder-test.jpg)
-
-And then, a system to put *that* encoder in set positions, while measuring... 
-
-* while pole pairs are 4.0mm apart, poles are 2mm long - magnets are 2mm across. 
-
-In some moment of foresight, I want to find an encoder with a bigger pole spacing - I think that 2mm is tooo small and seems likely to drive me to madness in assembly. Time to DigiKey it up! None are available, boo. The other option is to truly roll my own encoder, using Hall Effect Sensors with variable output, look at the sine waves, and do encoding from there. This is becoming a challenging project. 
-
-OK, nevermind. I'm going back to on-chip quadrature de-quadraturing (or, mag field -> quadrature).
-
-I made a home for the board
-
-![board-in-fusion-begin](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-in-fusion-begin.jpg)
-
-And started laying out a schematic. Had to build the footprint in Eagle.
-
-![board schematic](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-schematic.jpg)
-
-If you're wondering why I have SPI pins labelled, it's because I'm actually connecting this to a plug on my [Networking Switch](https://github.com/jakeread/tinynets/tree/master/circuit) - these are the pinouts. Instead of SPI I will just configure those pins to do GPIO.
-
-THIS is a big what-if for me. As in, what if I get my switch boards back from the fab and it turns out I can't get GPIO to work on these particular pins? I have trapped myself. !
-
-I also have voltage dividers set up here - the AS5304 drives 5v, and I don't want to pump that into my puny 3v3 logic lines on the ATSAMS70. 
-
-I also have a jumper / pin header footprint setup on the Analog Out pin - this will let me read the strength of the magnetic fields, making sure I am aligned, and that the field strength does not deviate too wildly between poles.
-
-Ideally, I would tie this voltage out to an ADC on the ATSAM, but I haven't broken any of those out on the BLDC encoder board... this is a long chain of interconnects. I am rethinking my overall switch -> peripheral strategies now. A good learning / systems design moment. OR I could tie it to some kind of comparator, and have an LED turn on only when that voltage was in a particular range. *shrugguy*. This is helping me design the modular switch, so that's good news.
-
-OK, Routed
-
-![board routed](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-routed.jpg)
-
-Exporting to mods from Eagle is a bit of a pain. In the fullness of time I would write a MOD to do GERBERS -> Milling, however.
-
-In Eagle, I do this
-
-Options -> Settings -> Misc -> don't display pad names or signals on traces
-
-Layers -> none
-Layers -> Top, Pads
-export image monochrome
-
-Layers -> none
-Layers -> Bottom, pads
-export image monochrome
-
-... ok
-
-Back to my layout, and working back into my sheet, I'm going to add magnets here:
-
-![cad magnet circle](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/cad-magnet-circle.jpg)
-
-And then to test this against some reference, I'm going to use a stepper motor. With the current diameter I'll have 0.05 deg resolution (or, I would ideally) - this means I would need 1/32 microstepping to match up on a stepper motor - I want my reference to have a bit more resolution than what I'm measuring, so I'll try to find a stepper motor with 400 steps / rev, and do 1/32 microstepping on that. Then I have 0.028 deg / step. I'll also bring the diameter down on my encoder to 58 poles, so I'll have 0.077 deg / step there. This means I have about 3x the resolution on my reference than I do on my measured-thing, and intuitively that feels like a good spec. Thumbs up.
-
-ALSO - I knew I should check this, and I'm glad I did - here's a #2 and a #0 screw - the #2 contacts the encoder ring. Noice.<sup>6</sup>
-
-![cad screw clearance](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/cad-screw-clearance.jpg)
-
-Final touches, I'm going to make a mount for a NEMA17 Motor on the back, and a little teeny desktop stand. 
-
-![cad stand](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/cad-stand.jpg)
-
-OK, check it oot
-
-![cad check](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/cad-check.jpg)
-
-## Fab: the board
-
-So I milled this board on the Roland SRM-20. I'm plugging this into my other ongoing work... here's [my brushless motor controller](https://gitlab.cba.mit.edu/jakeread/mkbldcdriver) that rides below my even-more-unresolved networking chip. Those ports you see on the left of the bldc-driver are for other GPIO, including this encoder.
-
-Ramble ramble, here it is:
-
-![board assembled](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-assembled.jpg)
-
-And you can see the AS5304 here
-
-![board as5304](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-as5304.jpg)
-
-Also, a moment of appreciation for the new *Leica* microscope that showed up at the CBA soldering station. Has variable zoom, and generally is very lovely. 
-
-![microscope appreciation](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/microscope-appreciation.jpg)
-
-## Fab: the kit
-
-I printed the hardware on the Eden. The Eden's washing-up station is currently broken, and I spent the better part of an afternoon trying to cobble together a fittings-and-adapters solution to unbreak it, to no avail. I await McMaster parts.
-
-Update: I borrow Biomechatronics' eden waterjet blaster. I have parts now. 
-
-First order is getting these magnets in. They're small!
-
-I accidentally put a few poles side-by-side (rather than alternating) - a bit of a bummer. But this is good enough for my test... Here's the ring
-
-![magnets-in-place](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/magnets-in-place.jpg)
-
-Ok I got this mostly together - made one mistake, where the motor floats a bit behind the mount. I kind of knew this might be an issue - also, generally, I am overconstrained w/ the motor bearings fighting my ring bearing. In hindsight I didn't even need this ring bearing, but it's something I also wanted to prototype for later development, so here we are. Belt and Suspenders.
-
-![motor-and-encoder](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/motor-and-encoder.jpg)
-
-## Testing
-
-Before I get into the meat of programming interrupts etc for this, I'm going to first get some voltage on this board alone and scope the lines to see that I am getting (1) the voltage I want out of the magnetic-field sensing pin, and (2) the ticks I want on the ABI lines.
-
-So, pretty upsetting. I am getting the bad magnetic field warning from the AS5304. The Index is High while A and B are low (the warning) and the output from the CAO (analog magnetic field indicator) is low, around 1.1 volts, meaning that I have a magnetic field that is way too strong.
-
-![datasheet-cao](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/datasheet-cao.jpg)
-
-And my scope trace:
-
-![scope-sad-cao](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/scope-sad-cao.jpg)
-
-And setup:
-
-![scope-to-check-cao](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/scope-to-check-cao.jpg)
-
-In some sense, I should have anticipated this, and in hindsight I really should have read the datasheet in more detail, where I'm sure it outlines the required magnetic field strength...
-
-Yep, there it is
-
-![datasheet-magfield](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/datasheet-magfield.jpg)
-
-So lesson learned - I really should have gotten into this beforehand, but it looks like I have *way* too much magnetic field - 13500 Gauss at the magnet pole and the AS5304 wants only to see 10 to 60 mT (milliTesla) - I have 1350 mT. Whoop! 
-
-## NEXT TIME
-
-I think the best way forward, with all things considered, is to go bones deep <i class="em em-swimmer"></i> and get two Hall Effect Sensors, read those, and do the signal processing. It's a much more interesting project this way, etc.
-
-I may make a last-ditch attempt at the easy route, with skinnier magnets and a bigger spacing between the encoder and the ring.
-
-All I want is more time.
-
-## Programming, Measurements & Corrections
-
-I want to be like Sam. Sam measures *everything* and he does it really beautifully. This is some of the functionality I really want to be able to bring into mods - the ability to quickly pull test data out of systems, do computation with it, and learn.
-
-With that motivation, I want to take this chance to run a test cast of that. The Goal here:
-
-- First, do ATSAM Router -> MODS pipeline
-- Read Encoder with GPIO Interrupts or QED<sup>7</sup> and report periodically to MODS
-- Bones of step & dir control on the ATSAMS70
-- Stateless Stepper Motor Drive on MODS -> ATSAMS70 
-- Graphs & Charts & Realtime Data Capture in MODS
-- Push a line to the stepper, read encoder, watch linear != linear
-- Think long & hard about how to cancel observed differences?
-
-That's a lot! I'm not going to get into it this week, but maybe this is a good project for next week.
-
-# Footnotes
-1. In the sense I am familiar with - that is, machine design and motion control.
-2. ~ pun alert ~
-3. Also cool, footnoted to reduce rambling nature of this document, magnetic encoders use an array of hall sensors to sense and a changing magnetic field as a reference. Were I to go even finer grain with this, I would build my own array of hall sensors, but I am a mere mortal and that's the kind of project that belongs in Sam's domain, or until I significantly up my signal processing game.
-4. And remember, in the words of Morty: "everything is crooked, the world is a lie!"
-5. But I am also planning on actually using this encoder in my implementation of an arm, and later in linear applications, so having an idea of how to *really* pull this off is - I am hoping - something that will come to me. But I make no plans as such. Seems hard. 
-6. Ideally I would solder small threaded-things on to the back of the PCB, then I could mount it from the rear and really pinch the rest of it against the plate. Also this would allow me to adjust the encoder position with the ring already in place.
-7. Quadrature Encoder Decoder - a timer implementation available on the ATSAMS70 that is meant for this.
\ No newline at end of file
+[Go Here](https://gitlab.cba.mit.edu/jakeread/mkencoder/tree/master/magnetic.md) for Magnetic Writeup and Doc
\ No newline at end of file
diff --git a/capacitive.md b/capacitive.md
new file mode 100644
index 0000000000000000000000000000000000000000..5a6b602668a9b960c18d4019c272afccd3bb6fce
--- /dev/null
+++ b/capacitive.md
@@ -0,0 +1,40 @@
+# Solution: Capacitive Encoder
+
+Here, I'll try PCB-fabbing a reference circle with triangular teeth, and two pads to read through.
+
+As the ring moves, capacitance should vary between the pads - I can read this as a value on an ADC pin and track that to figure position.
+
+## Commercial Sensors
+
+I'm dubious about Neils TX / RX settle time - 100us (yikes!). I'm looking into using some other IC's - drivers that are made for this - to do the conversion.
+
+TI has two - the FDC1004 and the FDC2112 - both are I2C devices. The FDC2112, rather than doing rise / delay, watches deviation in resonant frequency at the sensor location. Oddly, none that I can find use Neils TX / RX Scheme for environmental cancelling, all use TX / GND.
+
+In short, these solutions seem cool, but complicated, and I need to take some more time with the bare-bones of this problem to determine if I can make something work. Like,
+ - does rise-time drop with smaller pads? less charge to distribute...
+ - how many up/down sets do I need for a reasonable measurement?
+ - adc resolution -> bar width / spacing
+ - grounding, stack setup, tx pads, rx pad(s)?
+
+Some quick thoughts 
+ - do static tx / rx pads. reference is metallic thing that moves between them, changing the permeability of space between them
+  - bc capacitance is C = \frac{k * e * A}{d} where E is constant, A is area, and K is relative permeability (k ~= 1 for air)
+  - 'metallic thing' can be double-sided pcb w/ sawtooth or sine pattern to read
+ - can do spreadsheet maths for tx / rx areas, see what total capacitance range will be (1pf -> 15pf?)
+ - can figure apparent rise-time calculator, probably?
+
+http://hyperphysics.phy-astr.gsu.edu/hbase/electric/pplate.html
+
+http://www.ti.com/lit/an/snoa927/snoa927.pdf
+
+To quickly lay this out, I'll take the linear case... and a triangular wave to read.
+
+ - notebook pic
+
+ - or whiteboard, do pitch, do 1/4 -> 1/2 -> 3/4
+
+So I can build a quick spreadsheet for this. Using basic areas and http://hyperphysics.phy-astr.gsu.edu/hbase/electric/pplate.html 
+
+C = k*e_0*A/d
+
+What changes as the imaged plate moves is the permittivity of the space between the tx and rx pads. Copper has a technically infinite permittivity, so in some sense what we're doing is decreasing the space between the pads, when the copper passes through. *shrugman*
\ No newline at end of file
diff --git a/magnetic.md b/magnetic.md
new file mode 100644
index 0000000000000000000000000000000000000000..14396b673df59b25ef8bbead7b6093df75e12812
--- /dev/null
+++ b/magnetic.md
@@ -0,0 +1,196 @@
+# Solution: Magnetic Encoder
+
+So I'm going to try rolling<sup>2</sup> a magnetic encoder<sup>3</sup> with a custom array of magnets. This way I can roll a ring or line of magnets into whatever structure I want, and hover one of these encoders above it to read position.
+
+The chip I'm going to use is an AS5304 - a product offered by AMS that does all of the hard work on the hall-array end for me. I can read quadrature output from this ('ABI' interface - 'I' being an Index Pulse)
+
+So, in summary, I am basically just building a big ring magnet, and trying to read that with the AS5304.
+
+## Problems 
+
+I am using an AS5304 (4mm poles) or an AS5406 (2.4mm poles). Each has 160 positions per magnetic period. This translates to a resolution of 25um and 15um steps, respectively. If I wrap this around some diameter D I have that 
+
+angular resolution = 360 / (((PI x D)/pole_length) x 160)
+
+Of course, I have to set the circumference equal to an integer value of magnets. I wrote a quick spreadsheet for this, and get that w/ a Diameter ~ 100mm (where the gearbox currently stands) I can get 0.017 deg/step with a 2.4mm pole pair, and ~ 0.03 deg/step with a 4mm pole spacing. Nice. 
+
+![rough spreadsheet](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/spreadsheet-resolution-approx.png)
+
+Now, this is not so straightforward. The important thing to remember is that **Resolution != Accuracy** - while I have ~ 0.03 deg / step, those steps are not exactly mapped perfectly in a circle. I will actually be referencing magnets that are glued in place - so my glueing and magnet placement would have to be *perfect<sup>4</sup>* for Resolution to = Accuracy. In addition, not all magnetic fields will be identical, etc.
+
+In addition to these mappings between poles, I will have some deviation, I'm sure, within the poles. As in, the magnets will likely have small gaps (finding a magnet which is perfectly 2mm across... not likely) and so I expect readings to deviate in a kind of sine-wave around *actual* position... one period of the wave corresponding to one period of the poles. 
+
+This can be overcome in implementation by mapping in memory a lookup table, with respect to some 'home' position, of how measured ticks of the encoder match up with reference positions. For example, I would rotate the encoder to known positions (with some other, higher precision system) and map readings -> known values.
+
+This is not ideal! And it requires a deal of labor, some good routines and memory-storage games, and a reference point.
+
+In this exercise (which I am trying to keep bounded)<sup>5</sup> I will try only to measure this deviation-from-perfection. Or, at least, deviation from some other, better positioning system. 
+
+At best, I hope to cancel periodic deviation (i.e. map the sine-wave between individual poles into a more linear interpolation. my encoders have an Index pulse (on every top-of-pole) that I can use as a reference point for this.  
+
+## Design
+
+Without further ado, here's a sketch of how I plan to build the encoder:
+
+![layout test](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/layout-encoder-test.jpg)
+
+And then, a system to put *that* encoder in set positions, while measuring... 
+
+* while pole pairs are 4.0mm apart, poles are 2mm long - magnets are 2mm across. 
+
+In some moment of foresight, I want to find an encoder with a bigger pole spacing - I think that 2mm is tooo small and seems likely to drive me to madness in assembly. Time to DigiKey it up! None are available, boo. The other option is to truly roll my own encoder, using Hall Effect Sensors with variable output, look at the sine waves, and do encoding from there. This is becoming a challenging project. 
+
+OK, nevermind. I'm going back to on-chip quadrature de-quadraturing (or, mag field -> quadrature).
+
+I made a home for the board
+
+![board-in-fusion-begin](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-in-fusion-begin.jpg)
+
+And started laying out a schematic. Had to build the footprint in Eagle.
+
+![board schematic](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-schematic.jpg)
+
+If you're wondering why I have SPI pins labelled, it's because I'm actually connecting this to a plug on my [Networking Switch](https://github.com/jakeread/tinynets/tree/master/circuit) - these are the pinouts. Instead of SPI I will just configure those pins to do GPIO.
+
+THIS is a big what-if for me. As in, what if I get my switch boards back from the fab and it turns out I can't get GPIO to work on these particular pins? I have trapped myself. !
+
+I also have voltage dividers set up here - the AS5304 drives 5v, and I don't want to pump that into my puny 3v3 logic lines on the ATSAMS70. 
+
+I also have a jumper / pin header footprint setup on the Analog Out pin - this will let me read the strength of the magnetic fields, making sure I am aligned, and that the field strength does not deviate too wildly between poles.
+
+Ideally, I would tie this voltage out to an ADC on the ATSAM, but I haven't broken any of those out on the BLDC encoder board... this is a long chain of interconnects. I am rethinking my overall switch -> peripheral strategies now. A good learning / systems design moment. OR I could tie it to some kind of comparator, and have an LED turn on only when that voltage was in a particular range. *shrugguy*. This is helping me design the modular switch, so that's good news.
+
+OK, Routed
+
+![board routed](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-routed.jpg)
+
+Exporting to mods from Eagle is a bit of a pain. In the fullness of time I would write a MOD to do GERBERS -> Milling, however.
+
+In Eagle, I do this
+
+Options -> Settings -> Misc -> don't display pad names or signals on traces
+
+Layers -> none
+Layers -> Top, Pads
+export image monochrome
+
+Layers -> none
+Layers -> Bottom, pads
+export image monochrome
+
+... ok
+
+Back to my layout, and working back into my sheet, I'm going to add magnets here:
+
+![cad magnet circle](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/cad-magnet-circle.jpg)
+
+And then to test this against some reference, I'm going to use a stepper motor. With the current diameter I'll have 0.05 deg resolution (or, I would ideally) - this means I would need 1/32 microstepping to match up on a stepper motor - I want my reference to have a bit more resolution than what I'm measuring, so I'll try to find a stepper motor with 400 steps / rev, and do 1/32 microstepping on that. Then I have 0.028 deg / step. I'll also bring the diameter down on my encoder to 58 poles, so I'll have 0.077 deg / step there. This means I have about 3x the resolution on my reference than I do on my measured-thing, and intuitively that feels like a good spec. Thumbs up.
+
+ALSO - I knew I should check this, and I'm glad I did - here's a #2 and a #0 screw - the #2 contacts the encoder ring. Noice.<sup>6</sup>
+
+![cad screw clearance](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/cad-screw-clearance.jpg)
+
+Final touches, I'm going to make a mount for a NEMA17 Motor on the back, and a little teeny desktop stand. 
+
+![cad stand](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/cad-stand.jpg)
+
+OK, check it oot
+
+![cad check](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/cad-check.jpg)
+
+## Fab: the board
+
+So I milled this board on the Roland SRM-20. I'm plugging this into my other ongoing work... here's [my brushless motor controller](https://gitlab.cba.mit.edu/jakeread/mkbldcdriver) that rides below my even-more-unresolved networking chip. Those ports you see on the left of the bldc-driver are for other GPIO, including this encoder.
+
+Ramble ramble, here it is:
+
+![board assembled](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-assembled.jpg)
+
+And you can see the AS5304 here
+
+![board as5304](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/board-as5304.jpg)
+
+Also, a moment of appreciation for the new *Leica* microscope that showed up at the CBA soldering station. Has variable zoom, and generally is very lovely. 
+
+![microscope appreciation](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/microscope-appreciation.jpg)
+
+## Fab: the kit
+
+I printed the hardware on the Eden. The Eden's washing-up station is currently broken, and I spent the better part of an afternoon trying to cobble together a fittings-and-adapters solution to unbreak it, to no avail. I await McMaster parts.
+
+Update: I borrow Biomechatronics' eden waterjet blaster. I have parts now. 
+
+First order is getting these magnets in. They're small!
+
+I accidentally put a few poles side-by-side (rather than alternating) - a bit of a bummer. But this is good enough for my test... Here's the ring
+
+![magnets-in-place](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/magnets-in-place.jpg)
+
+Ok I got this mostly together - made one mistake, where the motor floats a bit behind the mount. I kind of knew this might be an issue - also, generally, I am overconstrained w/ the motor bearings fighting my ring bearing. In hindsight I didn't even need this ring bearing, but it's something I also wanted to prototype for later development, so here we are. Belt and Suspenders.
+
+![motor-and-encoder](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/motor-and-encoder.jpg)
+
+## Testing
+
+Before I get into the meat of programming interrupts etc for this, I'm going to first get some voltage on this board alone and scope the lines to see that I am getting (1) the voltage I want out of the magnetic-field sensing pin, and (2) the ticks I want on the ABI lines.
+
+So, pretty upsetting. I am getting the bad magnetic field warning from the AS5304. The Index is High while A and B are low (the warning) and the output from the CAO (analog magnetic field indicator) is low, around 1.1 volts, meaning that I have a magnetic field that is way too strong.
+
+![datasheet-cao](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/datasheet-cao.jpg)
+
+And my scope trace:
+
+![scope-sad-cao](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/scope-sad-cao.jpg)
+
+And setup:
+
+![scope-to-check-cao](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/scope-to-check-cao.jpg)
+
+In some sense, I should have anticipated this, and in hindsight I really should have read the datasheet in more detail, where I'm sure it outlines the required magnetic field strength...
+
+Yep, there it is
+
+![datasheet-magfield](https://gitlab.cba.mit.edu/jakeread/mkencoder/raw/master/images/datasheet-magfield.jpg)
+
+So lesson learned - I really should have gotten into this beforehand, but it looks like I have *way* too much magnetic field - 13500 Gauss at the magnet pole and the AS5304 wants only to see 10 to 60 mT (milliTesla) - I have 1350 mT. Whoop! 
+
+## NEXT TIME
+
+I think the best way forward, with all things considered, is to go bones deep <i class="em em-swimmer"></i> and get two Hall Effect Sensors, read those, and do the signal processing. It's a much more interesting project this way, etc.
+
+I may make a last-ditch attempt at the easy route, with skinnier magnets and a bigger spacing between the encoder and the ring.
+
+All I want is more time.
+
+## Capacitive Encoders
+
+OK, on Neil's suggestion I am now thinking that I'll try for a Capacitive Encoder. Also, [here's](http://www.cui.com/product-spotlight/capacitive-absolute-encoders-amt20-series) an *advertisement* but good writeup on encoders, generally, concluding with a note on capacitive encoding.
+
+I like this a lot because it means I can use a machine to make the reference - no magnets and tweezers. It also scales really well, as I can have PCB's fabbed elsewhere. This actually might be the answer to my closed-loop cnc machines problem. So, certainly, I'm excited to try it out... and I'm going to push this *old* work into a sub-dir and start a new capacitive line.
+
+This is appealing
+
+## Programming, Measurements & Corrections
+
+I want to be like Sam. Sam measures *everything* and he does it really beautifully. This is some of the functionality I really want to be able to bring into mods - the ability to quickly pull test data out of systems, do computation with it, and learn.
+
+With that motivation, I want to take this chance to run a test cast of that. The Goal here:
+
+- First, do ATSAM Router -> MODS pipeline
+- Read Encoder with GPIO Interrupts or QED<sup>7</sup> and report periodically to MODS
+- Bones of step & dir control on the ATSAMS70
+- Stateless Stepper Motor Drive on MODS -> ATSAMS70 
+- Graphs & Charts & Realtime Data Capture in MODS
+- Push a line to the stepper, read encoder, watch linear != linear
+- Think long & hard about how to cancel observed differences?
+
+That's a lot! I'm not going to get into it this week, but maybe this is a good project for next week.
+
+# Footnotes
+1. In the sense I am familiar with - that is, machine design and motion control.
+2. ~ pun alert ~
+3. Also cool, footnoted to reduce rambling nature of this document, magnetic encoders use an array of hall sensors to sense and a changing magnetic field as a reference. Were I to go even finer grain with this, I would build my own array of hall sensors, but I am a mere mortal and that's the kind of project that belongs in Sam's domain, or until I significantly up my signal processing game.
+4. And remember, in the words of Morty: "everything is crooked, the world is a lie!"
+5. But I am also planning on actually using this encoder in my implementation of an arm, and later in linear applications, so having an idea of how to *really* pull this off is - I am hoping - something that will come to me. But I make no plans as such. Seems hard. 
+6. Ideally I would solder small threaded-things on to the back of the PCB, then I could mount it from the rear and really pinch the rest of it against the plate. Also this would allow me to adjust the encoder position with the ring already in place.
+7. Quadrature Encoder Decoder - a timer implementation available on the ATSAMS70 that is meant for this.
\ No newline at end of file
diff --git a/mkencoder-capacitive/eagle.epf b/mkencoder-capacitive/eagle.epf
new file mode 100644
index 0000000000000000000000000000000000000000..df301768dae5eda4358bf95429c95d13fbd4625f
--- /dev/null
+++ b/mkencoder-capacitive/eagle.epf
@@ -0,0 +1,362 @@
+[Eagle]
+Version="08 03 02"
+Platform="Windows"
+Globals="Globals"
+Desktop="Desktop"
+
+[Globals]
+AutoSaveProject=1
+UsedLibraryUrn="urn:adsk.eagle:library:79"
+UsedLibraryUrn="urn:adsk.eagle:library:88"
+UsedLibraryUrn="urn:adsk.eagle:library:178"
+UsedLibraryUrn="urn:adsk.eagle:library:179"
+UsedLibraryUrn="urn:adsk.eagle:library:180"
+UsedLibraryUrn="urn:adsk.eagle:library:181"
+UsedLibraryUrn="urn:adsk.eagle:library:182"
+UsedLibraryUrn="urn:adsk.eagle:library:183"
+UsedLibraryUrn="urn:adsk.eagle:library:184"
+UsedLibraryUrn="urn:adsk.eagle:library:185"
+UsedLibraryUrn="urn:adsk.eagle:library:186"
+UsedLibraryUrn="urn:adsk.eagle:library:187"
+UsedLibraryUrn="urn:adsk.eagle:library:89"
+UsedLibraryUrn="urn:adsk.eagle:library:188"
+UsedLibraryUrn="urn:adsk.eagle:library:189"
+UsedLibraryUrn="urn:adsk.eagle:library:190"
+UsedLibraryUrn="urn:adsk.eagle:library:191"
+UsedLibraryUrn="urn:adsk.eagle:library:192"
+UsedLibraryUrn="urn:adsk.eagle:library:193"
+UsedLibraryUrn="urn:adsk.eagle:library:194"
+UsedLibraryUrn="urn:adsk.eagle:library:195"
+UsedLibraryUrn="urn:adsk.eagle:library:196"
+UsedLibraryUrn="urn:adsk.eagle:library:197"
+UsedLibraryUrn="urn:adsk.eagle:library:90"
+UsedLibraryUrn="urn:adsk.eagle:library:198"
+UsedLibraryUrn="urn:adsk.eagle:library:199"
+UsedLibraryUrn="urn:adsk.eagle:library:200"
+UsedLibraryUrn="urn:adsk.eagle:library:201"
+UsedLibraryUrn="urn:adsk.eagle:library:202"
+UsedLibraryUrn="urn:adsk.eagle:library:203"
+UsedLibraryUrn="urn:adsk.eagle:library:204"
+UsedLibraryUrn="urn:adsk.eagle:library:205"
+UsedLibraryUrn="urn:adsk.eagle:library:206"
+UsedLibraryUrn="urn:adsk.eagle:library:207"
+UsedLibraryUrn="urn:adsk.eagle:library:91"
+UsedLibraryUrn="urn:adsk.eagle:library:208"
+UsedLibraryUrn="urn:adsk.eagle:library:209"
+UsedLibraryUrn="urn:adsk.eagle:library:210"
+UsedLibraryUrn="urn:adsk.eagle:library:211"
+UsedLibraryUrn="urn:adsk.eagle:library:212"
+UsedLibraryUrn="urn:adsk.eagle:library:213"
+UsedLibraryUrn="urn:adsk.eagle:library:214"
+UsedLibraryUrn="urn:adsk.eagle:library:215"
+UsedLibraryUrn="urn:adsk.eagle:library:216"
+UsedLibraryUrn="urn:adsk.eagle:library:217"
+UsedLibraryUrn="urn:adsk.eagle:library:92"
+UsedLibraryUrn="urn:adsk.eagle:library:218"
+UsedLibraryUrn="urn:adsk.eagle:library:219"
+UsedLibraryUrn="urn:adsk.eagle:library:220"
+UsedLibraryUrn="urn:adsk.eagle:library:221"
+UsedLibraryUrn="urn:adsk.eagle:library:222"
+UsedLibraryUrn="urn:adsk.eagle:library:223"
+UsedLibraryUrn="urn:adsk.eagle:library:224"
+UsedLibraryUrn="urn:adsk.eagle:library:225"
+UsedLibraryUrn="urn:adsk.eagle:library:226"
+UsedLibraryUrn="urn:adsk.eagle:library:227"
+UsedLibraryUrn="urn:adsk.eagle:library:93"
+UsedLibraryUrn="urn:adsk.eagle:library:228"
+UsedLibraryUrn="urn:adsk.eagle:library:229"
+UsedLibraryUrn="urn:adsk.eagle:library:230"
+UsedLibraryUrn="urn:adsk.eagle:library:231"
+UsedLibraryUrn="urn:adsk.eagle:library:232"
+UsedLibraryUrn="urn:adsk.eagle:library:233"
+UsedLibraryUrn="urn:adsk.eagle:library:234"
+UsedLibraryUrn="urn:adsk.eagle:library:235"
+UsedLibraryUrn="urn:adsk.eagle:library:236"
+UsedLibraryUrn="urn:adsk.eagle:library:237"
+UsedLibraryUrn="urn:adsk.eagle:library:94"
+UsedLibraryUrn="urn:adsk.eagle:library:238"
+UsedLibraryUrn="urn:adsk.eagle:library:239"
+UsedLibraryUrn="urn:adsk.eagle:library:240"
+UsedLibraryUrn="urn:adsk.eagle:library:241"
+UsedLibraryUrn="urn:adsk.eagle:library:242"
+UsedLibraryUrn="urn:adsk.eagle:library:243"
+UsedLibraryUrn="urn:adsk.eagle:library:244"
+UsedLibraryUrn="urn:adsk.eagle:library:245"
+UsedLibraryUrn="urn:adsk.eagle:library:246"
+UsedLibraryUrn="urn:adsk.eagle:library:247"
+UsedLibraryUrn="urn:adsk.eagle:library:95"
+UsedLibraryUrn="urn:adsk.eagle:library:248"
+UsedLibraryUrn="urn:adsk.eagle:library:249"
+UsedLibraryUrn="urn:adsk.eagle:library:250"
+UsedLibraryUrn="urn:adsk.eagle:library:251"
+UsedLibraryUrn="urn:adsk.eagle:library:252"
+UsedLibraryUrn="urn:adsk.eagle:library:253"
+UsedLibraryUrn="urn:adsk.eagle:library:254"
+UsedLibraryUrn="urn:adsk.eagle:library:255"
+UsedLibraryUrn="urn:adsk.eagle:library:256"
+UsedLibraryUrn="urn:adsk.eagle:library:257"
+UsedLibraryUrn="urn:adsk.eagle:library:96"
+UsedLibraryUrn="urn:adsk.eagle:library:258"
+UsedLibraryUrn="urn:adsk.eagle:library:259"
+UsedLibraryUrn="urn:adsk.eagle:library:260"
+UsedLibraryUrn="urn:adsk.eagle:library:261"
+UsedLibraryUrn="urn:adsk.eagle:library:262"
+UsedLibraryUrn="urn:adsk.eagle:library:263"
+UsedLibraryUrn="urn:adsk.eagle:library:264"
+UsedLibraryUrn="urn:adsk.eagle:library:265"
+UsedLibraryUrn="urn:adsk.eagle:library:266"
+UsedLibraryUrn="urn:adsk.eagle:library:267"
+UsedLibraryUrn="urn:adsk.eagle:library:97"
+UsedLibraryUrn="urn:adsk.eagle:library:268"
+UsedLibraryUrn="urn:adsk.eagle:library:269"
+UsedLibraryUrn="urn:adsk.eagle:library:270"
+UsedLibraryUrn="urn:adsk.eagle:library:271"
+UsedLibraryUrn="urn:adsk.eagle:library:272"
+UsedLibraryUrn="urn:adsk.eagle:library:273"
+UsedLibraryUrn="urn:adsk.eagle:library:274"
+UsedLibraryUrn="urn:adsk.eagle:library:275"
+UsedLibraryUrn="urn:adsk.eagle:library:276"
+UsedLibraryUrn="urn:adsk.eagle:library:277"
+UsedLibraryUrn="urn:adsk.eagle:library:80"
+UsedLibraryUrn="urn:adsk.eagle:library:98"
+UsedLibraryUrn="urn:adsk.eagle:library:278"
+UsedLibraryUrn="urn:adsk.eagle:library:279"
+UsedLibraryUrn="urn:adsk.eagle:library:280"
+UsedLibraryUrn="urn:adsk.eagle:library:281"
+UsedLibraryUrn="urn:adsk.eagle:library:282"
+UsedLibraryUrn="urn:adsk.eagle:library:283"
+UsedLibraryUrn="urn:adsk.eagle:library:284"
+UsedLibraryUrn="urn:adsk.eagle:library:285"
+UsedLibraryUrn="urn:adsk.eagle:library:286"
+UsedLibraryUrn="urn:adsk.eagle:library:287"
+UsedLibraryUrn="urn:adsk.eagle:library:99"
+UsedLibraryUrn="urn:adsk.eagle:library:288"
+UsedLibraryUrn="urn:adsk.eagle:library:289"
+UsedLibraryUrn="urn:adsk.eagle:library:290"
+UsedLibraryUrn="urn:adsk.eagle:library:291"
+UsedLibraryUrn="urn:adsk.eagle:library:292"
+UsedLibraryUrn="urn:adsk.eagle:library:293"
+UsedLibraryUrn="urn:adsk.eagle:library:294"
+UsedLibraryUrn="urn:adsk.eagle:library:295"
+UsedLibraryUrn="urn:adsk.eagle:library:296"
+UsedLibraryUrn="urn:adsk.eagle:library:297"
+UsedLibraryUrn="urn:adsk.eagle:library:100"
+UsedLibraryUrn="urn:adsk.eagle:library:298"
+UsedLibraryUrn="urn:adsk.eagle:library:299"
+UsedLibraryUrn="urn:adsk.eagle:library:300"
+UsedLibraryUrn="urn:adsk.eagle:library:301"
+UsedLibraryUrn="urn:adsk.eagle:library:302"
+UsedLibraryUrn="urn:adsk.eagle:library:303"
+UsedLibraryUrn="urn:adsk.eagle:library:304"
+UsedLibraryUrn="urn:adsk.eagle:library:305"
+UsedLibraryUrn="urn:adsk.eagle:library:306"
+UsedLibraryUrn="urn:adsk.eagle:library:307"
+UsedLibraryUrn="urn:adsk.eagle:library:101"
+UsedLibraryUrn="urn:adsk.eagle:library:308"
+UsedLibraryUrn="urn:adsk.eagle:library:309"
+UsedLibraryUrn="urn:adsk.eagle:library:310"
+UsedLibraryUrn="urn:adsk.eagle:library:311"
+UsedLibraryUrn="urn:adsk.eagle:library:312"
+UsedLibraryUrn="urn:adsk.eagle:library:313"
+UsedLibraryUrn="urn:adsk.eagle:library:314"
+UsedLibraryUrn="urn:adsk.eagle:library:315"
+UsedLibraryUrn="urn:adsk.eagle:library:316"
+UsedLibraryUrn="urn:adsk.eagle:library:317"
+UsedLibraryUrn="urn:adsk.eagle:library:102"
+UsedLibraryUrn="urn:adsk.eagle:library:318"
+UsedLibraryUrn="urn:adsk.eagle:library:319"
+UsedLibraryUrn="urn:adsk.eagle:library:320"
+UsedLibraryUrn="urn:adsk.eagle:library:321"
+UsedLibraryUrn="urn:adsk.eagle:library:322"
+UsedLibraryUrn="urn:adsk.eagle:library:323"
+UsedLibraryUrn="urn:adsk.eagle:library:324"
+UsedLibraryUrn="urn:adsk.eagle:library:325"
+UsedLibraryUrn="urn:adsk.eagle:library:326"
+UsedLibraryUrn="urn:adsk.eagle:library:327"
+UsedLibraryUrn="urn:adsk.eagle:library:103"
+UsedLibraryUrn="urn:adsk.eagle:library:328"
+UsedLibraryUrn="urn:adsk.eagle:library:329"
+UsedLibraryUrn="urn:adsk.eagle:library:330"
+UsedLibraryUrn="urn:adsk.eagle:library:331"
+UsedLibraryUrn="urn:adsk.eagle:library:332"
+UsedLibraryUrn="urn:adsk.eagle:library:333"
+UsedLibraryUrn="urn:adsk.eagle:library:334"
+UsedLibraryUrn="urn:adsk.eagle:library:335"
+UsedLibraryUrn="urn:adsk.eagle:library:336"
+UsedLibraryUrn="urn:adsk.eagle:library:337"
+UsedLibraryUrn="urn:adsk.eagle:library:104"
+UsedLibraryUrn="urn:adsk.eagle:library:338"
+UsedLibraryUrn="urn:adsk.eagle:library:339"
+UsedLibraryUrn="urn:adsk.eagle:library:340"
+UsedLibraryUrn="urn:adsk.eagle:library:341"
+UsedLibraryUrn="urn:adsk.eagle:library:342"
+UsedLibraryUrn="urn:adsk.eagle:library:343"
+UsedLibraryUrn="urn:adsk.eagle:library:344"
+UsedLibraryUrn="urn:adsk.eagle:library:345"
+UsedLibraryUrn="urn:adsk.eagle:library:346"
+UsedLibraryUrn="urn:adsk.eagle:library:347"
+UsedLibraryUrn="urn:adsk.eagle:library:105"
+UsedLibraryUrn="urn:adsk.eagle:library:348"
+UsedLibraryUrn="urn:adsk.eagle:library:349"
+UsedLibraryUrn="urn:adsk.eagle:library:350"
+UsedLibraryUrn="urn:adsk.eagle:library:351"
+UsedLibraryUrn="urn:adsk.eagle:library:352"
+UsedLibraryUrn="urn:adsk.eagle:library:353"
+UsedLibraryUrn="urn:adsk.eagle:library:354"
+UsedLibraryUrn="urn:adsk.eagle:library:355"
+UsedLibraryUrn="urn:adsk.eagle:library:356"
+UsedLibraryUrn="urn:adsk.eagle:library:357"
+UsedLibraryUrn="urn:adsk.eagle:library:106"
+UsedLibraryUrn="urn:adsk.eagle:library:358"
+UsedLibraryUrn="urn:adsk.eagle:library:359"
+UsedLibraryUrn="urn:adsk.eagle:library:360"
+UsedLibraryUrn="urn:adsk.eagle:library:361"
+UsedLibraryUrn="urn:adsk.eagle:library:362"
+UsedLibraryUrn="urn:adsk.eagle:library:363"
+UsedLibraryUrn="urn:adsk.eagle:library:364"
+UsedLibraryUrn="urn:adsk.eagle:library:365"
+UsedLibraryUrn="urn:adsk.eagle:library:366"
+UsedLibraryUrn="urn:adsk.eagle:library:367"
+UsedLibraryUrn="urn:adsk.eagle:library:107"
+UsedLibraryUrn="urn:adsk.eagle:library:368"
+UsedLibraryUrn="urn:adsk.eagle:library:369"
+UsedLibraryUrn="urn:adsk.eagle:library:370"
+UsedLibraryUrn="urn:adsk.eagle:library:371"
+UsedLibraryUrn="urn:adsk.eagle:library:372"
+UsedLibraryUrn="urn:adsk.eagle:library:373"
+UsedLibraryUrn="urn:adsk.eagle:library:374"
+UsedLibraryUrn="urn:adsk.eagle:library:375"
+UsedLibraryUrn="urn:adsk.eagle:library:376"
+UsedLibraryUrn="urn:adsk.eagle:library:377"
+UsedLibraryUrn="urn:adsk.eagle:library:81"
+UsedLibraryUrn="urn:adsk.eagle:library:108"
+UsedLibraryUrn="urn:adsk.eagle:library:378"
+UsedLibraryUrn="urn:adsk.eagle:library:379"
+UsedLibraryUrn="urn:adsk.eagle:library:380"
+UsedLibraryUrn="urn:adsk.eagle:library:381"
+UsedLibraryUrn="urn:adsk.eagle:library:382"
+UsedLibraryUrn="urn:adsk.eagle:library:383"
+UsedLibraryUrn="urn:adsk.eagle:library:384"
+UsedLibraryUrn="urn:adsk.eagle:library:385"
+UsedLibraryUrn="urn:adsk.eagle:library:386"
+UsedLibraryUrn="urn:adsk.eagle:library:387"
+UsedLibraryUrn="urn:adsk.eagle:library:109"
+UsedLibraryUrn="urn:adsk.eagle:library:388"
+UsedLibraryUrn="urn:adsk.eagle:library:389"
+UsedLibraryUrn="urn:adsk.eagle:library:390"
+UsedLibraryUrn="urn:adsk.eagle:library:391"
+UsedLibraryUrn="urn:adsk.eagle:library:392"
+UsedLibraryUrn="urn:adsk.eagle:library:393"
+UsedLibraryUrn="urn:adsk.eagle:library:394"
+UsedLibraryUrn="urn:adsk.eagle:library:395"
+UsedLibraryUrn="urn:adsk.eagle:library:396"
+UsedLibraryUrn="urn:adsk.eagle:library:397"
+UsedLibraryUrn="urn:adsk.eagle:library:110"
+UsedLibraryUrn="urn:adsk.eagle:library:398"
+UsedLibraryUrn="urn:adsk.eagle:library:399"
+UsedLibraryUrn="urn:adsk.eagle:library:400"
+UsedLibraryUrn="urn:adsk.eagle:library:401"
+UsedLibraryUrn="urn:adsk.eagle:library:402"
+UsedLibraryUrn="urn:adsk.eagle:library:403"
+UsedLibraryUrn="urn:adsk.eagle:library:404"
+UsedLibraryUrn="urn:adsk.eagle:library:405"
+UsedLibraryUrn="urn:adsk.eagle:library:406"
+UsedLibraryUrn="urn:adsk.eagle:library:407"
+UsedLibraryUrn="urn:adsk.eagle:library:111"
+UsedLibraryUrn="urn:adsk.eagle:library:408"
+UsedLibraryUrn="urn:adsk.eagle:library:409"
+UsedLibraryUrn="urn:adsk.eagle:library:410"
+UsedLibraryUrn="urn:adsk.eagle:library:411"
+UsedLibraryUrn="urn:adsk.eagle:library:412"
+UsedLibraryUrn="urn:adsk.eagle:library:413"
+UsedLibraryUrn="urn:adsk.eagle:library:414"
+UsedLibraryUrn="urn:adsk.eagle:library:415"
+UsedLibraryUrn="urn:adsk.eagle:library:416"
+UsedLibraryUrn="urn:adsk.eagle:library:417"
+UsedLibraryUrn="urn:adsk.eagle:library:112"
+UsedLibraryUrn="urn:adsk.eagle:library:418"
+UsedLibraryUrn="urn:adsk.eagle:library:419"
+UsedLibraryUrn="urn:adsk.eagle:library:113"
+UsedLibraryUrn="urn:adsk.eagle:library:114"
+UsedLibraryUrn="urn:adsk.eagle:library:115"
+UsedLibraryUrn="urn:adsk.eagle:library:116"
+UsedLibraryUrn="urn:adsk.eagle:library:117"
+UsedLibraryUrn="urn:adsk.eagle:library:82"
+UsedLibraryUrn="urn:adsk.eagle:library:118"
+UsedLibraryUrn="urn:adsk.eagle:library:119"
+UsedLibraryUrn="urn:adsk.eagle:library:120"
+UsedLibraryUrn="urn:adsk.eagle:library:121"
+UsedLibraryUrn="urn:adsk.eagle:library:122"
+UsedLibraryUrn="urn:adsk.eagle:library:123"
+UsedLibraryUrn="urn:adsk.eagle:library:124"
+UsedLibraryUrn="urn:adsk.eagle:library:125"
+UsedLibraryUrn="urn:adsk.eagle:library:126"
+UsedLibraryUrn="urn:adsk.eagle:library:127"
+UsedLibraryUrn="urn:adsk.eagle:library:83"
+UsedLibraryUrn="urn:adsk.eagle:library:128"
+UsedLibraryUrn="urn:adsk.eagle:library:129"
+UsedLibraryUrn="urn:adsk.eagle:library:130"
+UsedLibraryUrn="urn:adsk.eagle:library:131"
+UsedLibraryUrn="urn:adsk.eagle:library:132"
+UsedLibraryUrn="urn:adsk.eagle:library:133"
+UsedLibraryUrn="urn:adsk.eagle:library:134"
+UsedLibraryUrn="urn:adsk.eagle:library:135"
+UsedLibraryUrn="urn:adsk.eagle:library:136"
+UsedLibraryUrn="urn:adsk.eagle:library:137"
+UsedLibraryUrn="urn:adsk.eagle:library:84"
+UsedLibraryUrn="urn:adsk.eagle:library:138"
+UsedLibraryUrn="urn:adsk.eagle:library:139"
+UsedLibraryUrn="urn:adsk.eagle:library:140"
+UsedLibraryUrn="urn:adsk.eagle:library:141"
+UsedLibraryUrn="urn:adsk.eagle:library:142"
+UsedLibraryUrn="urn:adsk.eagle:library:143"
+UsedLibraryUrn="urn:adsk.eagle:library:144"
+UsedLibraryUrn="urn:adsk.eagle:library:145"
+UsedLibraryUrn="urn:adsk.eagle:library:146"
+UsedLibraryUrn="urn:adsk.eagle:library:147"
+UsedLibraryUrn="urn:adsk.eagle:library:85"
+UsedLibraryUrn="urn:adsk.eagle:library:148"
+UsedLibraryUrn="urn:adsk.eagle:library:149"
+UsedLibraryUrn="urn:adsk.eagle:library:150"
+UsedLibraryUrn="urn:adsk.eagle:library:151"
+UsedLibraryUrn="urn:adsk.eagle:library:152"
+UsedLibraryUrn="urn:adsk.eagle:library:153"
+UsedLibraryUrn="urn:adsk.eagle:library:154"
+UsedLibraryUrn="urn:adsk.eagle:library:155"
+UsedLibraryUrn="urn:adsk.eagle:library:156"
+UsedLibraryUrn="urn:adsk.eagle:library:157"
+UsedLibraryUrn="urn:adsk.eagle:library:86"
+UsedLibraryUrn="urn:adsk.eagle:library:158"
+UsedLibraryUrn="urn:adsk.eagle:library:159"
+UsedLibraryUrn="urn:adsk.eagle:library:160"
+UsedLibraryUrn="urn:adsk.eagle:library:161"
+UsedLibraryUrn="urn:adsk.eagle:library:162"
+UsedLibraryUrn="urn:adsk.eagle:library:163"
+UsedLibraryUrn="urn:adsk.eagle:library:164"
+UsedLibraryUrn="urn:adsk.eagle:library:165"
+UsedLibraryUrn="urn:adsk.eagle:library:166"
+UsedLibraryUrn="urn:adsk.eagle:library:167"
+UsedLibraryUrn="urn:adsk.eagle:library:87"
+UsedLibraryUrn="urn:adsk.eagle:library:168"
+UsedLibraryUrn="urn:adsk.eagle:library:169"
+UsedLibraryUrn="urn:adsk.eagle:library:170"
+UsedLibraryUrn="urn:adsk.eagle:library:171"
+UsedLibraryUrn="urn:adsk.eagle:library:172"
+UsedLibraryUrn="urn:adsk.eagle:library:173"
+UsedLibraryUrn="urn:adsk.eagle:library:174"
+UsedLibraryUrn="urn:adsk.eagle:library:175"
+UsedLibraryUrn="urn:adsk.eagle:library:176"
+UsedLibraryUrn="urn:adsk.eagle:library:177"
+UsedLibrary="D:/Dropbox (Personal)/CBA/doc/libraries_jake/eagle/transistor-power.lbr"
+UsedLibrary="D:/Dropbox (Personal)/CBA/doc/libraries/eagle/BC832.lbr"
+UsedLibrary="D:/Dropbox (Personal)/CBA/doc/libraries/eagle/fab.lbr"
+
+[Win_1]
+Type="Control Panel"
+Loc="0 0 3839 2065"
+State=1
+Number=0
+
+[Desktop]
+Screen="3840 2160"
+Window="Win_1"
diff --git a/mkencoder-capacitive/untitled.s## b/mkencoder-capacitive/untitled.s##
new file mode 100644
index 0000000000000000000000000000000000000000..751d582d48d3873a2b8ccc89d87ef727d7c444d4
--- /dev/null
+++ b/mkencoder-capacitive/untitled.s##
@@ -0,0 +1,588 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE eagle SYSTEM "eagle.dtd">
+<eagle version="8.3.2">
+<drawing>
+<settings>
+<setting alwaysvectorfont="no"/>
+<setting verticaltext="up"/>
+</settings>
+<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
+<layers>
+<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
+<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
+<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
+<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
+<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
+<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
+<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
+<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
+<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
+<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
+<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
+<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
+<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
+<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
+<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
+<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
+<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
+<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
+<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
+<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
+<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
+<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
+<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
+<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
+<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
+<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
+<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
+<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
+<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
+<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
+<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
+<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
+<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
+<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
+<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
+<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
+<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
+<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
+<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
+<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
+<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
+<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
+<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
+<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
+<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
+<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
+<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
+<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
+<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
+<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
+<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
+<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
+<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
+<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/>
+<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
+<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/>
+<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/>
+<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/>
+<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/>
+<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/>
+<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/>
+<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/>
+<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/>
+<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/>
+<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/>
+<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/>
+<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/>
+<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/>
+<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/>
+<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/>
+<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/>
+<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/>
+<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/>
+<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/>
+<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/>
+<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/>
+<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/>
+<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/>
+<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/>
+<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/>
+<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/>
+<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/>
+<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/>
+<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/>
+<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/>
+<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/>
+<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/>
+<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/>
+<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/>
+<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/>
+<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/>
+<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/>
+<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/>
+<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/>
+<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/>
+<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/>
+<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/>
+<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/>
+<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/>
+<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/>
+<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
+<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
+<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
+<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
+<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
+<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
+<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
+<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
+<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/>
+<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/>
+<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/>
+<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/>
+<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/>
+<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
+<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
+<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/>
+<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/>
+</layers>
+<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
+<libraries>
+<library name="fab">
+<packages>
+<package name="TQFP44-13THIN">
+<description>&lt;b&gt;Thin Quad Flat Pack&lt;/b&gt;&lt;p&gt;
+package type TQ</description>
+<wire x1="-4.8" y1="4.4" x2="-4.4" y2="4.8" width="0.2032" layer="21"/>
+<wire x1="-4.4" y1="4.8" x2="4.4" y2="4.8" width="0.2032" layer="21"/>
+<wire x1="4.4" y1="4.8" x2="4.8" y2="4.4" width="0.2032" layer="21"/>
+<wire x1="4.8" y1="4.4" x2="4.8" y2="-4.4" width="0.2032" layer="21"/>
+<wire x1="4.8" y1="-4.4" x2="4.4" y2="-4.8" width="0.2032" layer="21"/>
+<wire x1="4.4" y1="-4.8" x2="-4.4" y2="-4.8" width="0.2032" layer="21"/>
+<wire x1="-4.4" y1="-4.8" x2="-4.8" y2="-4.4" width="0.2032" layer="21"/>
+<wire x1="-4.8" y1="-4.4" x2="-4.8" y2="4.4" width="0.2032" layer="21"/>
+<circle x="-4" y="4" radius="0.2827" width="0.254" layer="21"/>
+<smd name="1" x="-5.8" y="4" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="2" x="-5.8" y="3.2" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="3" x="-5.8" y="2.4" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="4" x="-5.8" y="1.6" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="5" x="-5.8" y="0.8" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="6" x="-5.8" y="0" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="7" x="-5.8" y="-0.8" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="8" x="-5.8" y="-1.6" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="9" x="-5.8" y="-2.4" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="10" x="-5.8" y="-3.2" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="11" x="-5.8" y="-4" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="12" x="-4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="13" x="-3.2" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="14" x="-2.4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="15" x="-1.6" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="16" x="-0.8" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="17" x="0" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="18" x="0.8" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="19" x="1.6" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="20" x="2.4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="21" x="3.2" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="22" x="4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="23" x="5.8" y="-4" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="24" x="5.8" y="-3.2" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="25" x="5.8" y="-2.4" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="26" x="5.8" y="-1.6" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="27" x="5.8" y="-0.8" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="28" x="5.8" y="0" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="29" x="5.8" y="0.8" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="30" x="5.8" y="1.6" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="31" x="5.8" y="2.4" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="32" x="5.8" y="3.2" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="33" x="5.8" y="4" dx="1.524" dy="0.3302" layer="1"/>
+<smd name="34" x="4" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="35" x="3.2" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="36" x="2.4" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="37" x="1.6" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="38" x="0.8" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="39" x="0" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="40" x="-0.8" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="41" x="-1.6" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="42" x="-2.4" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="43" x="-3.2" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<smd name="44" x="-4" y="5.8" dx="0.3302" dy="1.524" layer="1"/>
+<text x="-4.064" y="6.858" size="1.016" layer="25">&gt;NAME</text>
+<text x="-4.064" y="-1.7701" size="1.778" layer="27">&gt;VALUE</text>
+<rectangle x1="-6.1001" y1="3.8001" x2="-4.95" y2="4.1999" layer="51"/>
+<rectangle x1="-6.1001" y1="3" x2="-4.95" y2="3.4" layer="51"/>
+<rectangle x1="-6.1001" y1="2.1999" x2="-4.95" y2="2.5999" layer="51"/>
+<rectangle x1="-6.1001" y1="1.4" x2="-4.95" y2="1.8001" layer="51"/>
+<rectangle x1="-6.1001" y1="0.5999" x2="-4.95" y2="1" layer="51"/>
+<rectangle x1="-6.1001" y1="-0.1999" x2="-4.95" y2="0.1999" layer="51"/>
+<rectangle x1="-6.1001" y1="-1" x2="-4.95" y2="-0.5999" layer="51"/>
+<rectangle x1="-6.1001" y1="-1.8001" x2="-4.95" y2="-1.4" layer="51"/>
+<rectangle x1="-6.1001" y1="-2.5999" x2="-4.95" y2="-2.1999" layer="51"/>
+<rectangle x1="-6.1001" y1="-3.4" x2="-4.95" y2="-3" layer="51"/>
+<rectangle x1="-6.1001" y1="-4.1999" x2="-4.95" y2="-3.8001" layer="51"/>
+<rectangle x1="-4.1999" y1="-6.1001" x2="-3.8001" y2="-4.95" layer="51"/>
+<rectangle x1="-3.4" y1="-6.1001" x2="-3" y2="-4.95" layer="51"/>
+<rectangle x1="-2.5999" y1="-6.1001" x2="-2.1999" y2="-4.95" layer="51"/>
+<rectangle x1="-1.8001" y1="-6.1001" x2="-1.4" y2="-4.95" layer="51"/>
+<rectangle x1="-1" y1="-6.1001" x2="-0.5999" y2="-4.95" layer="51"/>
+<rectangle x1="-0.1999" y1="-6.1001" x2="0.1999" y2="-4.95" layer="51"/>
+<rectangle x1="0.5999" y1="-6.1001" x2="1" y2="-4.95" layer="51"/>
+<rectangle x1="1.4" y1="-6.1001" x2="1.8001" y2="-4.95" layer="51"/>
+<rectangle x1="2.1999" y1="-6.1001" x2="2.5999" y2="-4.95" layer="51"/>
+<rectangle x1="3" y1="-6.1001" x2="3.4" y2="-4.95" layer="51"/>
+<rectangle x1="3.8001" y1="-6.1001" x2="4.1999" y2="-4.95" layer="51"/>
+<rectangle x1="4.95" y1="-4.1999" x2="6.1001" y2="-3.8001" layer="51"/>
+<rectangle x1="4.95" y1="-3.4" x2="6.1001" y2="-3" layer="51"/>
+<rectangle x1="4.95" y1="-2.5999" x2="6.1001" y2="-2.1999" layer="51"/>
+<rectangle x1="4.95" y1="-1.8001" x2="6.1001" y2="-1.4" layer="51"/>
+<rectangle x1="4.95" y1="-1" x2="6.1001" y2="-0.5999" layer="51"/>
+<rectangle x1="4.95" y1="-0.1999" x2="6.1001" y2="0.1999" layer="51"/>
+<rectangle x1="4.95" y1="0.5999" x2="6.1001" y2="1" layer="51"/>
+<rectangle x1="4.95" y1="1.4" x2="6.1001" y2="1.8001" layer="51"/>
+<rectangle x1="4.95" y1="2.1999" x2="6.1001" y2="2.5999" layer="51"/>
+<rectangle x1="4.95" y1="3" x2="6.1001" y2="3.4" layer="51"/>
+<rectangle x1="4.95" y1="3.8001" x2="6.1001" y2="4.1999" layer="51"/>
+<rectangle x1="3.8001" y1="4.95" x2="4.1999" y2="6.1001" layer="51"/>
+<rectangle x1="3" y1="4.95" x2="3.4" y2="6.1001" layer="51"/>
+<rectangle x1="2.1999" y1="4.95" x2="2.5999" y2="6.1001" layer="51"/>
+<rectangle x1="1.4" y1="4.95" x2="1.8001" y2="6.1001" layer="51"/>
+<rectangle x1="0.5999" y1="4.95" x2="1" y2="6.1001" layer="51"/>
+<rectangle x1="-0.1999" y1="4.95" x2="0.1999" y2="6.1001" layer="51"/>
+<rectangle x1="-1" y1="4.95" x2="-0.5999" y2="6.1001" layer="51"/>
+<rectangle x1="-1.8001" y1="4.95" x2="-1.4" y2="6.1001" layer="51"/>
+<rectangle x1="-2.5999" y1="4.95" x2="-2.1999" y2="6.1001" layer="51"/>
+<rectangle x1="-3.4" y1="4.95" x2="-3" y2="6.1001" layer="51"/>
+<rectangle x1="-4.1999" y1="4.95" x2="-3.8001" y2="6.1001" layer="51"/>
+</package>
+<package name="QFN-44-7X7">
+<description>&lt;b&gt;QFN-44&lt;/b&gt; (7x7x1.8mm)&lt;p&gt;
+Source: http://www.st.com/stonline/products/literature/ds/11020.pdf</description>
+<wire x1="-3.45" y1="3.45" x2="3.45" y2="3.45" width="0.1016" layer="51"/>
+<wire x1="3.45" y1="3.45" x2="3.45" y2="-3.45" width="0.1016" layer="51"/>
+<wire x1="3.45" y1="-3.45" x2="-3.45" y2="-3.45" width="0.1016" layer="51"/>
+<wire x1="-3.45" y1="-3.45" x2="-3.45" y2="3.45" width="0.1016" layer="51"/>
+<smd name="TH" x="0" y="0" dx="5.24" dy="5.24" layer="1" stop="no"/>
+<smd name="1" x="-3.325" y="2.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="2" x="-3.325" y="2" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="3" x="-3.325" y="1.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="4" x="-3.325" y="1" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="5" x="-3.325" y="0.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="6" x="-3.325" y="0" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="7" x="-3.325" y="-0.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="8" x="-3.325" y="-1" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="9" x="-3.325" y="-1.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="10" x="-3.325" y="-2" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="11" x="-3.325" y="-2.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/>
+<smd name="12" x="-2.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="13" x="-2" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="14" x="-1.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="15" x="-1" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="16" x="-0.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="17" x="0" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="18" x="0.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="19" x="1" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="20" x="1.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="21" x="2" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="22" x="2.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/>
+<smd name="23" x="3.325" y="-2.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="24" x="3.325" y="-2" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="25" x="3.325" y="-1.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="26" x="3.325" y="-1" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="27" x="3.325" y="-0.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="28" x="3.325" y="0" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="29" x="3.325" y="0.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="30" x="3.325" y="1" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="31" x="3.325" y="1.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="32" x="3.325" y="2" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="33" x="3.325" y="2.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/>
+<smd name="34" x="2.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="35" x="2" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="36" x="1.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="37" x="1" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="38" x="0.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="39" x="0" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="40" x="-0.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="41" x="-1" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="42" x="-1.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="43" x="-2" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<smd name="44" x="-2.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/>
+<text x="-3.2" y="4" size="1.27" layer="25">&gt;NAME</text>
+<text x="-3.2" y="-5.2" size="1.27" layer="27">&gt;VALUE</text>
+<rectangle x1="-3.275" y1="3.05" x2="-3.05" y2="3.275" layer="1"/>
+<rectangle x1="-3.775" y1="2.3" x2="-2.875" y2="2.7" layer="29"/>
+<rectangle x1="-3.7" y1="2.375" x2="-2.95" y2="2.625" layer="31"/>
+<rectangle x1="-3.775" y1="1.8" x2="-2.875" y2="2.2" layer="29"/>
+<rectangle x1="-3.7" y1="1.875" x2="-2.95" y2="2.125" layer="31"/>
+<rectangle x1="-3.775" y1="1.3" x2="-2.875" y2="1.7" layer="29"/>
+<rectangle x1="-3.7" y1="1.375" x2="-2.95" y2="1.625" layer="31"/>
+<rectangle x1="-3.775" y1="0.8" x2="-2.875" y2="1.2" layer="29"/>
+<rectangle x1="-3.7" y1="0.875" x2="-2.95" y2="1.125" layer="31"/>
+<rectangle x1="-3.775" y1="0.3" x2="-2.875" y2="0.7" layer="29"/>
+<rectangle x1="-3.7" y1="0.375" x2="-2.95" y2="0.625" layer="31"/>
+<rectangle x1="-3.775" y1="-0.2" x2="-2.875" y2="0.2" layer="29"/>
+<rectangle x1="-3.7" y1="-0.125" x2="-2.95" y2="0.125" layer="31"/>
+<rectangle x1="-3.775" y1="-0.7" x2="-2.875" y2="-0.3" layer="29"/>
+<rectangle x1="-3.7" y1="-0.625" x2="-2.95" y2="-0.375" layer="31"/>
+<rectangle x1="-3.775" y1="-1.2" x2="-2.875" y2="-0.8" layer="29"/>
+<rectangle x1="-3.7" y1="-1.125" x2="-2.95" y2="-0.875" layer="31"/>
+<rectangle x1="-3.775" y1="-1.7" x2="-2.875" y2="-1.3" layer="29"/>
+<rectangle x1="-3.7" y1="-1.625" x2="-2.95" y2="-1.375" layer="31"/>
+<rectangle x1="-3.775" y1="-2.2" x2="-2.875" y2="-1.8" layer="29"/>
+<rectangle x1="-3.7" y1="-2.125" x2="-2.95" y2="-1.875" layer="31"/>
+<rectangle x1="-3.775" y1="-2.7" x2="-2.875" y2="-2.3" layer="29"/>
+<rectangle x1="-3.7" y1="-2.625" x2="-2.95" y2="-2.375" layer="31"/>
+<rectangle x1="-2.95" y1="-3.525" x2="-2.05" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="-2.875" y1="-3.45" x2="-2.125" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="-2.45" y1="-3.525" x2="-1.55" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="-2.375" y1="-3.45" x2="-1.625" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="-1.95" y1="-3.525" x2="-1.05" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="-1.875" y1="-3.45" x2="-1.125" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="-1.45" y1="-3.525" x2="-0.55" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="-1.375" y1="-3.45" x2="-0.625" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="-0.95" y1="-3.525" x2="-0.05" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="-0.875" y1="-3.45" x2="-0.125" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="-0.45" y1="-3.525" x2="0.45" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="-0.375" y1="-3.45" x2="0.375" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="0.05" y1="-3.525" x2="0.95" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="0.125" y1="-3.45" x2="0.875" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="0.55" y1="-3.525" x2="1.45" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="0.625" y1="-3.45" x2="1.375" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="1.05" y1="-3.525" x2="1.95" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="1.125" y1="-3.45" x2="1.875" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="1.55" y1="-3.525" x2="2.45" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="1.625" y1="-3.45" x2="2.375" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="2.05" y1="-3.525" x2="2.95" y2="-3.125" layer="29" rot="R90"/>
+<rectangle x1="2.125" y1="-3.45" x2="2.875" y2="-3.2" layer="31" rot="R90"/>
+<rectangle x1="2.875" y1="-2.7" x2="3.775" y2="-2.3" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="-2.625" x2="3.7" y2="-2.375" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="-2.2" x2="3.775" y2="-1.8" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="-2.125" x2="3.7" y2="-1.875" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="-1.7" x2="3.775" y2="-1.3" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="-1.625" x2="3.7" y2="-1.375" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="-1.2" x2="3.775" y2="-0.8" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="-1.125" x2="3.7" y2="-0.875" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="-0.7" x2="3.775" y2="-0.3" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="-0.625" x2="3.7" y2="-0.375" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="-0.2" x2="3.775" y2="0.2" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="-0.125" x2="3.7" y2="0.125" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="0.3" x2="3.775" y2="0.7" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="0.375" x2="3.7" y2="0.625" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="0.8" x2="3.775" y2="1.2" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="0.875" x2="3.7" y2="1.125" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="1.3" x2="3.775" y2="1.7" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="1.375" x2="3.7" y2="1.625" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="1.8" x2="3.775" y2="2.2" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="1.875" x2="3.7" y2="2.125" layer="31" rot="R180"/>
+<rectangle x1="2.875" y1="2.3" x2="3.775" y2="2.7" layer="29" rot="R180"/>
+<rectangle x1="2.95" y1="2.375" x2="3.7" y2="2.625" layer="31" rot="R180"/>
+<rectangle x1="2.05" y1="3.125" x2="2.95" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="2.125" y1="3.2" x2="2.875" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="1.55" y1="3.125" x2="2.45" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="1.625" y1="3.2" x2="2.375" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="1.05" y1="3.125" x2="1.95" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="1.125" y1="3.2" x2="1.875" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="0.55" y1="3.125" x2="1.45" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="0.625" y1="3.2" x2="1.375" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="0.05" y1="3.125" x2="0.95" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="0.125" y1="3.2" x2="0.875" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="-0.45" y1="3.125" x2="0.45" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="-0.375" y1="3.2" x2="0.375" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="-0.95" y1="3.125" x2="-0.05" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="-0.875" y1="3.2" x2="-0.125" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="-1.45" y1="3.125" x2="-0.55" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="-1.375" y1="3.2" x2="-0.625" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="-1.95" y1="3.125" x2="-1.05" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="-1.875" y1="3.2" x2="-1.125" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="-2.45" y1="3.125" x2="-1.55" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="-2.375" y1="3.2" x2="-1.625" y2="3.45" layer="31" rot="R270"/>
+<rectangle x1="-2.95" y1="3.125" x2="-2.05" y2="3.525" layer="29" rot="R270"/>
+<rectangle x1="-2.875" y1="3.2" x2="-2.125" y2="3.45" layer="31" rot="R270"/>
+</package>
+</packages>
+<symbols>
+<symbol name="ATXMEGA_A4U">
+<wire x1="-20.32" y1="40.64" x2="22.86" y2="40.64" width="0.254" layer="94"/>
+<wire x1="22.86" y1="40.64" x2="22.86" y2="-40.64" width="0.254" layer="94"/>
+<wire x1="22.86" y1="-40.64" x2="-20.32" y2="-40.64" width="0.254" layer="94"/>
+<wire x1="-20.32" y1="-40.64" x2="-20.32" y2="40.64" width="0.254" layer="94"/>
+<text x="-20.32" y="-43.18" size="1.778" layer="96">&gt;VALUE</text>
+<text x="-20.32" y="41.91" size="1.778" layer="95">&gt;NAME</text>
+<pin name="PE0/SDA" x="-25.4" y="-38.1" length="middle"/>
+<pin name="PE1/XCK0/SCL" x="-25.4" y="-35.56" length="middle"/>
+<pin name="PE2/RXD0" x="-25.4" y="-33.02" length="middle"/>
+<pin name="PE3/TXD0" x="-25.4" y="-30.48" length="middle"/>
+<pin name="PD7/TXD1/SCK/DP" x="27.94" y="-20.32" length="middle" rot="R180"/>
+<pin name="PD6/RXD1/MISO/DM" x="27.94" y="-22.86" length="middle" rot="R180"/>
+<pin name="PD5/XCK1/MOSI" x="27.94" y="-25.4" length="middle" rot="R180"/>
+<pin name="PD4/CS" x="27.94" y="-27.94" length="middle" rot="R180"/>
+<pin name="PD3/TXD0" x="27.94" y="-30.48" length="middle" rot="R180"/>
+<pin name="PD2/RXD0" x="27.94" y="-33.02" length="middle" rot="R180"/>
+<pin name="PD1/XCK0" x="27.94" y="-35.56" length="middle" rot="R180"/>
+<pin name="PD0" x="27.94" y="-38.1" length="middle" rot="R180"/>
+<pin name="PC7/TXD1/SCK" x="27.94" y="2.54" length="middle" rot="R180"/>
+<pin name="PC6/RXD1/MISO" x="27.94" y="0" length="middle" rot="R180"/>
+<pin name="PC5/XCK1/MOSI" x="27.94" y="-2.54" length="middle" rot="R180"/>
+<pin name="PC4/CS" x="27.94" y="-5.08" length="middle" rot="R180"/>
+<pin name="PC3/TXD0" x="27.94" y="-7.62" length="middle" rot="R180"/>
+<pin name="PC2/RXD0" x="27.94" y="-10.16" length="middle" rot="R180"/>
+<pin name="PC1/SCL/XCK0" x="27.94" y="-12.7" length="middle" rot="R180"/>
+<pin name="PC0/SDA" x="27.94" y="-15.24" length="middle" rot="R180"/>
+<pin name="PB3" x="27.94" y="15.24" length="middle" rot="R180"/>
+<pin name="PB2" x="27.94" y="12.7" length="middle" rot="R180"/>
+<pin name="PB1" x="27.94" y="10.16" length="middle" rot="R180"/>
+<pin name="PB0" x="27.94" y="7.62" length="middle" rot="R180"/>
+<pin name="PA6" x="27.94" y="35.56" length="middle" rot="R180"/>
+<pin name="PA7" x="27.94" y="38.1" length="middle" rot="R180"/>
+<pin name="PA5" x="27.94" y="33.02" length="middle" rot="R180"/>
+<pin name="PA4" x="27.94" y="30.48" length="middle" rot="R180"/>
+<pin name="PA3" x="27.94" y="27.94" length="middle" rot="R180"/>
+<pin name="PA2" x="27.94" y="25.4" length="middle" rot="R180"/>
+<pin name="PA1" x="27.94" y="22.86" length="middle" rot="R180"/>
+<pin name="PA0" x="27.94" y="20.32" length="middle" rot="R180"/>
+<pin name="AVCC" x="-25.4" y="22.86" length="middle" direction="pwr"/>
+<pin name="GND3" x="-25.4" y="7.62" visible="pad" length="middle" direction="pwr"/>
+<pin name="VCC2" x="-25.4" y="17.78" visible="pad" length="middle" direction="pwr"/>
+<pin name="PR0(XT2)" x="-25.4" y="-25.4" length="middle"/>
+<pin name="PR1(XT1)" x="-25.4" y="-20.32" length="middle"/>
+<pin name="VCC1" x="-25.4" y="15.24" visible="pad" length="middle" direction="pwr"/>
+<pin name="VCC" x="-25.4" y="12.7" length="middle" direction="pwr"/>
+<pin name="GND1" x="-25.4" y="2.54" visible="pad" length="middle" direction="pwr"/>
+<pin name="GND" x="-25.4" y="0" length="middle" direction="pwr"/>
+<pin name="PDI_DATA" x="-25.4" y="33.02" length="middle"/>
+<pin name="GND2" x="-25.4" y="5.08" visible="pad" length="middle" direction="pwr"/>
+<pin name="!RESET!/PDI_CLK" x="-25.4" y="38.1" length="middle"/>
+</symbol>
+</symbols>
+<devicesets>
+<deviceset name="ATXMEGA_A4U">
+<gates>
+<gate name="G$1" symbol="ATXMEGA_A4U" x="0" y="0"/>
+</gates>
+<devices>
+<device name="TQFP-44-1-64" package="TQFP44-13THIN">
+<connects>
+<connect gate="G$1" pin="!RESET!/PDI_CLK" pad="35"/>
+<connect gate="G$1" pin="AVCC" pad="39"/>
+<connect gate="G$1" pin="GND" pad="8"/>
+<connect gate="G$1" pin="GND1" pad="18"/>
+<connect gate="G$1" pin="GND2" pad="30"/>
+<connect gate="G$1" pin="GND3" pad="38"/>
+<connect gate="G$1" pin="PA0" pad="40"/>
+<connect gate="G$1" pin="PA1" pad="41"/>
+<connect gate="G$1" pin="PA2" pad="42"/>
+<connect gate="G$1" pin="PA3" pad="43"/>
+<connect gate="G$1" pin="PA4" pad="44"/>
+<connect gate="G$1" pin="PA5" pad="1"/>
+<connect gate="G$1" pin="PA6" pad="2"/>
+<connect gate="G$1" pin="PA7" pad="3"/>
+<connect gate="G$1" pin="PB0" pad="4"/>
+<connect gate="G$1" pin="PB1" pad="5"/>
+<connect gate="G$1" pin="PB2" pad="6"/>
+<connect gate="G$1" pin="PB3" pad="7"/>
+<connect gate="G$1" pin="PC0/SDA" pad="10"/>
+<connect gate="G$1" pin="PC1/SCL/XCK0" pad="11"/>
+<connect gate="G$1" pin="PC2/RXD0" pad="12"/>
+<connect gate="G$1" pin="PC3/TXD0" pad="13"/>
+<connect gate="G$1" pin="PC4/CS" pad="14"/>
+<connect gate="G$1" pin="PC5/XCK1/MOSI" pad="15"/>
+<connect gate="G$1" pin="PC6/RXD1/MISO" pad="16"/>
+<connect gate="G$1" pin="PC7/TXD1/SCK" pad="17"/>
+<connect gate="G$1" pin="PD0" pad="20"/>
+<connect gate="G$1" pin="PD1/XCK0" pad="21"/>
+<connect gate="G$1" pin="PD2/RXD0" pad="22"/>
+<connect gate="G$1" pin="PD3/TXD0" pad="23"/>
+<connect gate="G$1" pin="PD4/CS" pad="24"/>
+<connect gate="G$1" pin="PD5/XCK1/MOSI" pad="25"/>
+<connect gate="G$1" pin="PD6/RXD1/MISO/DM" pad="26"/>
+<connect gate="G$1" pin="PD7/TXD1/SCK/DP" pad="27"/>
+<connect gate="G$1" pin="PDI_DATA" pad="34"/>
+<connect gate="G$1" pin="PE0/SDA" pad="28"/>
+<connect gate="G$1" pin="PE1/XCK0/SCL" pad="29"/>
+<connect gate="G$1" pin="PE2/RXD0" pad="32"/>
+<connect gate="G$1" pin="PE3/TXD0" pad="33"/>
+<connect gate="G$1" pin="PR0(XT2)" pad="36"/>
+<connect gate="G$1" pin="PR1(XT1)" pad="37"/>
+<connect gate="G$1" pin="VCC" pad="9"/>
+<connect gate="G$1" pin="VCC1" pad="19"/>
+<connect gate="G$1" pin="VCC2" pad="31"/>
+</connects>
+<technologies>
+<technology name=""/>
+</technologies>
+</device>
+<device name="VFQFN-44" package="QFN-44-7X7">
+<connects>
+<connect gate="G$1" pin="!RESET!/PDI_CLK" pad="35"/>
+<connect gate="G$1" pin="AVCC" pad="39"/>
+<connect gate="G$1" pin="GND" pad="8 TH"/>
+<connect gate="G$1" pin="GND1" pad="18"/>
+<connect gate="G$1" pin="GND2" pad="30"/>
+<connect gate="G$1" pin="GND3" pad="38"/>
+<connect gate="G$1" pin="PA0" pad="40"/>
+<connect gate="G$1" pin="PA1" pad="41"/>
+<connect gate="G$1" pin="PA2" pad="42"/>
+<connect gate="G$1" pin="PA3" pad="43"/>
+<connect gate="G$1" pin="PA4" pad="44"/>
+<connect gate="G$1" pin="PA5" pad="1"/>
+<connect gate="G$1" pin="PA6" pad="2"/>
+<connect gate="G$1" pin="PA7" pad="3"/>
+<connect gate="G$1" pin="PB0" pad="4"/>
+<connect gate="G$1" pin="PB1" pad="5"/>
+<connect gate="G$1" pin="PB2" pad="6"/>
+<connect gate="G$1" pin="PB3" pad="7"/>
+<connect gate="G$1" pin="PC0/SDA" pad="10"/>
+<connect gate="G$1" pin="PC1/SCL/XCK0" pad="11"/>
+<connect gate="G$1" pin="PC2/RXD0" pad="12"/>
+<connect gate="G$1" pin="PC3/TXD0" pad="13"/>
+<connect gate="G$1" pin="PC4/CS" pad="14"/>
+<connect gate="G$1" pin="PC5/XCK1/MOSI" pad="15"/>
+<connect gate="G$1" pin="PC6/RXD1/MISO" pad="16"/>
+<connect gate="G$1" pin="PC7/TXD1/SCK" pad="17"/>
+<connect gate="G$1" pin="PD0" pad="20"/>
+<connect gate="G$1" pin="PD1/XCK0" pad="21"/>
+<connect gate="G$1" pin="PD2/RXD0" pad="22"/>
+<connect gate="G$1" pin="PD3/TXD0" pad="23"/>
+<connect gate="G$1" pin="PD4/CS" pad="24"/>
+<connect gate="G$1" pin="PD5/XCK1/MOSI" pad="25"/>
+<connect gate="G$1" pin="PD6/RXD1/MISO/DM" pad="26"/>
+<connect gate="G$1" pin="PD7/TXD1/SCK/DP" pad="27"/>
+<connect gate="G$1" pin="PDI_DATA" pad="34"/>
+<connect gate="G$1" pin="PE0/SDA" pad="28"/>
+<connect gate="G$1" pin="PE1/XCK0/SCL" pad="29"/>
+<connect gate="G$1" pin="PE2/RXD0" pad="32"/>
+<connect gate="G$1" pin="PE3/TXD0" pad="33"/>
+<connect gate="G$1" pin="PR0(XT2)" pad="36"/>
+<connect gate="G$1" pin="PR1(XT1)" pad="37"/>
+<connect gate="G$1" pin="VCC" pad="9"/>
+<connect gate="G$1" pin="VCC1" pad="19"/>
+<connect gate="G$1" pin="VCC2" pad="31"/>
+</connects>
+<technologies>
+<technology name=""/>
+</technologies>
+</device>
+</devices>
+</deviceset>
+</devicesets>
+</library>
+</libraries>
+<attributes>
+</attributes>
+<variantdefs>
+</variantdefs>
+<classes>
+<class number="0" name="default" width="0" drill="0">
+</class>
+</classes>
+<parts>
+<part name="U$1" library="fab" deviceset="ATXMEGA_A4U" device="TQFP-44-1-64"/>
+</parts>
+<sheets>
+<sheet>
+<plain>
+</plain>
+<instances>
+<instance part="U$1" gate="G$1" x="43.18" y="45.72"/>
+</instances>
+<busses>
+</busses>
+<nets>
+</nets>
+</sheet>
+</sheets>
+</schematic>
+</drawing>
+</eagle>
diff --git a/mkencoder-circuit/eagle.epf b/mkencoder-circuit/eagle.epf
index 4be96bd7ba4fa43669864e1751973d2942f72151..c48c2a041229d8170dfae11c4fbea581df0e08ef 100644
--- a/mkencoder-circuit/eagle.epf
+++ b/mkencoder-circuit/eagle.epf
@@ -80,10 +80,10 @@ Layer=94
 [Win_2]
 Type="Board Editor"
 Loc="0 0 1919 1039"
-State=3
+State=1
 Number=2
 File="mkencoder.brd"
-View="-17.0419 -5.04086 36.6434 29.6693"
+View="0.213834 5.53153 26.1037 22.2706"
 WireWidths=" 0.0762 0.1016 0.127 0.15 0.2032 0.3048 0.508 0.6096 0.8128 1.016 1.27 2.54 0.1524 0.254 0.4064 0.2"
 PadDiameters=" 0.254 0.3048 0.4064 0.6096 0.8128 1.016 1.27 1.4224 1.6764 1.778 1.9304 2.1844 2.54 3.81 6.4516 0"
 PadDrills=" 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.55 0.65 0.7 0.75 0.8 0.85 0.9 1 0.6"
@@ -178,7 +178,7 @@ State=1
 Number=0
 
 [Desktop]
-Screen="3840 2160"
+Screen="1920 1080"
 Window="Win_1"
 Window="Win_2"
 Window="Win_3"