Send trigger command.
(self)
| 405 | return stb |
| 406 | |
| 407 | def trigger(self): |
| 408 | """Send trigger command. |
| 409 | """ |
| 410 | |
| 411 | flags = 0 |
| 412 | |
| 413 | error = self.client.device_trigger(self.link, flags, self.lock_timeout, self.io_timeout) |
| 414 | |
| 415 | if error: |
| 416 | raise Vxi11Error("error triggering: %d" % error) |
| 417 | |
| 418 | def clear(self): |
| 419 | """Send clear command. |
nothing calls this directly
no test coverage detected