More info and updates https://rogerbit.com/wprb/2024/09/motor-paso-a-paso-x-infrarrojo/
In this project, we will learn how to control a 28BYJ-48 stepper motor using an infrared remote controller and an Arduino. The motor will be able to rotate in both directions, stop, and adjust its speed using commands sent from the remote controller. This project is ideal for applications where precise wireless control of a stepper motor is needed, such as in robots, cameras, or automation systems.
The 28BYJ-48 is a low-cost stepper motor that runs on the ULN2003 driver. This driver allows us to easily control the motor from a microcontroller such as the Arduino. In addition, we use the IRremote library to receive infrared signals from the remote control, allowing us to control the motor wirelessly and without physical buttons.
In this project, we implemented the following controls:
- Right turn : By pressing a specific button, the motor will continuously rotate in a clockwise direction until another command is sent.
- Left turn : With another button, the motor will turn in the opposite direction.
- Stop : A third button will stop the motor.
- Speed Adjustment : The motor speed can be increased or decreased in a range of 1 to 10 using two additional buttons on the remote control.
During the project, we use the Arduino serial monitor to display the received infrared code, allowing us to easily identify the control buttons and verify their operation. This project is modular and allows adjustments according to user needs, such as changing the maximum speed or adjusting the remote control codes.
Arduino mini proSocket for arduino nano
ky-022 infrared receiver module
Size: 6.4*7.4*5.1MM, acceptance angle 90°, working voltage 2.7-5.5V.Frequency 37.9KHZ, receiving distance 18m.
Daylight rejection up to 500LUX, electromagnetic interference capability, built-in infrared dedicated IC.Widely used: stereo, TV, VCR, CD, set-top boxes, digital photo frame, car audio, remote control toys, satellite receivers, hard disk, air conditioning, heating, fans, lighting and other household appliances.
Pinout:
1 …. GND (-)
2 …. + 5V
3 …. Output (S)
Stepper motor 28BYJ-48
The parameters of this stepper motor are:
- Model: 28BYJ-48 – 5V
- Nominal voltage: 5V (or 12V, value indicated on the back).
- Number of phases: 4.
- Speed reducer: 1/64
- Step angle: 5.625° / 64
- Frequency: 100Hz
- DC resistance: 50Ω ±7 % (25° C)
- Frequency with traction: > 600Hz
- Non-traction frequency: > 1000Hz
- Traction torque: >34.3mN.m (120Hz)
- Self-positioning torque: >34.3mN.m
- Torque with friction: 600-1200 gf.cm
- Torque drag: 300 gf.cm
- Insulation resistance > 10MΩ (500V)
- Electrical insulation: 600VAC/1mA/1s
- Insulation grade: A
- Temperature rise: < 40K (120Hz)
- Noise: < 35dB (120Hz, no load, 10cm)
ULN2003APG
Main specifications:
- 500 mA nominal collector current (single output)
- 50V output (there is a version that supports 100V output)
- Includes output flyback diodes
- TTL and 5-V CMOS logic compatible inputs
Infrared remote control
PCB
Download gerber file –> ir alarm pcb
Circuit
- Connect the 4 pins of the motor to the outputs of the ULN2003 driver. These are usually the IN1, IN2, IN3 and IN4 pins.
- Connect pins IN1 to D6, IN2 to D7, IN3 to D8, and IN4 to D9 on the Arduino board.
- Connect the IR receiver signal pin to the D2 pin on the Arduino.
- Connect the power and ground of the motor and IR receiver to 5V and GND respectively.
- IRremote : This library is used to receive infrared signals from the remote controller. To install it, open the Arduino IDE and go to Sketch > Include Library > Manage Libraries. Search for “IRremote” and install it.
- Stepper : It is a standard library that is already included in the Arduino IDE, so you do not need to install anything additional to control the motor.
Comments
Please log in or sign up to comment.