Writes image data to Stream Deck device's lcd strip/screen as region. Only Stream Deck Plus supports writing LCD regions, for Stream Deck Neo use write_lcd_fill
(&self, x: u16, y: u16, rect: &ImageRect)
| 126 | /// Writes image data to Stream Deck device's lcd strip/screen as region. |
| 127 | /// Only Stream Deck Plus supports writing LCD regions, for Stream Deck Neo use write_lcd_fill |
| 128 | pub async fn write_lcd(&self, x: u16, y: u16, rect: &ImageRect) -> Result<(), StreamDeckError> { |
| 129 | let device = self.device.lock().await; |
| 130 | block_in_place(move || device.write_lcd(x, y, rect)) |
| 131 | } |
| 132 | |
| 133 | /// Writes image data to Stream Deck device's lcd strip/screen as full fill |
| 134 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected