TEA5767 Stereo FM Radio Module with Detachable Antenna

  • 📻 TEA5767 stereo FM radio receiver module
  • 📡 Detachable antenna for improved reception
  • 🚌 I2C control interface—easy tuning via microcontroller
  • 🎧 Stereo audio output for clear sound
  • 📶 Covers standard FM broadcast band (module dependent)
  • 🧩 Ideal for DIY radios, audio projects, and smart receivers
  • ⚡ Low power operation for portable builds
  • ✅ Works well with Arduino, ESP32, STM32 projects

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

650,00 EGP

8 People watching this product now!

Payment Methods:

Description

TEA5767 Stereo FM Radio Module with Detachable Antenna is made using TEA5767, a single-chip electronically tuned stereo FM radio for low voltage applications. It has fully integrated Intermediate Frequency (IF) selectivity and FM demodulator.

The radio is completely adjustment-free and is very easy to use as it requires only minimum external components. This module can be tuned to many FM bands and it can be easily interfaced with Arduino Boards, Raspberry Pi, and Microcontrollers via the I2C interface.

The Module has reverse polarity protection diode and power output filtering sensor. It can be Directly plugged to the antenna interface. Additionally, it has a Multi capacitor combined filter and Blue LED power indicator for On-Off status.


Features:

  1. With reverse polarity protection diode.
  2. With a power output filtering sensor.
  3. Directly plug antenna interface.
  4. I2C bus communication.
  5. Multi-capacitor combined filter.
  6. Blue LED power indicator.
  7. FM chip module TEA5767.
  8. Onboard 3.5mm audio interface.
  9. If connects with single-chip, only connect the Power Ground and two I2C communication cable.
  10. LC harmonic oscillator uses a low cost fixed chip.
  11. No need to adjust Intermediate frequency.
  12. High sensitivity(low noise RF input amplifier).
  13. High power auto gains control AGC circuit.
  14. Soft Mute.3.5mm jack for external Antenna.

Package Includes:

1 x TEA5767 Stereo FM Radio Module with Detachable Antenna

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
TEA5767VCC/GND/SDA/SCL3.3-5V / GND / board SDA / board SCL
📟
TEA5767 Stereo FM Radio Module with Detachable Antenna
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
TEA5767 Stereo FM Radio Module with Detachable Antenna - Arduino Uno
TEA5767 Stereo FM Radio Module with Detachable Antenna - Arduino Nano
TEA5767 Stereo FM Radio Module with Detachable Antenna - Arduino Mega
TEA5767 Stereo FM Radio Module with Detachable Antenna - ESP32
TEA5767 Stereo FM Radio Module with Detachable Antenna - ESP8266
TEA5767 Stereo FM Radio Module with Detachable Antenna - STM32
TEA5767 Stereo FM Radio Module with Detachable Antenna - Raspberry Pi Pico
📄 File: tea5767_stereo_fm_radio_module_with_detachable_antenna_-_arduino_uno.inoArduino Uno
362 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for Arduino Uno: A4=SDA, A5=SCL
6#include <Wire.h>
7#include <TEA5767.h>
8
9TEA5767 radio;
10
11void setup() {
12 Wire.begin();
13 radio.setBandFrequency(RADIO_BAND_FM, 9550); // 95.50 MHz - set to your station
14 radio.setStereoNoiseCancelling(true);
15 radio.setStandby(false);
16}
17
18void loop() {
19}
📄 File: tea5767_stereo_fm_radio_module_with_detachable_antenna_-_arduino_nano.inoArduino Nano
363 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for Arduino Nano: A4=SDA, A5=SCL
6#include <Wire.h>
7#include <TEA5767.h>
8
9TEA5767 radio;
10
11void setup() {
12 Wire.begin();
13 radio.setBandFrequency(RADIO_BAND_FM, 9550); // 95.50 MHz - set to your station
14 radio.setStereoNoiseCancelling(true);
15 radio.setStandby(false);
16}
17
18void loop() {
19}
📄 File: tea5767_stereo_fm_radio_module_with_detachable_antenna_-_arduino_mega.inoArduino Mega
365 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for Arduino Mega: D20=SDA, D21=SCL
6#include <Wire.h>
7#include <TEA5767.h>
8
9TEA5767 radio;
10
11void setup() {
12 Wire.begin();
13 radio.setBandFrequency(RADIO_BAND_FM, 9550); // 95.50 MHz - set to your station
14 radio.setStereoNoiseCancelling(true);
15 radio.setStandby(false);
16}
17
18void loop() {
19}
📄 File: tea5767_stereo_fm_radio_module_with_detachable_antenna_-_esp32.inoESP32
364 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for ESP32: GPIO21=SDA, GPIO22=SCL
6#include <Wire.h>
7#include <TEA5767.h>
8
9TEA5767 radio;
10
11void setup() {
12 Wire.begin();
13 radio.setBandFrequency(RADIO_BAND_FM, 9550); // 95.50 MHz - set to your station
14 radio.setStereoNoiseCancelling(true);
15 radio.setStandby(false);
16}
17
18void loop() {
19}
📄 File: tea5767_stereo_fm_radio_module_with_detachable_antenna_-_esp8266.inoESP8266
358 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for ESP8266: D2=SDA, D1=SCL
6#include <Wire.h>
7#include <TEA5767.h>
8
9TEA5767 radio;
10
11void setup() {
12 Wire.begin();
13 radio.setBandFrequency(RADIO_BAND_FM, 9550); // 95.50 MHz - set to your station
14 radio.setStereoNoiseCancelling(true);
15 radio.setStandby(false);
16}
17
18void loop() {
19}
📄 File: tea5767_stereo_fm_radio_module_with_detachable_antenna_-_stm32.inoSTM32
358 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for STM32: PB7=SDA, PB6=SCL
6#include <Wire.h>
7#include <TEA5767.h>
8
9TEA5767 radio;
10
11void setup() {
12 Wire.begin();
13 radio.setBandFrequency(RADIO_BAND_FM, 9550); // 95.50 MHz - set to your station
14 radio.setStereoNoiseCancelling(true);
15 radio.setStandby(false);
16}
17
18void loop() {
19}
📄 File: tea5767_stereo_fm_radio_module_with_detachable_antenna_-_raspberry_pi_pico.inoRaspberry Pi Pico
374 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for Raspberry Pi Pico: GPIO4=SDA, GPIO5=SCL
6#include <Wire.h>
7#include <TEA5767.h>
8
9TEA5767 radio;
10
11void setup() {
12 Wire.begin();
13 radio.setBandFrequency(RADIO_BAND_FM, 9550); // 95.50 MHz - set to your station
14 radio.setStereoNoiseCancelling(true);
15 radio.setStandby(false);
16}
17
18void loop() {
19}
I2C FM radio tuner IC.

نظرة عامة ومواصفات المنتج — بالعربية

TEA5767 Stereo FM Radio Module with Detachable Antenna متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Audio Amplifier وElectronic Modules، بسعر 650,00 EGP. كود المنتج لدينا: EK541. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Product Name: TEA5767 Stereo FM Radio Module (with Detachable Antenna)
  • Category: Module → Radio / RF Module
  • Ic: TEA5767
  • Band: FM (Stereo)
  • Frequency Range: 76–108 MHz (region-dependent)
  • واجهة الاتصال: I2C
  • Supply Voltage: 3.0–5.0 V (module dependent)
  • Audio Output: Analog L/R (Stereo)

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Audio Amplifier في إكوسترا.

Specification

Specification

WeightWeight8 g
Dimensions4 × 3 × 1,5 cm
Product NameTEA5767 Stereo FM Radio Module (with Detachable Antenna)
CategoryModule → Radio / RF Module
ICTEA5767
BandFM (Stereo)
Frequency Range76–108 MHz (region-dependent)
InterfaceI2C
Supply Voltage3.0–5.0 V (module dependent)
Audio OutputAnalog L/R (Stereo)
AntennaDetachable Antenna (included)
TuningDigital PLL Tuning
ApplicationsArduino/ESP radio projects, DIY FM receiver, audio systems

Customer Reviews