Hi All,
I'm new to arduino. I've soldered some wires to tea5767 chip.
I connected wires to arduino and 3.5mm jack as per the guide.
For the code I've used below code.
I can compile it without any issue.
Upon uploading the code to board I didn't hear any sound coming through earphones.
I've used I2C scanner and it identifies device is connected.
Please assist me to solve this issue.Many thanks
// TEA5767 Example
#include <Wire.h>
#include <TEA5767Radio.h>
TEA5767Radio radio = TEA5767Radio();
void setup()
{
Wire.begin();
radio.setFrequency(95.8); // pick your own frequency
}
void loop()
{
}
I'm new to arduino. I've soldered some wires to tea5767 chip.
I connected wires to arduino and 3.5mm jack as per the guide.
For the code I've used below code.
I can compile it without any issue.
Upon uploading the code to board I didn't hear any sound coming through earphones.
I've used I2C scanner and it identifies device is connected.
Please assist me to solve this issue.Many thanks
// TEA5767 Example
#include <Wire.h>
#include <TEA5767Radio.h>
TEA5767Radio radio = TEA5767Radio();
void setup()
{
Wire.begin();
radio.setFrequency(95.8); // pick your own frequency
}
void loop()
{
}
Last edited: