FM Stereo Radio Radio Frequency Tuner Module TEA5767 w/ Amplifier
-
RM14.00
- Product Code: FM Stereo Radio TEA5767
- Availability: In Stock
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.
Features
TEA576X
Recall that the chips of the family TEA576X differ only for the communication protocol (SPI or I2C). We have therefore conceived an abstract class, TEA576X
, which implements all the methods except the write
and read
functions that are delegated to the derived classes. Both the header and the implementation files are pretty long, you can download them below:
/** file TEA5767HN-test.ino * brief A quick example for testing the TEA5767HN chip. author Enrico Formenti. See macduino.blogspot.com for more details. */ #include "TEA5767HN.h" TEA5767HN tea; void setup() { Serial.begin(9600); tea.begin(TEA576X_XTAL_32768Hz, TEA5767HN_I2CBUS); if(!tea.search(SEARCH_DIR_FORWARD, SEARCH_LEV_MEDIUM)) { Serial.print("Couldn't find any station!"); } else { Serial.print("Playing station at "); Serial.print(tea.getFrequency()/1000000.0); Serial.print("MHz"); } } void loop() { // nothing to do at present... }
Implementing the classes
Choose the files you need for your sketches and save the files as ClassName.cpp