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