Skip to content

Instantly share code, notes, and snippets.

@FDSoftware
Created April 15, 2019 01:50
Show Gist options
  • Save FDSoftware/7e07845c6caa5535bf7c02fe06c76a1d to your computer and use it in GitHub Desktop.
Save FDSoftware/7e07845c6caa5535bf7c02fe06c76a1d to your computer and use it in GitHub Desktop.
Test USB para el stm32
#include <USBComposite.h>
USBCompositeSerial CompositeSerial;
void setup()
{
CompositeSerial.registerComponent();
USBComposite.begin();
delay(2000);
}
void loop()
{
CompositeSerial.println("Hello World!");
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment