Initialize pager hardware. Call before any other functions.
(self)
| 294 | |
| 295 | # Initialization |
| 296 | def init(self): |
| 297 | """Initialize pager hardware. Call before any other functions.""" |
| 298 | result = _lib.pager_init() |
| 299 | if result == 0: |
| 300 | self._initialized = True |
| 301 | return result |
| 302 | |
| 303 | def cleanup(self): |
| 304 | """Clean up and release hardware. Always call on exit.""" |
no outgoing calls
no test coverage detected