Hi guys, just got setup with the teensy 4.1, my project involves using USB host. I have flash the below code and I a not getting any volatge betwwne 5v and GND, any help would me musch appricated as I'm at a loss.
Viewing the serial monitor I can see my code is flash as I am getting
testing
testing
testing
Viewing the serial monitor I can see my code is flash as I am getting
testing
testing
testing
Code:
#include "USBHost_t36.h"
USBHost myusb;
void setup () {
myusb.begin ();
}
void loop () {
delay (5000);
Serial.println ("testing");
}