Currently working on a project where I'll be using RF to communicate between arduinos. One reciever and two transmitters. Possibly one tx, we will see how it goes. My issue is pretty standard - cant get the RF tx and rx to work. I'm currently trying to get them to turn on an LED before implementing them into my project. Its not going too well. Initially,nothing would work. I've been spending more time than I'd of liked on this section but sure isn't that the joys of arduino :o !
Right now, I have the rx turning on an LED but its very quickly and very dim, not like the tx LED. Also, the on-board 'rx' pin lights up with it.
tx - uno board - bright LED for roughly a second.
rx - mega board 2650 - dim LED for roughly half a second.
Both operating from the 5v pin out. RX is plugged into the computer, TX is plugged into a 9v PS.
Using virtual wire library. I've tried radiohead but my laptop wont recognise it.
The first "digitalWrite(led, LOW);" in your receiver "loop code" is going to turn off the LED almost immediately after it has been turned on. I think you want to move that line to the "setup code".