CC1101 433MHz Long-Range Wireless Module

433MHz long-range wireless transceiver module with low power consumption. Ideal for IoT, smart switches, and sensor networks.

Apple Shopping Event

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

300,00 EGP

5 People watching this product now!

Payment Methods:

Description

The CC1101 433MHz Long-Range Wireless Module delivers reliable, low-power communication for your IoT and wireless control projects. Operating in the 433MHz ISM band, this transceiver module is engineered for extended range and superior penetration through walls and obstacles compared to 2.4GHz alternatives.

Ideal for wireless smart switches, home automation, sensor networks, and remote control systems, this module supports multiple modulation formats including OOK, ASK, and GFSK. Its configurable data rate and output power allow you to fine-tune performance for battery-operated devices or distance-critical applications. Easy to interface with microcontrollers via SPI, making it a popular choice for Arduino and other development platforms.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
CC1101VCC/GND/CSN3.3V only / GND / board digital pin
📟
CC1101 433MHz Long-Range Wireless Module
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
CC1101 433MHz Long-Range Wireless Module - Arduino Uno
CC1101 433MHz Long-Range Wireless Module - Arduino Nano
CC1101 433MHz Long-Range Wireless Module - Arduino Mega
CC1101 433MHz Long-Range Wireless Module - ESP32
CC1101 433MHz Long-Range Wireless Module - ESP8266
CC1101 433MHz Long-Range Wireless Module - STM32
CC1101 433MHz Long-Range Wireless Module - Raspberry Pi Pico
📄 File: cc1101_433mhz_long-range_wireless_module_-_arduino_uno.inoArduino Uno
440 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CSN=10 on Arduino Uno (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <ELECHOUSE_CC1101_SRC_DRV.h>
7
8void setup() {
9 Serial.begin(115200);
10 ELECHOUSE_cc1101.Init();
11 ELECHOUSE_cc1101.setMHZ(433.92);
12 ELECHOUSE_cc1101.SetTx();
13}
14
15void loop() {
16 byte message[] = "Hello from Ekostra";
17 ELECHOUSE_cc1101.SendData(message, sizeof(message));
18 delay(1000);
19}
📄 File: cc1101_433mhz_long-range_wireless_module_-_arduino_nano.inoArduino Nano
441 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CSN=10 on Arduino Nano (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <ELECHOUSE_CC1101_SRC_DRV.h>
7
8void setup() {
9 Serial.begin(115200);
10 ELECHOUSE_cc1101.Init();
11 ELECHOUSE_cc1101.setMHZ(433.92);
12 ELECHOUSE_cc1101.SetTx();
13}
14
15void loop() {
16 byte message[] = "Hello from Ekostra";
17 ELECHOUSE_cc1101.SendData(message, sizeof(message));
18 delay(1000);
19}
📄 File: cc1101_433mhz_long-range_wireless_module_-_arduino_mega.inoArduino Mega
441 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CSN=53 on Arduino Mega (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <ELECHOUSE_CC1101_SRC_DRV.h>
7
8void setup() {
9 Serial.begin(115200);
10 ELECHOUSE_cc1101.Init();
11 ELECHOUSE_cc1101.setMHZ(433.92);
12 ELECHOUSE_cc1101.SetTx();
13}
14
15void loop() {
16 byte message[] = "Hello from Ekostra";
17 ELECHOUSE_cc1101.SendData(message, sizeof(message));
18 delay(1000);
19}
📄 File: cc1101_433mhz_long-range_wireless_module_-_esp32.inoESP32
433 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CSN=5 on ESP32 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <ELECHOUSE_CC1101_SRC_DRV.h>
7
8void setup() {
9 Serial.begin(115200);
10 ELECHOUSE_cc1101.Init();
11 ELECHOUSE_cc1101.setMHZ(433.92);
12 ELECHOUSE_cc1101.SetTx();
13}
14
15void loop() {
16 byte message[] = "Hello from Ekostra";
17 ELECHOUSE_cc1101.SendData(message, sizeof(message));
18 delay(1000);
19}
📄 File: cc1101_433mhz_long-range_wireless_module_-_esp8266.inoESP8266
436 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CSN=D8 on ESP8266 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <ELECHOUSE_CC1101_SRC_DRV.h>
7
8void setup() {
9 Serial.begin(115200);
10 ELECHOUSE_cc1101.Init();
11 ELECHOUSE_cc1101.setMHZ(433.92);
12 ELECHOUSE_cc1101.SetTx();
13}
14
15void loop() {
16 byte message[] = "Hello from Ekostra";
17 ELECHOUSE_cc1101.SendData(message, sizeof(message));
18 delay(1000);
19}
📄 File: cc1101_433mhz_long-range_wireless_module_-_stm32.inoSTM32
435 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CSN=PA4 on STM32 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <ELECHOUSE_CC1101_SRC_DRV.h>
7
8void setup() {
9 Serial.begin(115200);
10 ELECHOUSE_cc1101.Init();
11 ELECHOUSE_cc1101.setMHZ(433.92);
12 ELECHOUSE_cc1101.SetTx();
13}
14
15void loop() {
16 byte message[] = "Hello from Ekostra";
17 ELECHOUSE_cc1101.SendData(message, sizeof(message));
18 delay(1000);
19}
📄 File: cc1101_433mhz_long-range_wireless_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
446 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CSN=17 on Raspberry Pi Pico (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <ELECHOUSE_CC1101_SRC_DRV.h>
7
8void setup() {
9 Serial.begin(115200);
10 ELECHOUSE_cc1101.Init();
11 ELECHOUSE_cc1101.setMHZ(433.92);
12 ELECHOUSE_cc1101.SetTx();
13}
14
15void loop() {
16 byte message[] = "Hello from Ekostra";
17 ELECHOUSE_cc1101.SendData(message, sizeof(message));
18 delay(1000);
19}
SPI sub-GHz transceiver.

Specification

Specification

WeightWeight8 g
Dimensions3 × 2 × 1 cm
Frequency433MHz
ChipsetCC1101
InterfaceSPI
ModulationOOK, ASK, GFSK
ApplicationIoT, Wireless Smart Switches, Sensor Networks, Home Automation
Supply Voltage1.8V – 3.6V

Customer Reviews