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

  • Converts USB to TTL serial for easy communication with microcontrollers.
  • Supports a wide range of microcontroller boards.
  • Compact and easy to use, no external power required (powered via USB).
SKU: aA1581 Category: Tags: ,

Apple Shopping Event

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

250,00 EGP

11 People watching this product now!

Payment Methods:

Description

<div class=""flex max-w-full flex-col flex-grow""> <div class=""min-h-[20px] text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words [.text-message+&]:mt-5"" dir=""auto"" data-message-author-role=""assistant"" data-message-id=""b874ec70-bc28-43ea-a5d1-d4ebf5c71dfb""> <div class=""flex w-full flex-col gap-1 empty:hidden first:pt-[3px]""> <div class=""markdown prose w-full break-words dark:prose-invert light""> The CH340 USB to Serial Adapter with NRF24L01 2.4G Module for Arduino is an essential kit for hobbyists and professionals working with wireless communication in their Arduino projects. This versatile combination allows seamless connection between your computer and Arduino microcontrollers, as well as the ability to implement wireless communication via the NRF24L01 module. The CH340 adapter ensures reliable serial communication through a USB port, while the NRF24L01 module provides efficient 2.4GHz wireless transmission with minimal power consumption. <strong>Features:</strong> <ol> <li><strong>CH340 USB to Serial Adapter:</strong> <ul> <li>Converts USB to TTL serial for easy communication with microcontrollers.</li> <li>Supports a wide range of microcontroller boards.</li> <li>Compact and easy to use, no external power required (powered via USB).</li> </ul> </li> <li><strong>NRF24L01 2.4G Module:</strong> <ul> <li>Operates at the 2.4GHz frequency with low power consumption.</li> <li>High-speed communication with a range of up to 100 meters (line of sight).</li> <li>Reliable data transfer with advanced features such as automatic retransmission and acknowledgments.</li> <li>Compatible with various Arduino boards and easily integrates with libraries for straightforward implementation.</li> </ul> </li> <li><strong>Easy Integration:</strong> <ul> <li>Simple plug-and-play setup with clear pin mapping for quick connections.</li> <li>Includes necessary components for basic operation (antennas not included).</li> <li>Ideal for wireless data transfer applications, remote controls, and sensor networks.</li> </ul> </li> <li><strong>Durable and Reliable:</strong> <ul> <li>Built with high-quality components for stable and long-lasting performance.</li> <li>Designed for minimal interference and optimal signal integrity.</li> </ul> </li> </ol> <strong>Specifications:</strong> <ol> <li><strong>CH340 USB to Serial Adapter:</strong> <ul> <li><strong>Chipset:</strong> CH340G</li> <li><strong>Interface:</strong> USB Type-A to TTL Serial (3.3V or 5V)</li> <li><strong>Operating Voltage:</strong> 3.3V or 5V (jumper selectable)</li> <li><strong>Data Rate:</strong> Up to 1Mbps</li> <li><strong>Connector:</strong> 6-pin header (TX, RX, VCC, GND, DTR, RTS)</li> <li><strong>Dimensions:</strong> 25mm x 15mm</li> </ul> </li> </ol> <strong>Applications:</strong> <ul> <li>Wireless communication between Arduino boards.</li> <li>Remote controls and wireless sensor networks.</li> <li>Data transmission projects and wireless data logging.</li> <li>IoT applications and DIY electronics projects.</li> </ul> This CH340 USB to Serial Adapter with NRF24L01 2.4G Module is an excellent choice for anyone looking to add reliable wireless functionality to their Arduino projects. </div> </div> </div> </div>

🔌
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 (1501)
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 (1501) - Arduino Uno
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino (1501) - Arduino Nano
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino (1501) - Arduino Mega
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino (1501) - ESP32
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino (1501) - ESP8266
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino (1501) - STM32
CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino (1501) - Raspberry Pi Pico
📄 File: ch340/ch340t_usb_to_serial_adapter_with_nrf24l01_2.4g_module_for_arduino_(1501)_-_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_(1501)_-_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_(1501)_-_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_(1501)_-_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_(1501)_-_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_(1501)_-_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_(1501)_-_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: a USB-serial adapter (for programming a separate target board) plus a wired-on nRF24L01 radio.

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

CH340/CH340T USB to Serial Adapter with NRF24L01 2.4G Module for Arduino (1501) متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم USB Interface Module، بسعر 250,00 EGP. كود المنتج لدينا: aA1581. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • الشريحة: CH340G
  • واجهة الاتصال: USB Type-A to TTL Serial (3.3V or 5V)
  • جهد التشغيل: 3.3V or 5V (jumper selectable)
  • Data Rate: Up to 1Mbps
  • Connector: 6-pin header (TX, RX, VCC, GND, DTR, RTS)
  • الأبعاد: 25mm x 15mm
  • الوزن: 1 g

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

تصفّح المزيد من USB Interface Module في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
chipsetCH340G
interfaceUSB Type-A to TTL Serial (3.3V or 5V)
operating-voltage3.3V or 5V (jumper selectable)
data-rateUp to 1Mbps
connector6-pin header (TX, RX, VCC, GND, DTR, RTS)
dimensions25mm x 15mm

Customer Reviews