Hi there folks,
I'm new on this forum so if this topic is posted on the wrong subforum, feel free to move it.
So I have a question regarding the Smart Alpha RF module (see link for datasheet).
For a school project I have to communicate between 2 arduino using this module. The problem is that there no library available for this module. I also can't find any examples on how to configure and use this module on Arduino.
If anyone had some experiences with this module or anyone knows how to configure and use it via Arduino please let me know.
SgtGrizzly:
For a school project I have to communicate between 2 arduino using this module. The problem is that there no library available for this module. I also can't find any examples on how to configure and use this module on Arduino.
Its possible the module was chosen, specifically because there is no Library, and that you need to read the datasheet and work out how to use it ?
srnet:
Its possible the module was chosen, specifically because there is no Library, and that you need to read the datasheet and work out how to use it ?
I don't think this is the case, since everyone had to choose a different RF module from a selection of modules.
Also the teacher was a bit suprised we could find so little on the internet.
We have also tried using the datasheet to configure it via Arduino but I think we are doing something wrong.
Robin2:
I have not come across this device before but it seems that all the info you need is in the PDF that you posted the link for.
Have you contacted the supplier to see if they have example programs?
...R
Looks like your best bet is to get TWO of the evaluation boards. The chip manufacturer has a test/evaluation program for PCs. I would start there so you can get familiar with the operation of the device, then begin the Arduino program development. Do you have weeks or years for the project?
Paul_KD7HB:
Looks like your best bet is to get TWO of the evaluation boards.
My guess is that the default settings for the modules would mean that you just need to use Serial.print() and Serial.read() to get a pair of them working. (Or the SoftwareSerial equivalent).
Robin2:
My guess is that the default settings for the modules would mean that you just need to use Serial.print() and Serial.read() to get a pair of them working. (Or the SoftwareSerial equivalent).
We did it!
After a lot of trial and error we got the modules working.
Our arduino files are attached to this reply.
Sender is Uno, receiver is Mega2560.
Thanks for all the suggestions.