Write a small parapgraph of objective for the following:

This is an RTOS based application. That is developing an embedded application in real time scenario. In this RTOS application, the following things going to happen:
1. Project#3 is the basis of this RTOS application.
2. As such, the application is doing the following:
a. Displaying the KNIGHT RIDER pattern and changing the direction based on PUSH button.
b. Toggling the RUN LED at 3 second intervals.
c. Reading the Temperature and Displaying on the Terminal through UART interface.
d. Reading the POT and displaying the value on Terminal through UART interface.
Now, all these will happen in RTOS environment. That is, each of the processes (mentioned above) will happen through TASKS, SEMAPHORE, etc., under the supervision of scheduler.

The objective of this project is to develop an embedded application using an RTOS, with a focus on real-time scenarios. This application is based on Project#3 and will involve several tasks. Firstly, it will display the KNIGHT RIDER pattern, which will change direction based on a PUSH button input. Secondly, it will toggle the RUN LED at regular 3-second intervals. Additionally, it will read the temperature and display it on the terminal through a UART interface. Lastly, it will read the POT value and display it on the terminal through the UART interface as well. All of these processes will be coordinated by the RTOS scheduler, utilizing tasks and semaphores to ensure efficient execution.

can you write this in a shorter paragraph?

The objective of this project is to develop an RTOS-based embedded application that will involve displaying a KNIGHT RIDER pattern with directional changes based on a PUSH button input, toggling an LED at regular intervals, reading temperature and displaying it through a UART interface, and reading the POT value and displaying it through the same interface. These processes will be coordinated through tasks, semaphores, and the RTOS scheduler.