Stufin
Home Quick Cart Profile

2CH 27MHZ with Antenna

Buy Now on Stufin

Component Name

2CH 27MHZ with Antenna

Description

The 2CH 27MHZ with Antenna is a wireless radio frequency (RF) module designed for remote control and data transmission applications. This compact module operates at a frequency of 27MHz and features two channels (CH1 and CH2) for simultaneous transmission and reception of data.

Functionality

The 2CH 27MHZ with Antenna module is designed to facilitate wireless communication between devices. It can be used in various applications such as

Remote control systems

The module can be used to transmit commands from a transmitter to a receiver, enabling remote control of devices such as robots, drones, and other IoT devices.

Data transmission

The module can transmit data between two devices, making it suitable for applications such as wireless sensor networks, home automation systems, and industrial control systems.

Key Features

  • Frequency: 27MHz, allowing for reliable and stable wireless communication.
  • Dual Channels: The module features two channels (CH1 and CH2), enabling simultaneous transmission and reception of data.
  • Antenna: The module comes with an onboard antenna, ensuring reliable signal transmission and reception.
  • Compact Design: The module is designed to be compact and lightweight, making it suitable for use in space-constrained applications.
  • Low Power Consumption: The module operates at a low power consumption, making it suitable for battery-powered devices.
  • Simple Interface: The module has a simple interface, making it easy to integrate into existing systems.
  • Reliable Data Transmission: The module ensures reliable data transmission, with a high signal-to-noise ratio (SNR) and low bit error rate (BER).

Operating Frequency

27MHz

Operating Voltage

3.5V - 5.5V

Current Consumption

20mA (Transmitting), 5mA (Receiving)

Transmission Distance

Up to 100 meters (open air)

Data Rate

Up to 4kbps

Antenna Type

Onboard monopole antenna

Dimensions

25mm x 15mm x 5mm

Weight

Approximately 2g

Applications

Remote control systems

Wireless sensor networks

Home automation systems

Industrial control systems

IoT devices

Robotics and drones

Automation systems

Note

The module must be used in compliance with local laws and regulations governing wireless communication.

The module is designed for use in indoor and outdoor environments, but the transmission distance may vary depending on the environment and obstacles.

The module requires proper integration and setup to ensure reliable operation.

Pin Configuration

  • 2CH 27MHZ with Antenna Component Documentation
  • Pinout Description
  • The 2CH 27MHZ with Antenna component is a wireless receiver module that operates at a frequency of 27MHz. It has a total of 7 pins, each serving a specific purpose. Below is a detailed description of each pin:
  • Pin 1: VCC
  • Function: Power supply pin
  • Description: Connect this pin to a 5V DC power source. The module requires a stable 5V supply to operate correctly.
  • Typical Voltage: 4.5V to 5.5V
  • Maximum Current: 20mA
  • Pin 2: GND
  • Function: Ground pin
  • Description: Connect this pin to the ground of your circuit. This pin provides a return path for the power supply and helps to reduce noise.
  • Typical Voltage: 0V
  • Pin 3: DATA1
  • Function: Data receiving pin for channel 1
  • Description: This pin receives the data transmitted by the transmitter module on channel 1. The data is decoded and outputted in serial format.
  • Logic Level: TTL (Transistor-Transistor Logic)
  • Maximum Frequency: 27MHz
  • Pin 4: DATA2
  • Function: Data receiving pin for channel 2
  • Description: This pin receives the data transmitted by the transmitter module on channel 2. The data is decoded and outputted in serial format.
  • Logic Level: TTL (Transistor-Transistor Logic)
  • Maximum Frequency: 27MHz
  • Pin 5: ANT
  • Function: Antenna connection pin
  • Description: Connect the antenna to this pin to receive the RF signal transmitted by the transmitter module.
  • Antenna Type: Whip antenna or other 27MHz antenna
  • Maximum Power: 10dBm
  • Pin 6: NC (Not Connected)
  • Function: No connection pin
  • Description: This pin is not connected internally and should not be used.
  • Pin 7: VT (Voltage Tuning)
  • Function: Voltage tuning pin
  • Description: This pin is used to adjust the internal voltage of the module. A voltage regulator or a potentiometer can be connected to this pin to fine-tune the operating voltage.
  • Typical Voltage: 1.2V to 3.6V
  • Connection Structure
  • To connect the pins, follow this structure:
  • VCC to 5V power supply
  • GND to ground of the circuit
  • DATA1 to microcontroller or data processing unit
  • DATA2 to microcontroller or data processing unit
  • ANT to 27MHz antenna
  • NC: No connection
  • VT to voltage regulator or potentiometer (optional)
  • Important Notes
  • Ensure the power supply is stable and regulated to prevent damage to the module.
  • Use a suitable antenna designed for 27MHz frequency to achieve optimal reception.
  • Keep the module away from noise sources and electromagnetic interference.
  • Follow proper PCB design and layout guidelines to minimize noise and ensure reliable operation.
  • By following these guidelines and connecting the pins correctly, you can successfully integrate the 2CH 27MHZ with Antenna component into your IoT project.

Code Examples

Component Documentation: 2CH 27MHZ with Antenna
Overview
The 2CH 27MHZ with Antenna is a radio frequency (RF) transmitter module designed for wireless communication applications. It operates at a frequency of 27 MHz and features two channels, allowing for simultaneous transmission of two separate signals. The module comes with an integrated antenna, making it a compact and convenient solution for various IoT applications.
Features
Operating frequency: 27 MHz
 Number of channels: 2
 Integrated antenna
 Low power consumption
 Compact design
Pinout
VCC: Power supply (typically 3.3V or 5V)
 GND: Ground
 DATA1: Data input for Channel 1
 DATA2: Data input for Channel 2
 ANT: Integrated antenna
Code Examples
### Example 1: Basic Transmission using Arduino
In this example, we will use the 2CH 27MHZ with Antenna module to transmit two separate signals using an Arduino board.
```cpp
#include <RF27MHz.h>
#define DATA1_PIN 2
#define DATA2_PIN 3
RF27MHz transmitter(DATA1_PIN, DATA2_PIN);
void setup() {
  Serial.begin(9600);
  transmitter.begin();
}
void loop() {
  // Transmit signal on Channel 1
  transmitter.send(1, 0x01);
// Transmit signal on Channel 2
  transmitter.send(2, 0x02);
delay(1000);
}
```
### Example 2: Wireless Communication between Two Arduino Boards
In this example, we will use two Arduino boards, each equipped with a 2CH 27MHZ with Antenna module, to establish a wireless communication link between them.
Transmitter Code
```cpp
#include <RF27MHz.h>
#define DATA_PIN 2
RF27MHz transmitter(DATA_PIN);
void setup() {
  Serial.begin(9600);
  transmitter.begin();
}
void loop() {
  // Transmit signal on Channel 1
  transmitter.send(1, 0x01);
delay(1000);
}
```
Receiver Code
```cpp
#include <RF27MHz.h>
#define DATA_PIN 2
RF27MHz receiver(DATA_PIN);
void setup() {
  Serial.begin(9600);
  receiver.begin();
}
void loop() {
  if (receiver.available()) {
    byte data = receiver.read();
    Serial.print("Received data: 0x");
    Serial.println(data, HEX);
  }
}
```
Note: In this example, the transmitter sends a signal on Channel 1, and the receiver listens on the same channel to receive the data.
These code examples demonstrate the basic usage of the 2CH 27MHZ with Antenna module in different contexts. The module can be used in various applications, such as wireless sensor networks, remote control systems, and IoT projects.