Play a simple beep (blocking).
(self, freq, duration_ms)
| 456 | return bool(_lib.pager_audio_playing()) |
| 457 | |
| 458 | def beep(self, freq, duration_ms): |
| 459 | """Play a simple beep (blocking).""" |
| 460 | _lib.pager_beep(freq, duration_ms) |
| 461 | |
| 462 | def play_rtttl_sync(self, melody, with_vibration=False): |
| 463 | """Play RTTTL synchronously (blocking).""" |