CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino

  • 🔌 CH340/CH340T USB-to-Serial adapter for Arduino & modules
  • 📡 Includes NRF24L01 2.4GHz wireless transceiver module
  • ⚡ Easy serial communication for programming and debugging
  • 🛰️ NRF24L01 supports low-power wireless data links
  • 🧩 Ideal for wireless sensor networks and remote control projects
  • 🚌 Works great with Arduino, ESP32, STM32 (with proper wiring)
  • 🛠️ Plug-and-play USB serial interface (driver may be needed)
  • ✅ Great bundle for quick RF experiments and prototyping

Apple Shopping Event

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

250,00 EGP

16 People watching this product now!

Payment Methods:

Description

 
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
nRF24L01 halfCE/CSNboard digital pin / board digital pin
📟
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino - Arduino Uno
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino - Arduino Nano
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino - Arduino Mega
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino - ESP32
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino - ESP8266
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino - STM32
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino - Raspberry Pi Pico
📄 File: ch340/ch340t_usb_to_serial_adapter_with_nrf24l01_2.4g_module_for_arduino_-_arduino_uno.inoArduino Uno
610 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// The CH340 half is a USB-to-serial adapter for programming/talking to a SEPARATE board - it's not itself an Arduino peripheral. The NRF24L01 half is a normal SPI radio: CE=9, CSN=10 on Arduino Uno.
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(9, 10);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: ch340/ch340t_usb_to_serial_adapter_with_nrf24l01_2.4g_module_for_arduino_-_arduino_nano.inoArduino Nano
611 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// The CH340 half is a USB-to-serial adapter for programming/talking to a SEPARATE board - it's not itself an Arduino peripheral. The NRF24L01 half is a normal SPI radio: CE=9, CSN=10 on Arduino Nano.
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(9, 10);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: ch340/ch340t_usb_to_serial_adapter_with_nrf24l01_2.4g_module_for_arduino_-_arduino_mega.inoArduino Mega
611 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// The CH340 half is a USB-to-serial adapter for programming/talking to a SEPARATE board - it's not itself an Arduino peripheral. The NRF24L01 half is a normal SPI radio: CE=9, CSN=10 on Arduino Mega.
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(9, 10);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: ch340/ch340t_usb_to_serial_adapter_with_nrf24l01_2.4g_module_for_arduino_-_esp32.inoESP32
602 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// The CH340 half is a USB-to-serial adapter for programming/talking to a SEPARATE board - it's not itself an Arduino peripheral. The NRF24L01 half is a normal SPI radio: CE=4, CSN=5 on ESP32.
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(4, 5);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: ch340/ch340t_usb_to_serial_adapter_with_nrf24l01_2.4g_module_for_arduino_-_esp8266.inoESP8266
608 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// The CH340 half is a USB-to-serial adapter for programming/talking to a SEPARATE board - it's not itself an Arduino peripheral. The NRF24L01 half is a normal SPI radio: CE=D3, CSN=D8 on ESP8266.
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(D3, D8);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: ch340/ch340t_usb_to_serial_adapter_with_nrf24l01_2.4g_module_for_arduino_-_stm32.inoSTM32
610 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// The CH340 half is a USB-to-serial adapter for programming/talking to a SEPARATE board - it's not itself an Arduino peripheral. The NRF24L01 half is a normal SPI radio: CE=PB0, CSN=PA4 on STM32.
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(PB0, PA4);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: ch340/ch340t_usb_to_serial_adapter_with_nrf24l01_2.4g_module_for_arduino_-_raspberry_pi_pico.inoRaspberry Pi Pico
618 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// The CH340 half is a USB-to-serial adapter for programming/talking to a SEPARATE board - it's not itself an Arduino peripheral. The NRF24L01 half is a normal SPI radio: CE=20, CSN=17 on Raspberry Pi Pico.
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(20, 17);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
Combo board: USB-serial adapter plus a wired-on nRF24L01 radio.

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

CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Electronic Modules وUSB Interface Module، بسعر 250,00 EGP. كود المنتج لدينا: EK1630. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

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

  • Product Name: CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino
  • Type: USB-to-Serial Adapter with Wireless Module
  • الشريحة: CH340 / CH340T
  • Wireless Module: NRF24L01 2.4 GHz Transceiver
  • Operating Voltage: 3.3 V / 5 V (switchable)
  • واجهة الاتصال: USB 2.0 to TTL Serial
  • Data Rate: Up to 2 Mbps (CH340), NRF24L01 up to 2 Mbps RF
  • Driver Support: Windows, macOS, Linux

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

تصفّح المزيد من Electronic Modules في إكوسترا.

Specification

Specification

WeightWeight8 g
Dimensions5 × 2,5 × 1,2 cm
Product NameCH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino
TypeUSB-to-Serial Adapter with Wireless Module
ChipsetCH340 / CH340T
Wireless ModuleNRF24L01 2.4 GHz Transceiver
Operating Voltage3.3 V / 5 V (switchable)
InterfaceUSB 2.0 to TTL Serial
Data RateUp to 2 Mbps (CH340), NRF24L01 up to 2 Mbps RF
Driver SupportWindows, macOS, Linux
Mounting TypeModule / USB Plug
MaterialPCB with Plastic Housing
ApplicationsArduino Projects, Wireless Communication, IoT Development, DIY Electronics
Package Contents1× CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module

Customer Reviews