Infrared remote control

This tutorial demonstrates: Print the key value of infrared remote control via serial port (USART1)

1、software-hardware

2、Brief principle

2.1、Hardware schematic diagram

image-20231027114521990

2.2、Physical connection diagram

Integrated infrared receiver (HS0038B) on the development board

image-20231027114825021

2.3、Principle of control

The receiving of infrared data is triggered by interruption, and the data is judged to be 0 or 1 according to the high level time of the output pin of the infrared receiver, so as to realize the data reading of the key value of the infrared remote control.

FormatRole
Boot codeIdentifies the beginning of the instruction
Address code (user code)Identifies the device address of the remote control
Address inverse codeEnhance data transmission reliability
Data codeSpecific remote control instructions
Data inverse codeData inverse code

image-20231027121327749

image-20231027151422580

0:38KHz carrier of 560us + 560us of the carrier-free interval composition

1:38KHz carrier of 560us + carrier-free interval composition of 1680us

0:560us low level + 560us high level

1:560us low level + 1680us high level

When the IR receiver receives the IR carrier signal, the DATA output pin of HS0038B outputs a low level

When the IR receiver does not receive the IR carrier signal, the DATA output pin of HS0038B outputs a high level

Infrared receiver (development board integrated)Corresponding pin
HS0038BPG11(Infrared receiver signal output pin)

3、Engineering configuration

Project Configuration: Prompts for configuration options in the STM32CubeIDE project configuration process

3.1、Notes

Omitted project configuration: New project, chip selection, project configuration, SYS for pin configuration, RCC configuration, clock configuration, and project configuration content

The project configuration part, which is not omitted, is the key point to configure in this tutorial.

3.2、Pin configuration

image-20231027142406972

image-20231027143928611

image-20231027143832876

image-20231024193047747

4、Main Function

This paper mainly introduces the functional code written by users. Detailed code can be opened by yourself in the project file we provide, and enter the Bsp folder to view the source code. .

User function

Many of the common HAL library functions were covered in Chapter 3, but they will not be covered here.

function:InfraredRecvLowTime

Function prototypesuint16_t InfraredRecvLowTime(void)
Functional DescriptionCalculate the duration of the low level
Input parametersNone
Return valueCount value (about 17us for one count)

function:InfraredRecvHighTime

Function prototypesuint16_t InfraredRecvHighTime(void)
Functional DescriptionCalculate the duration of the high level
Input parametersNone
Return valueCount value (about 17us for one count)

function:InfraredDataRecv

Function prototypesuint8_t InfraredDataRecv(void)
Functional DescriptionObtain infrared remote control data
Input parametersNone
Return valueThe corresponding key value of the remote control

5、Experimental phenomenon

After downloading the program successfully, press the RESET button of the development board to observe the phenomenon of serial debugging assistant

phenomenon:

Press different key values on the infrared remote control, and the serial port will print data corresponding to different key values.

image-20231111152042470