This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| en:iot-open:practical:hardware:itt:avr:lcd [2025/08/26 11:10] – created ingmar05 | en:iot-open:practical:hardware:itt:avr:lcd [2025/09/02 12:30] (current) – raivo.sell | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | < | ||
| + | ====== LCD screen ====== | ||
| + | ===== Theory ===== | ||
| + | [{{ : | ||
| + | /*[{{ : | ||
| + | |||
| + | [{{ : | ||
| + | |||
| + | A graphical LCD liquid crystal display is a display that allows displaying pictures and text. Its construction is similar to the alphanumeric LCD, with a difference that on the graphic display, all pixels are divided into a single large matrix. If we are dealing with a monochrome LCD, then a pixel is one square segment. In a color display, a pixel is formed of three subpixels. Each of the three subpixels lets only one colored light pass (red, green, or blue). Since the subpixels are positioned very close to each other, they seem like one pixel. | ||
| + | |||
| + | Monochrome graphic displays usually have a passive matrix, and large color displays, including computer screens, have an active matrix. All information concerning the color of the background and the pixels of the graphic LCDs is similar to that of alphanumeric LCDs. Similar to the alphanumeric displays, graphic displays are also equipped with a separate controller, which takes care of receiving information through the communication interface and generating the electrical field for the segments. | ||
| + | |||
| + | |||
| + | ===== Practice ===== | ||
| + | |||
| + | HomeLab User Interface is an 84×48-pixel monochrome graphic LCD. It is the same display as used in Nokia 3310 mobile phones. The Philips PCD8544 controller is attached to the display, which can be communicated through a SPI-like serial interface. The background lighting of the display module is separately controlled. | ||
| + | |||
| + | First, the graphical LCD screen must be started with // | ||
| + | |||
| + | The following is an example of a time counter. The program counts seconds (approximately), | ||
| + | |||
| + | <code c> | ||
| + | // Example of using the graphic LCD of the HomeLab | ||
| + | // Time of day is displayed on LCD since the beginning of the program | ||
| + | #include < | ||
| + | #include < | ||
| + | #include < | ||
| + | |||
| + | // Main program | ||
| + | int main(void) | ||
| + | { | ||
| + | int seconds = 0; | ||
| + | char text[16]; | ||
| + | |||
| + | // Set-up of the LCD | ||
| + | lcd_gfx_init(); | ||
| + | |||
| + | // Cleaning the screen | ||
| + | lcd_gfx_clear(); | ||
| + | |||
| + | // Switching on the background light | ||
| + | lcd_gfx_backlight(true); | ||
| + | |||
| + | // Displaying the name of the program | ||
| + | lcd_gfx_goto_char_xy(1, | ||
| + | lcd_gfx_write_string(" | ||
| + | |||
| + | // Endless loop | ||
| + | while (true) | ||
| + | { | ||
| + | // Converting the seconds to the form of a clock | ||
| + | // hh:mm:ss | ||
| + | sprintf(text, | ||
| + | (seconds / 3600) % 24, | ||
| + | (seconds / 60) % 60, | ||
| + | seconds % 60); | ||
| + | |||
| + | // Displaying the clock text | ||
| + | lcd_gfx_goto_char_xy(3, | ||
| + | lcd_gfx_write_string(text); | ||
| + | |||
| + | // Adding one second | ||
| + | seconds++; | ||
| + | |||
| + | // Hardware delay for 1000 ms | ||
| + | hw_delay_ms(1000); | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== Task to be implemented ==== | ||
| + | |||
| + | - Combine with LED tasks (traffic light) and show on the LCD screen, which LED is currently active. | ||