mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-04-27 23:29:01 -07:00
16 lines
400 B
Arduino
16 lines
400 B
Arduino
![]() |
#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();
|
||
|
}
|