Modulo MX RM 5V
Modulo MX RM 5V
Search…
SearchAdvanced search
SearchAdvanced search
11 posts
1
2
Next
admin
Site Admin
Posts: 726
Joined: Sun Aug 05, 2012 4:02 pm
Quote
Model: MX-05V
Working voltage: 5V DC quiescent current: 4mA
Receiver Frequency: 433.92MHZ
Receiver sensitivity:-105DB
Size: 30 * 14 * 7mm
PINOUTS:
NOTES:
APPLICATIONS:
MX-FS-03V Schematic:
MX-05V Schematic:
Arduino VirtualWire library: http://www.pjrc.com/teensy/arduino_libr ...
alWire.zip
Tx MODULE CONNECTIONS:
void setup()
{
pinMode(13, OUTPUT);
/* Initialises the DIO pin used to send data to the Tx module */
vw_set_tx_pin(TX_DIO_Pin);
/* Set the transmit logic level (LOW = transmit for this
version of module)*/
vw_set_ptt_inverted(true);
/* Main program */
void loop()
{
/* Temporarily holds the value read from analogue input A0 */
unsigned int Data;
/* The transmit buffer that will hold the data to be
transmitted. */
byte TxBuffer[2];
Rx MODULE CONNECTIONS:
You may copy, alter and reuse this code in any way you like, but
please leave
reference to HobbyComponents.com in your comments if you redistribute
this code.
/* Digital IO pin that will be used for receiving data from the
receiver */
const int RX_DIO_Pin = 2;
void setup()
{
pinMode(13, OUTPUT);
Serial.begin(9600);
/* Initialises the DIO pin used to receive data from the Rx module
*/
vw_set_rx_pin(RX_DIO_Pin);
/* Main program */
void loop()
{
/* Set the receive buffer size to 2 bytes */
uint8_t Buffer_Size = 2;
https://www.pjrc.com/teensy/td_libs_VirtualWire.html
FAQ
Yes, all modules operate on the same channel so any receiver will receive
data from any transmitter in range.
What is the fastest data rate I can send using these modules?
You can seen a maximum of 4000 (4Kb/s) bits per second. See comment
below.
First of all the Tx output pin of the receiver is normally low which means
that your start bit will have to be a logic high to be detected by your
application. This means a standard serial interface may not work without
modification.
Secondly the module has a limited data rate of 4000 bits per second. The
main limiting factor is that there is a fixed delay on the rising edge of the Tx
pin. This delay get more significant as the data rate is increased which
causes the logic '1's' to get narrower. Beyond 4Kb/s the logic 1's start to
become too narrow and may cause them to be seen as 0's by the receiving
hardware. The reciver's Tx pin will also take approximately 55ms to return
low again after receiving data.
You do not have the required permissions to view the files attached to this post.
Top
snapper
Posts: 3
Joined: Sat Aug 03, 2013 6:05 pm
Quote
http://www.holtek.com/pdf/consumer/2_12ev120.pdf
http://www.holtek.com/pdf/consumer/2_12dv120.pdf
You do not have the required permissions to view the files attached to this post.
Top
snapper
Posts: 3
Joined: Sat Aug 03, 2013 6:05 pm
Quote
http://www.holtek.com/pdf/consumer/2_12ev120.pdf
http://www.holtek.com/pdf/consumer/2_12dv120.pdf
regards
Top
andrew
Site Admin
Posts: 809
Joined: Sun Aug 05, 2012 4:15 pm
Quote
Posts: 3
Joined: Sat Aug 03, 2013 6:05 pm
Quote
Quote
Posts: 3
Joined: Sat Aug 03, 2013 6:05 pm
Quote
pls send PM
Top
andrew
Site Admin
Posts: 809
Joined: Sun Aug 05, 2012 4:15 pm
Quote
Post by andrew » Sat Aug 17, 2013 1:51 pm
Just to let you know that we now have the PT2262 & PT2272 modules (non-
latching version) on order and we will be stocking them soon.
Comments made by this poster do not necessarily reflect the views of Hobby
Components Ltd.
Top
lardconcepts
Posts: 7
Joined: Thu Sep 05, 2013 8:33 pm
Quote
I've managed to find the pinouts elsewhere but just thought I'd let you
know
Top
andrew
Site Admin
Posts: 809
Joined: Sun Aug 05, 2012 4:15 pm
Quote
Posts: 14
Joined: Sun Jan 05, 2014 12:40 pm
MX-RM-5V
a simple RF Transmitter-receiver module , Which is used in Remote
control for cars , or to control simple tasks , like control relay on/off.
Parts Required
2 x Arduino UNO or compatible boards Breadboard Wires RF Module
(433 Mhz) - Transmitter and Receiver pair or the 315 Mhz version
GND
VCC(3-5V I think) but I used 5V.
2 DATA pins.
The transmitter has 3 pinouts :
GND
VCC
DATA
A picture is provided.
TX:
http://www.instructables.com/id/433-MHz-Coil-loaded-antenna/
The results with this antenna are very good. The distance (with
the cheap receiver as well as the transmitter) that can be
covered easily goes to 25 m with line of sight, but also in-house
the distance will be increased reaching other rooms with
concrete walls in between, were earlier 3 meters with line of
sight would be pushing the limits already.
I am not the only one with this experience. Many people confirm
to me that it dramatically increased the range of the cheap
Tx/Rx pair, read the comments!
They work in pairs, meaning you need both a receiver and a transmitter to comunicate with each
The receiver has 4 pins, but we actually use 3 of them: GND (Ground), VCC (5V) and one DATA pin.
Technical Details:
TX (Transmitter) Technical Specifications:
Working voltage: 3V~12V
Similar Modules:
There are lot of similar modules, but most of them either have a different wiring, or operate in a different f
Example of Use:
Materials:
2 Arduini
1 Receiver
1 Transmitter
6 Jumper Wires
Wiring Instructions:
On the Receiver wire the pin labeled "ATAD" to pin 2, "GND" to GND, and "VCC" to 5V on the Ardui
On the Transmitter wire one of the pins labeled "DATA" (it doesn't matter wich one, ax long as you use only one of the "DATA
pin 10, "GND" to GND, and "VCC" to 5V on the second Arduino.
Sketch Instructions:
This code depends on the RC-Switch library, wich can be downloaded here: RC Switch Library Downlo
After copying and uploading this code your Transmitter module should be sending wireless signals. After copying and upload
code your Receiver module should be receiving the wireless signals your Transmitter is sending. If you want to modify the sign
change the line:
Transmitter Code
#include <RCSwitch.h>
void setup() {
mySwitch.enableTransmit(10); // Using Pin #10
}
void loop() {
mySwitch.send("10000100011000000000010100");
delay(1000);
}
Receiver Code
/*
Simple example for receiving
http://code.google.com/p/rc-switch/
#include <RCSwitch.h>
void setup() {
Serial.begin(9600);
mySwitch.enableReceive(0); // Receiver on inerrupt 0 => that is pin #2
}
void loop() {
if (mySwitch.available()) {
if (value == 0) {
Serial.print("Unknown encoding");
} else {
Serial.print("Received ");
Serial.print( mySwitch.getReceivedValue() );
Serial.print(" / ");
Serial.print( mySwitch.getReceivedBitlength() );
Serial.print("bit ");
Serial.print("Protocol: ");
Serial.println( mySwitch.getReceivedProtocol() );
}
mySwitch.resetAvailable();
}
}
Open the serial monitor, with the Receiver board connected to the computer, and you should s
signals
Please feel free to leave any comments or questions you may have about this module.