In this tutorial we will going to wire the HC11 / HC12 UART module a new generation multi-channel embedded wireless transmission module. This module is works on 433 ~ 473 MHz frequency band, you can also set this module works on multiple channel with the stepping of 400 KHz and there are 100 channel can be used. Using the HC11-12 it easy to utilize and customize the wireless data transmission by providing a UART data. It is flexible to set the UART Baud Rate, Frequency, Output Power, Data Rate, Frequency Deviation and Receiving Bandwidth parameters.

Hc11-HC12-UART-Wirelss-Serial-Communication-Module
The HC11 wireless communication frequency band is 434MHz in a high transparent FSK transceiver, high output power, high sensitivity and compare to Bluetooth HC05/HC06 it reach to 150~300 Meter on Open Space.

The HC12 maximum transmitting power is 100mW 20dBm, the receiving sensitivity is -117dBm at baud rate 5000bps in the air, communication distance up to 1000m on open space.

Schematics Diagram

HC12-HC11-Schematics-Diagram-Pinout-HC11-HC12

Wiring Diagram

As you can see the diagram below its uses two module Note: HC11 does not work with HC12 if you want to build a communication between HC11 & HC12.

Wiring-with-Arduino-HC11-HC12-Communication-Module

AT Command Instructions





Downloads

Wiring the HC11 & HC12 434/433MHz Transceiver
Facebooktwitterredditpinterestmail
Tagged on:             

JLCPCBPCBgogoPCBway4pcb

6 thoughts on “Wiring the HC11 & HC12 434/433MHz Transceiver

  • at
    Permalink

    Where do i get the newest Firmware file for updating the HC-12 module?

    Reply
  • at
    Permalink

    It won’t work – you forgot about SET pin. It needs to be grounded to sent AT commands.

    Reply
  • at
    Permalink

    /*
    Programa : Configurador Modulo HC-11
    Funcion : Programa que Envia los Comandos AT al Modulo HC-11 Para Cambiar Sus Parametros
    Autor : Roamir Williams
    */
    #include
    const int PIN_TX = 9;
    const int PIN_RX = 10;
    const int PIN_SET = 11;

    SoftwareSerial ModuloHC11(PIN_RX, PIN_TX);

    void setup()
    {
    pinMode(PIN_SET, OUTPUT); // this pin will Pull-Down the HC-11 to switch module to AT mode
    digitalWrite(9, LOW);

    Serial.begin(9600);
    ModuloHC11.begin(9600);

    ImprimirListaComandos();

    Serial.println();
    Serial.println();
    Serial.println(“Enter AT commands:”);
    ModuloHC11.write(“AT”);
    }

    void loop()
    {
    // Keep reading from HC-11 and send to Arduino Serial Monitor
    if (ModuloHC11.available())
    Serial.write(ModuloHC11.read());

    // Keep reading from Arduino Serial Monitor and send to HC-11
    if (Serial.available())
    ModuloHC11.write(Serial.read());
    }

    void ImprimirListaComandos()
    {
    int Indice = 0;
    while((char)pgm_read_byte_near(&Instrucciones[Indice]) != ‘\0’)
    {
    Serial.print((char)pgm_read_byte_near(&Instrucciones[Indice]));
    Indice++;
    }
    }

    Reply
  • at
    Permalink

    Dear sir ,
    can you help me ,

    how can i sent two or more analog data and received digital output led on off by using HC12 with arduino

    please give example codes

    Reply
  • Pingback:Extending The Range of 433 MHz with HC-12 / HC-11 & MAX263AXT Radio Signal Booster / Amplifier | 14core.com

Leave a Reply

Your email address will not be published. Required fields are marked *