Size of the LCD strip on the device
(&self)
| 207 | |
| 208 | /// Size of the LCD strip on the device |
| 209 | pub fn lcd_strip_size(&self) -> Option<(usize, usize)> { |
| 210 | match self { |
| 211 | Kind::Plus => Some((800, 100)), |
| 212 | Kind::PlusXl => Some((100, 1200)), |
| 213 | Kind::Neo => Some((248, 58)), |
| 214 | _ => None, |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | /// Tells if the Stream Deck kind has a screen |
| 219 | pub fn is_visual(&self) -> bool { |
no outgoing calls
no test coverage detected