Hi, I bought on dealextreme a module VMR6512! This module has the uart interface! Some one can help me to configuration this module using serial comunication library ?
Is need know that this module is 3,3V, so I think that is need put a resistor to have this voltage?!
This is manual : v-module.com
The manual say that have 3 words: Command - parameter 1 -parameter 2, How I will send a command to this module?
If the device is connected to TX and RX, use Serial.write(cmd);, where cmd is a byte type variable, or Serial.write(cmd, BYTE); where cmd is a constant.
Send the parameters the same way.
Use Serial.available() and Serial.read() to get the reply.
Looks like you would just do Serial.Write() commands with the data described
Serial.Write (command_byte);
where command byte = 0x01, 0x02, 0x03, 0x04
Serial.Write( D1_byte);
where D1 = a value for command 0x01, and 0 otherwise
Serial.Write( D0_byte);
where D0 = different things depending on the command byte.
If i understand to set the radio in 95,5MHZ the comand is:
Serial.Write (0x01, 0x251C, 0x5);
or
Serial.Write (0x01);
Serial.Write (0x251C);
Serial.Write (0x05);