Home Audio Projects TEA5767 radio example

TEA5767 radio example

by shedboy71

The TEA5767HN is a single-chip electronically tuned FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation. The radio is completely adjustment-free and only requires a minimum of small and low cost external components. The radio can be tuned to the European, US, and Japanese FM bands

This handy module includes the ability to connect speakers or headphone, an antenna connection and most usefully it has an onboard audio amplifier which removes the need for connecting one of these to the TEA5767. The module simply requires power and uses the I2C connection to your Arduino.

Here are some of the key features of the module

Power Supply: 5V
Frequency range :76-108MHZ
You can plug the antenna port directly
I2C bus communication
Board uses the TDA1308 as audio amplifier
Onboard 3.5MM audio interface ,it can be directly connected to the headphone amplifier and so on.

Here is a picture of the module

TEA5767

TEA5767

 

Code

This is a simple code example, which I have set to a local radio station for testing. it requires the TEA 5767 library. There are other libraries available

https://github.com/simonmonk/arduino_TEA5767

[codesyntax lang=”cpp”]

// TEA5767 Example

#include <Wire.h>
#include <TEA5767Radio.h>

TEA5767Radio radio = TEA5767Radio();

void setup()
{ 
  Wire.begin();
  radio.setFrequency(102.8); // pick your own frequency
}

void loop()
{
}

[/codesyntax]

 

Links

Here is the datasheet – www.voti.nl/docs/TEA5767.pdf

TEA5767 FM Stereo Radio Module for Arduino 76-108MHZ With Free Cable Antenna

You may also like

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More