Returns firmware version of the StreamDeck
(&self)
| 85 | |
| 86 | /// Returns firmware version of the StreamDeck |
| 87 | pub async fn firmware_version(&self) -> Result<String, StreamDeckError> { |
| 88 | let device = self.device.lock().await; |
| 89 | block_in_place(move || device.firmware_version()) |
| 90 | } |
| 91 | |
| 92 | /// Reads button states, awaits until there's data. |
| 93 | /// Poll rate determines how often button state gets checked |
nothing calls this directly
no outgoing calls
no test coverage detected