Arduino FM Transmitter

The project “Arduino FM Transmitter” is a radio station with transmits either voice or music nearby area, within the range of 50 meters range.

The transmitted FM signal is received by any FM receiver. Previously, we had posted an Arduino-based FM Receiver with the facility of automating or manual tuning. The project uses very few components i.e Arduino uno board (MCU) and an FM transmitter V2.0 module. This project has various applications like it can be implemented in college hospitals etc. where announcements have to do.

The block diagram of the Arduino FM transmitter is shown in figure 1 and the circuit diagram is shown in figure 2.

block diagram of arduino fm transmitter

The main part of this project is the FM transmitter V2.0 module which is easily available in electronics stores. FM transmitter V2.0 contains a microphone as well as a headphone jack. The microphone change the sound signal to an electrical signal which is to be modulated. As the module also consists of a headphone jack so one can directly connect a mobile or computer or mp3 with the help of a 3.5mm male to male audio connector. FM transmitter V2.0 module uses I2C interface technology to communicate with Arduino. It contains four pins +5V, GND, SDA (serial data I2C pin), and SCK (Serial cock I2C pin).

arduino fm transmitter

Software: – The software is written in Arduino programming and burned the program in Arduino uno using Arduino IDE. Download the library from here. The complete Arduino code is shown below.

/** check for data setting new frequency. Users could input data from the Serial monitor. Data must start with ‘&’ and follow by 4 numbers, such as &8000. The first two are the integer part of the new frequency (Unit: MHz), and the last one is the decimal part. And the channel must be between 70MHz and 108Mhz. For example, &756 is 75.6MHz, and &666 is out of range. */

PARTS LIST OF ARDUINO FM TRANSMITTER

Arduino uno board

FM transmitter V2.0 module

One Thought to “Arduino FM Transmitter”

  1. Raja Rajeswari

    Arduino: 1.6.13 (Windows 10), Board: “Arduino/Genuino Uno”

    C:UsersNEWAppDataLocalTempccVKSAjH.ltrans0.ltrans.o: In function main':

    ccVKSAjH.ltrans0.o:(.text.startup+0x110): undefined reference to fmtx_init(float, country_type)’

    ccVKSAjH.ltrans0.o:(.text.startup+0x26e): undefined reference to `fmtx_set_freq(float)’

    collect2.exe: error: ld returned 1 exit status

    exit status 1
    Error compiling for board Arduino/Genuino Uno.

    This report would have more information with
    “Show verbose output during compilation”
    option enabled in File -> Preferences.

    Sir, These are the error messages I’m getting when I tried to compile the program which is in this page along with the library. Can you please let me know why I’m getting this and How can I solve it?

Leave a Comment