trying to send rf 433 mhz codes
i want to be able to type them in console and send them via arduino
can some one help
mgodinez1:
can some one help
Not without a lot more information from you.
What wireless hardware are you using? - post links to the datasheets for the wireless modules
What, exactly, do you want to send?
...R
well thank you thats a start im uning mx-rm-5v
so i can use the rc switch along with these and i can see the codes
i would like to send them via the transmitter to control rf device of my choice ... i would like to transmit to the arduino via pc from rs232
this is what im getting on the serial print
Decimal: 16776964 (24Bit) Binary: 111111111111111100000100 Tri-State: 1111111100F0 PulseLength: 398 microseconds Protocol: 1
Raw data: 12404,1160,476,1160,480,1156,480,1160,476,1160,480,1160,476,1160,476,1164,480,1160,476,1160,480,1156,480,1156,484,1152,484,1156,480,1160,480,1156,480,400,1240,396,1240,396,1244,396,1240,392,1244,1156,480,392,1240,396,1244,
For informed help, please read and follow the directions in the "How to use this forum" post.
mgodinez1:
well thank you thats a start im uning mx-rm-5v
I don't know what that means. I asked you to post a link to the datasheet.
I also asked you what you want to send, but you have not told us.
this is what im getting on the serial print
Your Original Post gave us no idea that you already have been trying a program. Post the program!
...R
are u asking me for the data sheets of the receiver transmitter i wan to use?
im using the rc switch example to receive
this file is in the rc switch library its called receive_demo_advanced
/*
Example for receiving
If you want to visualize a telegram copy the raw data and
paste it into rc-switch raw data viewer
*/
#include <RCSwitch.h>
RCSwitch mySwitch = RCSwitch();
void setup() {
Serial.begin(9600);
mySwitch.enableReceive(0); // Receiver on interrupt 0 => that is pin #2
}
void loop() {
if (mySwitch.available()) {
output(mySwitch.getReceivedValue(), mySwitch.getReceivedBitlength(), mySwitch.getReceivedDelay(), mySwitch.getReceivedRawdata(),mySwitch.getReceivedProtocol());
mySwitch.resetAvailable();
}
}
I see that you still have not read "How to use this forum".