diff --git a/Documentation/ProMicro16MHzv1.pdf b/Documentation/ProMicro16MHzv2.pdf
similarity index 92%
rename from Documentation/ProMicro16MHzv1.pdf
rename to Documentation/ProMicro16MHzv2.pdf
index c5fa066..bab4180 100644
Binary files a/Documentation/ProMicro16MHzv1.pdf and b/Documentation/ProMicro16MHzv2.pdf differ
diff --git a/Documentation/ProMicro16MHzv1.svg b/Documentation/ProMicro16MHzv2.svg
similarity index 99%
rename from Documentation/ProMicro16MHzv1.svg
rename to Documentation/ProMicro16MHzv2.svg
index 965ee8f..953f40d 100644
--- a/Documentation/ProMicro16MHzv1.svg
+++ b/Documentation/ProMicro16MHzv2.svg
@@ -15,7 +15,7 @@
viewBox="0 0 990 765"
id="svg2"
version="1.1"
- inkscape:version="0.92.0 r15299"
+ inkscape:version="0.92.1 r15371"
sodipodi:docname="ProMicro16MHzv1.svg">
@@ -28,13 +28,13 @@
inkscape:pageshadow="2"
inkscape:zoom="2.3281506"
inkscape:cx="721.13042"
- inkscape:cy="448.54551"
+ inkscape:cy="345.4594"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
units="in"
inkscape:window-width="1920"
- inkscape:window-height="1058"
+ inkscape:window-height="996"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
@@ -46,7 +46,7 @@
image/svg+xml
-
+
@@ -99,14 +99,16 @@
y="505.96002"
id="rect290" />
D24
+ id="tspan4488"
+ x="564.5"
+ y="517.96002">D30
@@ -34,7 +34,7 @@
showgrid="false"
units="in"
inkscape:window-width="1920"
- inkscape:window-height="1058"
+ inkscape:window-height="996"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
@@ -46,7 +46,7 @@
image/svg+xml
-
+
@@ -99,14 +99,16 @@
y="505.96002"
id="rect290" />
D24
+ id="tspan4488"
+ x="564.5"
+ y="517.96002">D30
+int horzPin = A0; // Analog output of horizontal joystick pin
+int vertPin = A1; // Analog output of vertical joystick pin
+int selPin = 9; // select button pin of joystick
+
+int vertZero, horzZero; // Stores the initial value of each axis, usually around 512
+int vertValue, horzValue; // Stores current analog output of each axis
+const int sensitivity = 200; // Higher sensitivity value = slower mouse, should be <= about 500
+int mouseClickFlag = 0;
+
+void setup()
+{
+ pinMode(horzPin, INPUT); // Set both analog pins as inputs
+ pinMode(vertPin, INPUT);
+ pinMode(selPin, INPUT); // set button select pin as input
+ digitalWrite(selPin, HIGH); // Pull button select pin high
+ delay(1000); // short delay to let outputs settle
+ vertZero = analogRead(vertPin); // get the initial values
+ horzZero = analogRead(horzPin); // Joystick should be in neutral position when reading these
+
+}
+
+void loop()
+{
+ vertValue = analogRead(vertPin) - vertZero; // read vertical offset
+ horzValue = analogRead(horzPin) - horzZero; // read horizontal offset
+
+ if (vertValue != 0)
+ Mouse.move(0, vertValue/sensitivity, 0); // move mouse on y axis
+ if (horzValue != 0)
+ Mouse.move(horzValue/sensitivity, 0, 0); // move mouse on x axis
+
+ if ((digitalRead(selPin) == 0) && (!mouseClickFlag)) // if the joystick button is pressed
+ {
+ mouseClickFlag = 1;
+ Mouse.press(MOUSE_LEFT); // click the left button down
+ }
+ else if ((digitalRead(selPin))&&(mouseClickFlag)) // if the joystick button is not pressed
+ {
+ mouseClickFlag = 0;
+ Mouse.release(MOUSE_LEFT); // release the left button
+ }
+}
diff --git a/Firmware/SimpleKeyboard_HID/SimpleKeyboard_HID.ino b/Firmware/SimpleKeyboard_HID/SimpleKeyboard_HID.ino
new file mode 100644
index 0000000..f8120be
--- /dev/null
+++ b/Firmware/SimpleKeyboard_HID/SimpleKeyboard_HID.ino
@@ -0,0 +1,28 @@
+/* HID KeyBoard Example
+ by: Jim Lindblom
+ date: 1/12/2012
+ license: MIT License - Feel free to use this code for any purpose.
+ No restrictions. Just keep this license if you go on to use this
+ code in your future endeavors! Reuse and share.
+
+ This is very simplistic code that allows you to send a 'z' with
+ a momentary pushbutton.
+ */
+
+#include
+int buttonPin = 9; // Set a button to any pin
+
+void setup()
+{
+ pinMode(buttonPin, INPUT); // Set the button as an input
+ digitalWrite(buttonPin, HIGH); // Pull the button high
+}
+
+void loop()
+{
+ if (digitalRead(buttonPin) == 0) // if the button goes low
+ {
+ Keyboard.write('z'); // send a 'z' to the computer via Keyboard HID
+ delay(1000); // delay so there aren't a kajillion z's
+ }
+}
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..e64bd4e
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,55 @@
+SparkFun License Information
+============================
+
+SparkFun uses two different licenses for our files — one for hardware and one for code.
+
+Hardware
+---------
+
+**SparkFun hardware is released under [Creative Commons Share-alike 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/).**
+
+Note: This is a human-readable summary of (and not a substitute for) the [license](http://creativecommons.org/licenses/by-sa/4.0/legalcode).
+
+You are free to:
+
+Share — copy and redistribute the material in any medium or format
+Adapt — remix, transform, and build upon the material
+for any purpose, even commercially.
+The licensor cannot revoke these freedoms as long as you follow the license terms.
+Under the following terms:
+
+Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
+ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
+No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
+Notices:
+
+You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation.
+No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.
+
+
+Code
+--------
+
+**SparkFun code, firmware, and software is released under the MIT License(http://opensource.org/licenses/MIT).**
+
+The MIT License (MIT)
+
+Copyright (c) 2016 SparkFun Electronics
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index 95287b3..834a1c6 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,16 @@
Pro Micro
=========
-
-
-[*Pro Micro 5V (DEV-12640)*](https://www.sparkfun.com/products/12640)
-
+
The Pro Micro is a micro controller with an ATMega32U4 IC on board.
The USB transceiver is inside the 32U4, adding USB connectivity on-board without external USB interfaces.
@@ -14,9 +20,15 @@ This comes in both a 3.3V and 5V version.
Repository Contents
-------------------
* **/Documentation** - Data sheets (.pdf and .svg)
+* **/Firmware** - Arduino example code used in the hookup guide
* **/Hardware** - All Eagle design files (.brd, .sch, .STL)
* **/Production** - Test bed files and production panel files
+Documentation
+--------------
+* **[Hookup Guide](https://learn.sparkfun.com/tutorials/pro-micro--fio-v3-hookup-guide)** - Basic hookup guide for the Pro Micro.
+* **[SparkFun Arduino Board Addon](https://github.com/sparkfun/Arduino_Boards/)** - Arduino board addon for Pro Micro.
+* **[SparkFun Graphical Datasheets](https://github.com/sparkfun/Graphical_Datasheets)** - Graphical datasheets for various SparkFun products.
Product Versions
----------------
@@ -25,7 +37,14 @@ Product Versions
License Information
-------------------
-The hardware is released under [Creative Commons ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/).
-The code is beerware; if you see me (or any other SparkFun employee) at the local, and you've found our code helpful, please buy us a round!
+This product is _**open source**_!
+
+Please review the LICENSE.md file for license information.
+
+If you have any questions or concerns on licensing, please contact techsupport@sparkfun.com.
Distributed as-is; no warranty is given.
+
+- Your friends at SparkFun.
+
+__