
Originally Posted by
PaulS
The first thing I see is that the Reset line is pulled high to +5V. I don't think the TI chip likes that because it's powered by 3V3.
Paul
Thanks for the suggestion,
First I made it work with the audio board and the scanner, I had to add these 2 lines at the top:
Code:
#include <Audio.h>
AudioOutputI2S audioOutput;
also I detect the audio board with this little test now:
Code:
#include <Wire.h>
#include <Audio.h>
AudioOutputI2S audioOutput;
void setup() {
Wire.begin();
Serial.begin(9600);
while (!Serial); // wait for serial monitor
Wire.beginTransmission(0x0A);
uint8_t error = Wire.endTransmission();
Serial.println("Error:");
Serial.println(error);
}
void loop() {
// put your main code here, to run repeatedly:
}
But, I just tested to connect my test PCB's "5v" to the 3.3v of the Teensy instead of the Teensy's 5v, and it doesn't make any difference, I still get a "4"...
Any other ideas?