Teensy 4.1 - no voltage on usb host

Anton2k

New member
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

Code:
#include "USBHost_t36.h"

USBHost myusb;

void setup () {
  myusb.begin ();
}

void loop () {
  delay (5000);
  Serial.println ("testing");
}


teensy.png
 
Figured it out after cracking out my big thick glasses, I stupidly seen that I had the tinest bit of solder bridging the component circled in read, gently removed it and boom! voltage!

teensy2.png
 
Back
Top