RF Wireless transmitter and receiver kit 433Mhz

  • 📡 433MHz RF wireless transmitter & receiver kit
  • 🔁 Simple serial data transmission for remote control projects
  • ⚡ Low power modules—great for battery-operated nodes
  • 🧩 Ideal for wireless switches, sensors, and alarms
  • 📶 Good range (depends on antenna, power, and environment)
  • 🛠️ Easy to use with Arduino using common RF libraries
  • 📦 Includes TX + RX modules—ready for quick testing
  • ✅ Perfect for DIY RF communication and automation
SKU: EK1453 Category: Tag:

Apple Shopping Event

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

55,00 EGP

7 People watching this product now!

Payment Methods:

Description

433MHz RF Wireless Transmitter and Receiver Kit is a simple, low-cost wireless communication set used for sending digital signals over the air. It is ideal for remote control projects, wireless sensors, alarms, and Arduino/ESP32 DIY applications. The kit typically includes a 433MHz RF transmitter module and a 433MHz RF receiver module that work together for basic one-way data transmission.


Key Features

  • Frequency: 433MHz (ISM band)

  • Kit Type: RF Transmitter + Receiver pair

  • Supports common DIY RF protocols (with encoding/decoding libraries)

  • Works with microcontrollers: Arduino, ESP32, ESP8266, STM32

  • Easy wiring (VCC, GND, DATA pins)

  • Suitable for remote ON/OFF and simple wireless sensor data


Full Specifications (Typical)

Exact range and performance depend on antenna, voltage, environment, and module type.

Transmitter Module

  • Operating Voltage: typically 3V–12V (many common TX modules)

  • Output Power: increases with higher supply voltage (within rating)

  • Data Input: 1 digital data pin (ASK/OOK modulation)

  • Use: Sends data from MCU encoder/library to air

Receiver Module

  • Operating Voltage: typically 5V (some RX modules support 3.3V versions)

  • Data Output: 1 or 2 digital data pins (varies by board)

  • Modulation: ASK/OOK reception

  • Sensitivity: suitable for short-to-medium range DIY links

Communication

  • Modulation: ASK / OOK (most common 433MHz cheap modules)

  • Direction: Usually one-way (simplex) per transmitter/receiver pair

  • Recommended Antenna: external wire/coil antenna for best range


Applications

  • Wireless doorbell / remote switch projects

  • Home alarm and sensor transmission

  • Wireless temperature/humidity sensor nodes

  • Arduino remote control / RC switches

  • Garage-style remote signal experiments

  • IoT prototypes (simple RF link)


Used In

  • Arduino UNO/Nano wireless projects

  • ESP32/ESP8266 with encoding libraries

  • PT2262/PT2272 style remote control circuits

  • DIY home automation triggers (with proper receiver decoding)


Package Includes

  • 433MHz RF Transmitter Module

  • 433MHz RF Receiver Module

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
RX moduleVCC/GND/DATA5V / GND / board digital pin
📟
RF Wireless transmitter and receiver kit 433Mhz
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
RF Wireless transmitter and receiver kit 433Mhz - Arduino Uno
RF Wireless transmitter and receiver kit 433Mhz - Arduino Nano
RF Wireless transmitter and receiver kit 433Mhz - Arduino Mega
RF Wireless transmitter and receiver kit 433Mhz - ESP32
RF Wireless transmitter and receiver kit 433Mhz - ESP8266
RF Wireless transmitter and receiver kit 433Mhz - STM32
RF Wireless transmitter and receiver kit 433Mhz - Raspberry Pi Pico
📄 File: rf_wireless_transmitter_and_receiver_kit_433mhz_-_arduino_uno.inoArduino Uno
474 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Receiver data pin 2 on Arduino Uno (the kit's transmitter half uses RCSwitch::send() on any digital pin the same way)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 Serial.begin(115200);
12 mySwitch.enableReceive(2);
13}
14
15void loop() {
16 if (mySwitch.available()) {
17 Serial.print("Received code: ");
18 Serial.println(mySwitch.getReceivedValue());
19 mySwitch.resetAvailable();
20 }
21}
📄 File: rf_wireless_transmitter_and_receiver_kit_433mhz_-_arduino_nano.inoArduino Nano
475 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Receiver data pin 2 on Arduino Nano (the kit's transmitter half uses RCSwitch::send() on any digital pin the same way)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 Serial.begin(115200);
12 mySwitch.enableReceive(2);
13}
14
15void loop() {
16 if (mySwitch.available()) {
17 Serial.print("Received code: ");
18 Serial.println(mySwitch.getReceivedValue());
19 mySwitch.resetAvailable();
20 }
21}
📄 File: rf_wireless_transmitter_and_receiver_kit_433mhz_-_arduino_mega.inoArduino Mega
475 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Receiver data pin 2 on Arduino Mega (the kit's transmitter half uses RCSwitch::send() on any digital pin the same way)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 Serial.begin(115200);
12 mySwitch.enableReceive(2);
13}
14
15void loop() {
16 if (mySwitch.available()) {
17 Serial.print("Received code: ");
18 Serial.println(mySwitch.getReceivedValue());
19 mySwitch.resetAvailable();
20 }
21}
📄 File: rf_wireless_transmitter_and_receiver_kit_433mhz_-_esp32.inoESP32
468 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Receiver data pin 4 on ESP32 (the kit's transmitter half uses RCSwitch::send() on any digital pin the same way)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 Serial.begin(115200);
12 mySwitch.enableReceive(4);
13}
14
15void loop() {
16 if (mySwitch.available()) {
17 Serial.print("Received code: ");
18 Serial.println(mySwitch.getReceivedValue());
19 mySwitch.resetAvailable();
20 }
21}
📄 File: rf_wireless_transmitter_and_receiver_kit_433mhz_-_esp8266.inoESP8266
472 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Receiver data pin D4 on ESP8266 (the kit's transmitter half uses RCSwitch::send() on any digital pin the same way)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 Serial.begin(115200);
12 mySwitch.enableReceive(D4);
13}
14
15void loop() {
16 if (mySwitch.available()) {
17 Serial.print("Received code: ");
18 Serial.println(mySwitch.getReceivedValue());
19 mySwitch.resetAvailable();
20 }
21}
📄 File: rf_wireless_transmitter_and_receiver_kit_433mhz_-_stm32.inoSTM32
472 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Receiver data pin PB4 on STM32 (the kit's transmitter half uses RCSwitch::send() on any digital pin the same way)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 Serial.begin(115200);
12 mySwitch.enableReceive(PB4);
13}
14
15void loop() {
16 if (mySwitch.available()) {
17 Serial.print("Received code: ");
18 Serial.println(mySwitch.getReceivedValue());
19 mySwitch.resetAvailable();
20 }
21}
📄 File: rf_wireless_transmitter_and_receiver_kit_433mhz_-_raspberry_pi_pico.inoRaspberry Pi Pico
480 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Receiver data pin 2 on Raspberry Pi Pico (the kit's transmitter half uses RCSwitch::send() on any digital pin the same way)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 Serial.begin(115200);
12 mySwitch.enableReceive(2);
13}
14
15void loop() {
16 if (mySwitch.available()) {
17 Serial.print("Received code: ");
18 Serial.println(mySwitch.getReceivedValue());
19 mySwitch.resetAvailable();
20 }
21}
Matching 433MHz TX+RX pair - shown here reading the receiver side (transmitter side uses the same rc-switch library's send()).

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

RF Wireless transmitter and receiver kit 433Mhz متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم IoT and Wireless، بسعر 55,00 EGP. كود المنتج لدينا: EK1453. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Product Name: RF Wireless Transmitter and Receiver Kit 433MHz
  • Kit Type: RF Transmitter & Receiver Module Set
  • Operating Frequency: 433 MHz
  • Modulation Type: ASK / OOK
  • Operating Voltage (Transmitter): 3V – 12V
  • Operating Voltage (Receiver): 5V
  • Communication Type: Digital RF
  • Data Rate: Up to 10 kbps

منتج أصلي بجودة مضمونة من إكوسترا، مع دعم فني ومتابعة بعد البيع لكل عملائنا في مصر.

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Product NameRF Wireless Transmitter and Receiver Kit 433MHz
Kit TypeRF Transmitter & Receiver Module Set
Operating Frequency433 MHz
Modulation TypeASK / OOK
Operating Voltage (Transmitter)3V – 12V
Operating Voltage (Receiver)5V
Communication TypeDigital RF
Data RateUp to 10 kbps
Transmission DistanceUp to 100 m (Open Area)
Antenna InterfaceExternal Antenna (Optional)
CompatibilityArduino, Microcontrollers
ApplicationWireless Data Transmission, Remote Control, DIY RF Projects
Dimension30x14x7 mm (TX), 45x14x7 mm (RX)

Customer Reviews