Radioduino - Arduino clone with 2.4G wireless transceiver
Designed by Heye in GermanyNo shipping info available.
Set destination country to see options
Shipping to starts at
Free shipping is available to !
Ships from
This item does not ship to .
More Info
Sign up to get notified when this product is back in stock!
Overview The Radioduino is an Arduino clone. It features an ATMega328P and a RFM73 transceiver, which allows multiple devices to communicate with each other. The ATMega328P has a preloaded Arduino-b…
Read More…The Radioduino is an Arduino clone. It features an ATMega328P and a RFM73 transceiver, which allows multiple devices to communicate with each other. The ATMega328P has a preloaded Arduino-bootloader, so this board can easily be programmed with the Arduino-IDE.
The USB-Port can be used to supply power to the Arduino, it is NOT for programming. The ATMega328P has a preloaded Arduino-bootloader, so all you need is a USB-Serial adapter.
There is a simple library for the RFM73 radio module, you can find it here: https://github.com/heye/rfm73
This is an example on how to send simple data. The text "hello!" is transmitted every 100ms.
void setup(){
//initialize the RFM73 module
RFM.Begin();
}
void loop(){
//send some text with length 6, the max length is 32 bytes!
RFM.send((byte*)"hello!", 6);
delay(100);
}
The following example waits for transmissions and prints the result on a serial connection.
void setup(){
//start the serial connection
Serial.begin(19200);
//initialize the RFM73 module
RFM.Begin();
//register the callback function
RFM.onReceive(receiveEvent);
}
void loop(){
//the tick function checks for any received data and calls the receiveEvent
RFM.tick();
delay(10);
}
void receiveEvent(void){
//print received data
Serial.println((char*)RFM.getRcvBuffer());
}
The Atmega328 runs at 3.3V
The pins MISO, MOSI, SCK, D2, D8 and D10 are used for communication with the radio module and should not be used in your own sketches. These pins are underlined on the silkscreen.
These boards can be used wherever you need some wirelessly connected Arduinos.
No country selected, please select your country to see shipping options.
No rates are available for shipping to .
Enter your email address if you'd like to be notified when Radioduino: Arduino clone w/ 2.4G wireless transceiver can be shipped to you:
Thanks! We'll let you know when the seller adds shipping rates for your country.
Shipping Rate | Tracked | Ships From | First Item | Additional Items |
---|---|---|---|---|
:
|
Quantity | Price |
---|---|
1-4 | $24.00 |
5+ | $21.00 |
No shipping info available.
Set destination country to see options
Shipping to starts at
Free shipping is available to !
Ships from
This item does not ship to .
More Info
Sign up to get notified when this product is back in stock!
By clicking Register, you confirm that you accept our Terms & Conditions
We recognize our top users by making them a Tindarian. Tindarians have access to secret & unreleased features.
We look for the most active & best members of the Tindie community, and invite them to join. There isn't a selection process or form to fill out. The only way to become a Tindarian is by being a nice & active member of the Tindie community!