The TEA5767 is a single-chip electronically tuned FM stereo radio designed for low-voltage applications. Manufactured by Phillips, this component integrates IF selectivity and demodulation, making it a compact and efficient solution for FM radio reception. It is widely used in portable audio devices, mobile phones, and other consumer electronics where space and power efficiency are critical.
Parameter | Value |
---|---|
Supply Voltage | 2.5V to 5.5V |
Operating Current | 12 mA (typical) |
Frequency Range | 76 MHz to 108 MHz |
Sensitivity | 2.0 µV (typical) |
Signal-to-Noise Ratio | 60 dB (typical) |
Stereo Separation | 30 dB (typical) |
Audio Output Voltage | 75 mV (typical) |
Package | SOP16 |
Pin No. | Pin Name | Description |
---|---|---|
1 | VCC | Power supply |
2 | GND | Ground |
3 | SDA | I2C data line |
4 | SCL | I2C clock line |
5 | MPXOUT | Multiplexed audio output |
6 | LOUT | Left audio output |
7 | ROUT | Right audio output |
8 | VREF | Reference voltage |
9 | VCO | Voltage-controlled oscillator |
10 | XTAL | Crystal oscillator input |
11 | NC | Not connected |
12 | NC | Not connected |
13 | NC | Not connected |
14 | NC | Not connected |
15 | NC | Not connected |
16 | NC | Not connected |
#include <Wire.h>
#define TEA5767_I2C_ADDRESS 0x60
void setup() {
Wire.begin(); // Initialize I2C communication
Serial.begin(9600); // Initialize serial communication
setFrequency(101.1); // Set frequency to 101.1 MHz
}
void loop() {
// Main loop does nothing
}
void setFrequency(float frequency) {
uint16_t frequencyB = (4 * (frequency * 1000000 + 225000)) / 32768;
byte frequencyH = frequencyB >> 8;
byte frequencyL = frequencyB & 0xFF;
Wire.beginTransmission(TEA5767_I2C_ADDRESS);
Wire.write(frequencyH); // Send high byte of frequency
Wire.write(frequencyL); // Send low byte of frequency
Wire.write(0xB0); // Set to stereo, mute off
Wire.write(0x10); // Set to high side LO injection
Wire.write(0x00); // No software mute, no search mode
Wire.write(0x00); // No software mute, no search mode
Wire.endTransmission();
}
By following this documentation, users should be able to effectively integrate and utilize the TEA5767 FM stereo radio module in their projects.