change folder names, remove duplicate DigiJoystick folder

This commit is contained in:
Erik Tylek Kettenburg
2014-12-23 12:32:26 -08:00
parent 1fd5034261
commit d5fa60a1ec
142 changed files with 0 additions and 8686 deletions

View File

@@ -0,0 +1,16 @@
#include <DigiCDC.h>
void setup() {
// initialize the digital pin as an output.
SerialUSB.begin();
SerialUSB.println("CDC Test");
}
// the loop routine runs over and over again forever:
void loop() {
if (SerialUSB.available()) {
SerialUSB.write(SerialUSB.read());
}
SerialUSB.delay(10); // keep usb alive // can alos use SerialUSB.refresh();
}