No. For Teensy 4.1, all you need is Wire2.begin(), because pins 24 & 25 are the default pins for Wire2.
After begin, you must use "Wire2", not "Wire", for all communication.
If using a library...
Type: Posts; User: PaulStoffregen
No. For Teensy 4.1, all you need is Wire2.begin(), because pins 24 & 25 are the default pins for Wire2.
After begin, you must use "Wire2", not "Wire", for all communication.
If using a library...
This page has the Teensy Wire library documentation.
https://www.pjrc.com/teensy/td_libs_Wire.html
Scroll down to "Pin Configuration"
Don't use pinMode() after Wire.begin(), as it will...