Lesson14 Car central control screen

From Elecrow
Jump to navigation Jump to search

Project Description:

The goal of this project is to design and implement a user interface (UI) for a car's central control screen that can display the speed and RPM, and use a counting sensor to control this information. In addition, the UI includes image buttons to display the direction of the turn signal, and a slider to display the car's fuel level. Finally, there is an electric steering module used to simulate the function of the windshield wipers.
The UI design for this project needs to consider user usability and readability, so that drivers can quickly obtain the necessary information while driving. To achieve this, the UI needs to present information in a simple and intuitive way, and use easily understood icons and symbols to represent control functions. This lesson will use the esp32 spi terminal screen as an example to introduce the project.

Introduction to Knowledge Points:

Here are some basic introductions to the functions used in the project:
void lv_slider_set_value(lv_obj_t * slider, int16_t value, lv_anim_enable_t anim_en)
In this function, the first parameter 'slider' is a pointer to the slider control object that needs to be set, the second parameter 'value' is the value to be set, and the third parameter 'anim_en' specifies whether to use animation effects to change the value of the slider. If set to LV_ANIM_OFF, no animation effect will be used, and the value of the slider will be directly set to the specified 'value'.
For example, to set the value of a slider control object named "ui_Slider2" to 50 without using animation effects, the following code can be used:
lv_slider_set_value(ui_Slider2, 50, LV_ANIM_OFF);
Note that the lv_slider_create() function needs to be used to create the slider control object and add it to the screen object before using lv_slider_set_value() to set its value.
The lv_img_set_src(lv_obj_t * img, const void * src) function is used to set the source data of an image object. The 'src' parameter can be image source data in various formats, such as:
- The file path of an image file stored in the file system.
- A pointer to a memory block containing image data in a format supported by LVGL.
- The URL of an image file that can be accessed through the network.
After setting the image source data, LVGL will automatically decode and display the image on the image object specified by the 'img' parameter.
It should be noted that the 'src' parameter is declared as const void *, which means that the function will not modify the data pointed to by 'src'. This is a good practice for functions that only need to read input data, as it can prevent the function from accidentally modifying the input data.
In general, the lv_img_set_src() function is a useful function for displaying various image data on embedded systems and displays, allowing developers to display various image data on embedded systems and displays.
Required hardware modules:
The counter (photoelectric counter) is a digital circuit used to count the number of electrical signals. In cars, counters are commonly used to measure vehicle speed and engine RPM. The counter can receive pulse signals from counting sensors and convert them into digital counting values. Counters usually have a reset function that can reset the counter's value to zero when needed.
The button is a switch device used to control the on-off state of the circuit. In the car's central control screen, buttons can be used to control the on-off state of the turn signal. When the button is pressed, it connects the circuit, allowing current to flow. When the button is released, the circuit is disconnected, stopping the flow of current.
The servo module is a device used to control mechanical motion, usually used to control the steering wheel of a car. The servo module can receive signals from the controller and control the position of the servo according to the size of the signal. The servo module usually has an angle limit that can limit the rotation range of the servo. In the car's central control screen, the servo module can be used to control the rotation of the windshield wipers, thereby controlling the movement of the wipers.
All of these hardware modules play an important role in the UI design of the car's central control screen. Through their collaboration, the UI design can accurately display information such as vehicle speed, RPM, and fuel level, and also implement functions such as button control of turn signals and servo module control of windshield wiper rotation.

Project steps:

Note: Add the provided image material files first! (Add according to the actual material provided)
14-1.png
1 Create a new project in Squareline Studio as before. Firstly, select the Arduino module, and then do some simple settings for the project, such as the project name and display size (480*320), choose 16-bit color, etc. Click create to continue.
14-2.png
2 Add panels, labels, sliders, and image components, adjust and set their positions according to the diagram hierarchy.
14-3.png
3 Arrange each component in the correct position according to the diagram and add image material to the image components.
14-4.png
4 Make simple settings for the slider component:
①Set the main background color to transparent.
14-5.png
②Set the indicator and add a background image.
14-6.png
③Finally, set the KNOB.
14-7.png
5 Perform the same setting for the Slider module on the right, or copy the Slider from step 4 and change the background image.
14-8.png
6 Set the two labels separately and change their values according to the values of the two sliders. Add an event in the Slider. Set the two labels the same way.
14-9.png
14-10.png
7 Set the slider for the excess fuel, set it to transparent without background image.
14-11.png
14-12.png
14-13.png
14-14.png
8 Set the left and right turn arrows. Use a transparent image and set the position, then add an event for both images and save them in the program.
14-15.png
14-16.png
14-17.png
9 Finally, set the added switch. Simply add an event.
14-18.png
14-19.png
Program part:
10 The slider slides according to the value of the counting sensor, displaying the RPM and vehicle speed. The data is only simulated and may differ from the actual data.
14-20.png
The counterSensor function checks the value of the counting sensor. The function details are as follows:
14-21.png
11 The left and right turn program. The turn image is displayed when the left or right touch sensor is triggered, and is not displayed when it is not triggered.
14-22.png
12 Windshield wiper servo control. When flag equals 1, trigger the servo to simulate the windshield wiper. The setting of flag is consistent with lesson 12. When the UI switch is triggered, set the value of flag to 1, otherwise set it to 0.
14-23.png
Running effect:
After the program is successfully downloaded, check the effect on the screen.
14-24.png
14-25.png

Summary:

In summary, this project aims to design and implement a user-friendly car central control screen UI that can display vehicle speed, RPM, and fuel level, as well as other functions such as turn signals and fan simulation. In actual applications, it can be modified and expanded according to needs, and more settings and functions can be added.


HMI Display Tutorial Contents