Home
last modified time | relevance | path

Searched full:display (Results 1 – 25 of 336) sorted by relevance

12345678910>>...14

/Zephyr-Core-2.7.6/drivers/display/
DKconfig1 # Display drivers
6 menuconfig DISPLAY config
7 bool "Display Drivers"
9 Enable display drivers
11 if DISPLAY
14 int "Display devices init priority"
17 Display devices initialization priority.
19 module = DISPLAY
20 module-str = display
23 source "drivers/display/Kconfig.grove"
[all …]
DKconfig.sdl1 # SDL based emulated display configuration options
7 bool "SDL based emulated display"
11 Enable SDL based emulated display compliant with display driver API.
16 string "SDL display device name"
20 int "X resolution for SDL display"
24 int "Y resolution for SDL display"
31 Default pixel format to be used by the display
DKconfig.dummy1 # Configuration options for dummy display
7 bool "Dummy display driver"
9 Enable dummy display driver compliant with display driver API.
14 string "Dummy display device name"
18 int "X resolution for dummy display"
22 int "Y resolution for dummy display"
DKconfig.ili9xxx1 # ILI9XXX display driver configuration options
14 bool "ILI9340 display driver"
18 Enable driver for ILI9340 display driver.
21 bool "ILI9341 display driver"
25 Enable driver for ILI9341 display driver.
28 bool "ILI9488 display driver"
32 Enable driver for ILI9488 display driver.
DKconfig.microbit1 # Microbit display driver configuration options
7 bool "BBC micro:bit 5x5 LED Display support"
12 Enable this to be able to display images and text on the 5x5
13 LED matrix display on the BBC micro:bit.
16 int "Maximum length of strings that can be shown on the display"
DKconfig.st7789v1 # ST7789V display driver configuration options
7 bool "ST7789V display driver"
10 Enable driver for ST7789V display driver.
17 Specify the color pixel format for the ST7789V display controller.
DKconfig.ssd13061 # SSD1306 display controller configuration options
7 bool "SSD1306 display driver"
10 Enable driver for SSD1306 display driver.
22 prompt "Display controller type"
/Zephyr-Core-2.7.6/samples/drivers/display/
Dsample.yaml5 sample.display.shield.adafruit_2_8_tft_touch_v2:
9 tags: display shield
13 sample.display.shield.ssd1306_128x32:
16 tags: display shield
20 sample.display.shield.ssd1306_128x64:
23 tags: display shield
27 sample.display.shield.waveshare_epaper_gdeh0213b1:
33 sample.display.st7789v_tl019fqv01:
36 tags: display shield
40 sample.display.st7789v_waveshare_240x240:
[all …]
DREADME.rst3 Display Sample
9 This sample will draw some basic rectangles onto the display.
20 As this is a generic sample it should work with any display supported by Zephyr.
26 :zephyr-app: samples/drivers/display
36 :zephyr-app: samples/drivers/display
41 List of Arduino-based display shields
/Zephyr-Core-2.7.6/samples/subsys/display/lvgl/
Dsample.yaml6 harness: display
8 tags: samples display gui
9 sample.display.adafruit_2_8_tft_touch_v2:
20 sample.display.waveshare_epaper_gdeh0213b1:
24 sample.display.waveshare_epaper_gdeh0213b72:
28 sample.display.waveshare_epaper_gdeh029a1:
32 sample.display.lvgl.sdl:
35 tags: samples display gui
36 sample.display.buydisplay_2_8_tft_touch_arduino:
40 sample.display.dummy:
[all …]
/Zephyr-Core-2.7.6/include/drivers/
Ddisplay.h9 * @brief Public API for display drivers and applications
16 * @brief Display Interface
17 * @defgroup display_interface Display Interface
31 * @brief Display pixel formats
33 * Display pixel format enumeration.
59 * Electrophoretic Display.
74 * @brief Enumeration with possible display orientation
84 /** @brief Structure holding display capabilities. */
86 /** Display resolution in the X direction */
88 /** Display resolution in the Y direction */
[all …]
/Zephyr-Core-2.7.6/include/display/
Dmb_display.h2 * @brief BBC micro:bit display APIs.
15 * @brief BBC micro:bit display APIs
16 * @defgroup mb_display BBC micro:bit display APIs
32 * @brief Representation of a BBC micro:bit display image.
51 * @brief Display mode.
59 /** Display images sequentially, one at a time. */
62 /** Display images by scrolling. */
65 /* Display flags, i.e. modifiers to the chosen mode */
99 * @brief Opaque struct representing the BBC micro:bit display.
105 * https://lancaster-university.github.io/microbit-docs/ubit/display/
[all …]
Dgrove_lcd.h15 * @brief Display Drivers
16 * @defgroup display_interfaces Display Drivers
22 * @brief Grove display APIs
23 * @defgroup grove_display Grove display APIs
34 * @param data the ASCII text to display
50 * @brief Clear the current display
64 * @brief Function to change the display state.
66 * of the display as per needed. Controlling things like powering on or off
67 * the screen, the option to display the cursor or not, and the ability to
77 * @brief return the display feature set associated with the device
[all …]
/Zephyr-Core-2.7.6/samples/subsys/display/cfb_custom_font/src/
Dmain.c9 #include <display/cfb.h>
24 const struct device *display = DEVICE_DT_GET(DISPLAY_NODE); in main() local
27 if (!device_is_ready(display)) { in main()
28 printk("Display device not ready\n"); in main()
31 err = cfb_framebuffer_init(display); in main()
36 err = cfb_framebuffer_clear(display, true); in main()
41 err = cfb_print(display, "123456", 0, 0); in main()
43 printk("Could not display custom font (err %d)\n", err); in main()
46 err = cfb_framebuffer_finalize(display); in main()
/Zephyr-Core-2.7.6/tests/lib/gui/lvgl/
Dtestcase.yaml3 tags: display gui
7 tags: display gui
14 tags: display gui
22 tags: display gui
30 tags: display gui
35 tags: display gui
40 tags: display gui
45 tags: display gui
/Zephyr-Core-2.7.6/lib/gui/lvgl/
DKconfig.graphical8 string "Display device name"
9 default "DISPLAY"
11 Name of the display device to use for rendering.
120 int "Small display limit"
123 According to the width of the display (hor. res. / dpi) the displays fall
127 int "Medium display limit"
130 According to the width of the display (hor. res. / dpi) the displays fall
134 int "Large display limit"
137 According to the width of the display (hor. res. / dpi) the displays fall
/Zephyr-Core-2.7.6/samples/subsys/display/cfb_shell/
DREADME.rst17 :zephyr-app: samples/display/cfb_shell
42 **init**: should be called first to initialize the display.
50 Display Cleared
52 **get_device**: prints the display device name.
61 **get_param**: get the display parameters where height, width and ppt
98 **invert**: invert the pixel color of the display.
109 of the display the remaining characters will be displayed on the next line. The
120 marks when it contains spaces. If the text hits the edge of the display, the
122 until it hits the display boundary, last column for horizontal and last row
124 vertically or horizontally on the display.
[all …]
Dsample.yaml2 harness: display
3 tags: display
8 sample.display.cfb_shell.ssd1306:
12 sample.display.cfb_shell.ssd16xx:
/Zephyr-Core-2.7.6/dts/bindings/display/
Dilitek,ili9xxx-common.yaml5 description: ILI9XXX display controllers common properties.
35 Display pixel format. Note that when RGB888 pixel format is selected
48 Display rotation (CW) in degrees.
50 display-inversion:
53 Display inversion mode. Every bit is inverted from the frame memory to
54 the display.
Dsharp,ls0xx.yaml4 description: Sharp memory display controller
35 datasheet of particular display. Higher frequency gives better
41 description: DISPLAY pin
43 The DISPLAY pin controls if the LCD displays memory contents or
45 initialization. display blanking apis can be used to control it.
/Zephyr-Core-2.7.6/samples/subsys/display/cfb/
Dsample.yaml2 harness: display
3 tags: display
8 sample.display.cfb.ssd1306:
12 sample.display.cfb.ssd16xx:
/Zephyr-Core-2.7.6/samples/drivers/misc/ft800/src/
Dmain.c14 * @file Display a counter using FT800.
37 /* To get touch events calibrate the display */ in main()
48 /* Start Display List */ in main()
56 /* Display the counter */ in main()
60 /* Display the hello message */ in main()
66 /* Display value set with buttons */ in main()
76 /* Finish Display List */ in main()
78 /* Display created frame */ in main()
/Zephyr-Core-2.7.6/boards/shields/ls0xx_generic/
DKconfig.defconfig6 if DISPLAY
17 string "Display device name"
29 int "Display buffer percentage"
46 endif # DISPLAY
/Zephyr-Core-2.7.6/samples/subsys/display/cfb_custom_font/
DREADME.rst13 to show the font elements on the display of a supported board.
16 :zephyr_file:`samples/display/cfb_custom_font`.
28 This overlay config enables support for SSD16XX display controller
32 Example building for the reel_board with SSD16XX display support:
35 :zephyr-app: samples/display/cfb_custom_font
/Zephyr-Core-2.7.6/samples/boards/bbc_microbit/display/
Dsample.yaml2 name: BB micro:bit Display
4 sample.board.bbc_microbit.display:
6 tags: display

12345678910>>...14