Skip to content

Latest commit

 

History

History
178 lines (122 loc) · 5.11 KB

car_remote_control.rst

File metadata and controls

178 lines (122 loc) · 5.11 KB

Note

Hello, welcome to the SunFounder Raspberry Pi & Arduino & ESP32 Enthusiasts Community on Facebook! Dive deeper into Raspberry Pi, Arduino, and ESP32 with fellow enthusiasts.

Why Join?

  • Expert Support: Solve post-sale issues and technical challenges with help from our community and team.
  • Learn & Share: Exchange tips and tutorials to enhance your skills.
  • Exclusive Previews: Get early access to new product announcements and sneak peeks.
  • Special Discounts: Enjoy exclusive discounts on our newest products.
  • Festive Promotions and Giveaways: Take part in giveaways and holiday promotions.

👉 Ready to explore and create with us? Click [] and join today!

9. Remote Control

This kit comes with an IR receiver, which allows you to use an IR remote control to control the movement of the car.

Required Components

In this project, we need the following components.

It's definitely convenient to buy a whole kit, here's the link:

Name ITEMS IN THIS KIT LINK
3 in 1 Starter Kit 380+

You can also buy them separately from the links below.

COMPONENT INTRODUCTION PURCHASE LINK
cpn_uno
cpn_l9110 -
cpn_tt_motor -
cpn_led
cpn_receiver -

Wiring

Now build the circuit according to the diagram below.

IR Receiver R4 Board
OUT 12
GND GND
VCC 5V
LED R4 Board
Anode(The longer pin) 13
Cathode GND

image

Code

Note

  • Open the 9.remote_control.ino file under the path of 3in1-kit\car_project\9.remote_control.
  • Or copy this code into Arduino IDE.
  • The IRremote library is used here, you can install it from the Library Manager.

    image

After the code is uploaded successfully, press the button on the remote control, the LED will blink once to represent that the signal has been received, and the car will move according to the button you pressed. You can press the following keys to control the car.

  • +: Accelerate
  • -: Decelerate
  • 1: Forward to the left
  • 2: Forward
  • 3: Forward to the right
  • 4: Turn left
  • 6: Turn right
  • 7: Backward to the left
  • 8: Backward
  • 9: Backward to the right

How it works?

The effect of this project is to make the car move by reading the key value of the IR remote control. In addition, an LED is added to indicate that the IR signal has been successfully received.

  1. Import the IRremote library, you can install it from the Library Manager.

    #include <IRremote.h>
    
    const int IR_RECEIVE_PIN = 12;  // Define the pin number for the IR Sensor
  2. Initializes serial communication at a baud rate of 9600. Initializes the IR receiver on the specified pin (IR_RECEIVE_PIN) and enables LED feedback (if applicable).

    ...
    
    void setup() {
    
        ...
        //IR remote
        IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);  // Start the IR receiver // Start the receiver
        Serial.println("REMOTE CONTROL START");
    
    }
  3. When you press the keys on the remote control, the infrared receiver will know which key is pressed, and then the car will move according to the corresponding key value.

    void loop() {
    
        if (IrReceiver.decode()) {
            //    Serial.println(results.value,HEX);
            String key = decodeKeyValue(IrReceiver.decodedIRData.command);
            if (key != "ERROR") {
            Serial.println(key);
    
                if (key == "+") {
                    speed += 50;
                } else if (key == "-") {
                    speed -= 50;
                } else if (key == "2") {
                    moveForward(speed);
                    delay(1000);
                ...
                }
                IrReceiver.resume();  // Enable receiving of the next value
    
        }
    }
    • Checks if an IR signal is received and successfully decoded.
    • Decodes the IR command and stores it in key using a custom decodeKeyValue() function.
    • Checks if the decoded value is not an error.
    • Prints the decoded IR value to the serial monitor.
    • Resumes IR signal reception for the next signal.