4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna

SKU: EK505 Category: Tag:

Apple Shopping Event

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

130,00 EGP

18 People watching this product now!

Payment Methods:

Description

<h3 style=""font-weight: 400""><strong>4CH RC remote control 27MHz circuit PCB transmitter & receiver board with antenna   Radio system for toy car</strong></h3> <p style=""font-weight: 400"">The RC controller is made of plastic and electronic components material, durable, and long life service. Suitable for toy models, remote control cars, and remote control boats. Can be used to control the direction of movement of the toy car like going forward or backward. The RC transmitter and receiver have an Electronic frequency: of 27 MHz. To improve the sensitivity of the RC remote control transmitter, please give the motor a fire condenser. The output of the two rc transmitter voltages can be the size of the difference, when the battery power may be more obvious, it is recommended to take a little voltage alone to make with the steering engine.</p>

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
RX Channel 1Signalboard digital pin (repeat for each of the 4 channels)
📟
4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna - Arduino Uno
4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna - Arduino Nano
4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna - Arduino Mega
4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna - ESP32
4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna - ESP8266
4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna - STM32
4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna - Raspberry Pi Pico
📄 File: 4ch_rc_car_remote_control_27mhz_transmitter_and_receiver_board_with_antenna_-_arduino_uno.inoArduino Uno
400 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel 1 signal pin 2 on Arduino Uno (repeat wiring/code per channel)
6#define CH1_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(CH1_PIN, INPUT);
11}
12
13void loop() {
14 unsigned long pulse = pulseIn(CH1_PIN, HIGH, 25000); // ~1000-2000us typical RC pulse range
15 Serial.print("Channel 1: "); Serial.println(pulse);
16 delay(50);
17}
📄 File: 4ch_rc_car_remote_control_27mhz_transmitter_and_receiver_board_with_antenna_-_arduino_nano.inoArduino Nano
401 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel 1 signal pin 2 on Arduino Nano (repeat wiring/code per channel)
6#define CH1_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(CH1_PIN, INPUT);
11}
12
13void loop() {
14 unsigned long pulse = pulseIn(CH1_PIN, HIGH, 25000); // ~1000-2000us typical RC pulse range
15 Serial.print("Channel 1: "); Serial.println(pulse);
16 delay(50);
17}
📄 File: 4ch_rc_car_remote_control_27mhz_transmitter_and_receiver_board_with_antenna_-_arduino_mega.inoArduino Mega
401 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel 1 signal pin 2 on Arduino Mega (repeat wiring/code per channel)
6#define CH1_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(CH1_PIN, INPUT);
11}
12
13void loop() {
14 unsigned long pulse = pulseIn(CH1_PIN, HIGH, 25000); // ~1000-2000us typical RC pulse range
15 Serial.print("Channel 1: "); Serial.println(pulse);
16 delay(50);
17}
📄 File: 4ch_rc_car_remote_control_27mhz_transmitter_and_receiver_board_with_antenna_-_esp32.inoESP32
394 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel 1 signal pin 4 on ESP32 (repeat wiring/code per channel)
6#define CH1_PIN 4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(CH1_PIN, INPUT);
11}
12
13void loop() {
14 unsigned long pulse = pulseIn(CH1_PIN, HIGH, 25000); // ~1000-2000us typical RC pulse range
15 Serial.print("Channel 1: "); Serial.println(pulse);
16 delay(50);
17}
📄 File: 4ch_rc_car_remote_control_27mhz_transmitter_and_receiver_board_with_antenna_-_esp8266.inoESP8266
398 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel 1 signal pin D4 on ESP8266 (repeat wiring/code per channel)
6#define CH1_PIN D4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(CH1_PIN, INPUT);
11}
12
13void loop() {
14 unsigned long pulse = pulseIn(CH1_PIN, HIGH, 25000); // ~1000-2000us typical RC pulse range
15 Serial.print("Channel 1: "); Serial.println(pulse);
16 delay(50);
17}
📄 File: 4ch_rc_car_remote_control_27mhz_transmitter_and_receiver_board_with_antenna_-_stm32.inoSTM32
398 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel 1 signal pin PB4 on STM32 (repeat wiring/code per channel)
6#define CH1_PIN PB4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(CH1_PIN, INPUT);
11}
12
13void loop() {
14 unsigned long pulse = pulseIn(CH1_PIN, HIGH, 25000); // ~1000-2000us typical RC pulse range
15 Serial.print("Channel 1: "); Serial.println(pulse);
16 delay(50);
17}
📄 File: 4ch_rc_car_remote_control_27mhz_transmitter_and_receiver_board_with_antenna_-_raspberry_pi_pico.inoRaspberry Pi Pico
406 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Channel 1 signal pin 2 on Raspberry Pi Pico (repeat wiring/code per channel)
6#define CH1_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(CH1_PIN, INPUT);
11}
12
13void loop() {
14 unsigned long pulse = pulseIn(CH1_PIN, HIGH, 25000); // ~1000-2000us typical RC pulse range
15 Serial.print("Channel 1: "); Serial.println(pulse);
16 delay(50);
17}
RC receiver outputs standard servo-style PWM per channel - read it the same way you'd read any RC receiver channel.

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

4CH RC Car Remote Control 27MHz Transmitter and Receiver Board with Antenna متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم IoT and Wireless، بسعر 130,00 EGP. كود المنتج لدينا: EK505. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • الوزن: 1 g

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

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm

Customer Reviews