HC-11 433MHz wireless RF Serial UART Module CC1101

HC-11 433MHz Wireless RF Serial UART Module CC1101
1. RF Chipset: CC1101
2. Operating Frequency: 433 MHz
3. Communication Interface: UART
4. Communication Distance: Up to 1000m (Open Area)
5. Data Rate: Up to 500 kbps
6. Operating Voltage: 3.3V

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

260,00 EGP

3 People watching this product now!

Payment Methods:

Description

The HC-11 is a 433MHz wireless RF serial UART module built around the CC1101 RF chipset, letting a microcontroller send and receive wireless data over a simple UART connection without handling RF protocol details directly.

It uses FSK/GFSK modulation at 433MHz, communicating with a host over UART at up to 500kbps, and connects to an external antenna via IPEX or SMA interface. Operating at 3.3V, it can transmit at up to +10dBm, reaching communication distances of up to 1000m in open-area conditions.

Rated for operation across -40°C to +85°C, this module suits wireless communication links, remote control systems, telemetry, and general IoT data transmission where line-of-sight range matters.

Features:

  1. CC1101-based 433MHz RF module
  2. UART serial interface
  3. FSK/GFSK modulation
  4. Up to 500kbps data rate
  5. Up to 1000m range in open area
  6. Transmit power up to +10dBm
  7. External antenna via IPEX/SMA
  8. Operating temperature: -40°C to +85°C
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
HC-11VCC/GND/TX/RX3.3-5V / GND / board RX pin / board TX pin
📟
HC-11 433MHz wireless RF Serial UART Module CC1101
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
HC-11 433MHz wireless RF Serial UART Module CC1101 - Arduino Uno
HC-11 433MHz wireless RF Serial UART Module CC1101 - Arduino Nano
HC-11 433MHz wireless RF Serial UART Module CC1101 - Arduino Mega
HC-11 433MHz wireless RF Serial UART Module CC1101 - ESP32
HC-11 433MHz wireless RF Serial UART Module CC1101 - ESP8266
HC-11 433MHz wireless RF Serial UART Module CC1101 - STM32
HC-11 433MHz wireless RF Serial UART Module CC1101 - Raspberry Pi Pico
📄 File: hc-11_433mhz_wireless_rf_serial_uart_module_cc1101_-_arduino_uno.inoArduino Uno
668 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Uno (module TX -> board RX; module RX needs a voltage divider from 5V boards since the module is 3.3V logic)
6#include <SoftwareSerial.h>
7SoftwareSerial LINK_SERIAL(2, 3);
8
9void setup() {
10 Serial.begin(115200);
11 LINK_SERIAL.begin(38400); // 38400 is HC-05's default AT-mode/factory baud - many pre-paired modules run at 9600, check yours
12}
13
14void loop() {
15 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read()); // data from the paired Bluetooth device -> USB serial
16 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // USB serial -> Bluetooth device
17}
📄 File: hc-11_433mhz_wireless_rf_serial_uart_module_cc1101_-_arduino_nano.inoArduino Nano
669 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Nano (module TX -> board RX; module RX needs a voltage divider from 5V boards since the module is 3.3V logic)
6#include <SoftwareSerial.h>
7SoftwareSerial LINK_SERIAL(2, 3);
8
9void setup() {
10 Serial.begin(115200);
11 LINK_SERIAL.begin(38400); // 38400 is HC-05's default AT-mode/factory baud - many pre-paired modules run at 9600, check yours
12}
13
14void loop() {
15 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read()); // data from the paired Bluetooth device -> USB serial
16 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // USB serial -> Bluetooth device
17}
📄 File: hc-11_433mhz_wireless_rf_serial_uart_module_cc1101_-_arduino_mega.inoArduino Mega
637 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=19, TX=18 on Arduino Mega (module TX -> board RX; module RX needs a voltage divider from 5V boards since the module is 3.3V logic)
6#define LINK_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 LINK_SERIAL.begin(38400); // 38400 is HC-05's default AT-mode/factory baud - many pre-paired modules run at 9600, check yours
11}
12
13void loop() {
14 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read()); // data from the paired Bluetooth device -> USB serial
15 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // USB serial -> Bluetooth device
16}
📄 File: hc-11_433mhz_wireless_rf_serial_uart_module_cc1101_-_esp32.inoESP32
630 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=16, TX=17 on ESP32 (module TX -> board RX; module RX needs a voltage divider from 5V boards since the module is 3.3V logic)
6#define LINK_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 LINK_SERIAL.begin(38400); // 38400 is HC-05's default AT-mode/factory baud - many pre-paired modules run at 9600, check yours
11}
12
13void loop() {
14 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read()); // data from the paired Bluetooth device -> USB serial
15 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // USB serial -> Bluetooth device
16}
📄 File: hc-11_433mhz_wireless_rf_serial_uart_module_cc1101_-_esp8266.inoESP8266
668 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=D7, TX=D8 on ESP8266 (module TX -> board RX; module RX needs a voltage divider from 5V boards since the module is 3.3V logic)
6#include <SoftwareSerial.h>
7SoftwareSerial LINK_SERIAL(D7, D8);
8
9void setup() {
10 Serial.begin(115200);
11 LINK_SERIAL.begin(38400); // 38400 is HC-05's default AT-mode/factory baud - many pre-paired modules run at 9600, check yours
12}
13
14void loop() {
15 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read()); // data from the paired Bluetooth device -> USB serial
16 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // USB serial -> Bluetooth device
17}
📄 File: hc-11_433mhz_wireless_rf_serial_uart_module_cc1101_-_stm32.inoSTM32
633 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=PA10, TX=PA9 on STM32 (module TX -> board RX; module RX needs a voltage divider from 5V boards since the module is 3.3V logic)
6#define LINK_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 LINK_SERIAL.begin(38400); // 38400 is HC-05's default AT-mode/factory baud - many pre-paired modules run at 9600, check yours
11}
12
13void loop() {
14 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read()); // data from the paired Bluetooth device -> USB serial
15 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // USB serial -> Bluetooth device
16}
📄 File: hc-11_433mhz_wireless_rf_serial_uart_module_cc1101_-_raspberry_pi_pico.inoRaspberry Pi Pico
640 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=1, TX=0 on Raspberry Pi Pico (module TX -> board RX; module RX needs a voltage divider from 5V boards since the module is 3.3V logic)
6#define LINK_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 LINK_SERIAL.begin(38400); // 38400 is HC-05's default AT-mode/factory baud - many pre-paired modules run at 9600, check yours
11}
12
13void loop() {
14 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read()); // data from the paired Bluetooth device -> USB serial
15 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // USB serial -> Bluetooth device
16}
CC1101-based UART wireless bridge module.

نظرة عامة ومواصفات المنتج — بالعربية

HC-11 433MHz wireless RF Serial UART Module CC1101 متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم IoT and Wireless، بسعر 260,00 EGP. كود المنتج لدينا: EK1845. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Rf Chipset: CC1101
  • Operating Frequency: 433 MHz
  • Communication Interface: UART (Serial)
  • Modulation Type: FSK / GFSK
  • Operating Voltage: 3.3V
  • Transmit Power: Up to +10 dBm
  • Communication Distance: Up to 1000m (Open Area)
  • Data Rate: Up to 500 kbps

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من IoT and Wireless في إكوسترا.

Specification

Specification

WeightWeight0,003 g
Dimensions2,7 × 1,4 × 0,3 cm
RF ChipsetCC1101
Operating Frequency433 MHz
Communication InterfaceUART (Serial)
Modulation TypeFSK / GFSK
Operating Voltage3.3V
Transmit PowerUp to +10 dBm
Communication DistanceUp to 1000m (Open Area)
Data RateUp to 500 kbps
Antenna InterfaceExternal Antenna (IPEX / SMA)
Operating Temperature-40°C to +85°C

Customer Reviews