RDA5807M Simple code

Hi All,

This is my second project with arduino radio module.
First one failed
So I purchased RDA5807M chip this time.
It looks like this

Now I need a simple code, to make sure radio module is working properly.

I found out this code for TEA5767 code
I changed it slightly.
Is this code written correctly?

#include <Wire.h>
#include <RDA5807M.h>

RDA5807M radio = RDA5807M();

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

void loop()
{
}

Many Thanks

Do you have a link to the library used?

Did it come with examples?

Do you have pull up resistors (10K) on the I2C bus?

Is this code written correctly?

Does it compile?
If not, what messages are there?

If it compiles, does it work?