I am interface Arduino with nRf905 in receive mode use 433 MHZ.
I Have follow this link http://www.electrodragon.com/w/NRF905_Transceiver_433MHz-Wireless_Module.
And for transmitter, I am use RF-Transmitter-Door-Window-Sensor which works on 433MHZ.
Now, Arduino receive garbage data I have attached snapshot of received data.
I am quarry about to set address and 433MHZ.
My config_buffer is:
unsigned char config_info_buf[10]={
0x4C,
0x01, //output power 10db, resend disable, Current
0x44, //4-byte address
0x20,0x20, //receive or send data length 32 bytes
0x21,0x11,0x11,0x00,
0x18,
};
Question is there are 0x4C set exactly 433MHZ.
Any help will be appreciated.
Regards, rajneesh
Question is there are 0x4C set exactly 433MHZ.
doesn't make a lot of sense. You should try to be more specific in what you are asking. However a couple of pointers for troubleshooting: 1) Is the TX side set to transfer ASCII/Text data ? 2) Are you sure the baud rate is the same on the RX arduino and the PC you using the serial monitor on ?