Write an 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.

Objective: Develop an embedded application in a real-time operating system (RTOS) environment to implement the following functionalities:

1. Implement the "KNIGHT RIDER" pattern on a display, which will change direction based on a push button input.
2. Toggle a RUN LED at intervals of 3 seconds.
3. Read the temperature using a sensor and display it on the terminal through a UART interface.
4. Read the POT (Potentialmeter) value and display it on the terminal through a UART interface.

All of these functionalities will be implemented using tasks, semaphores, and other mechanisms provided by the RTOS, ensuring proper scheduling and supervision.