aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp.example
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp.example')
-rw-r--r--main.cpp.example5
1 files changed, 0 insertions, 5 deletions
diff --git a/main.cpp.example b/main.cpp.example
index ae63996..67380ae 100644
--- a/main.cpp.example
+++ b/main.cpp.example
@@ -29,14 +29,11 @@
#include "wirish.h"
#include "HardwareSerial.h"
-#include "HardwareUsb.h"
#include "usb.h"
#define LED_PIN 13
#define PWM_PIN 2
-HardwareUsb Usb;
-
void setup()
{
/* Set up the LED to blink */
@@ -50,8 +47,6 @@ void setup()
pinMode(PWM_PIN, PWM);
pwmWrite(PWM_PIN, 0x8000);
- /* Send a message out the USB virtual com port */
- Usb.println("Hello world!");
}
int toggle = 0;