Display image on EPD using full update.
(self, image)
| 106 | logger.error(f"Error clearing EPD: {e}") |
| 107 | raise |
| 108 | |
| 109 | def display_full(self, image): |
| 110 | """Display image on EPD using full update.""" |
| 111 | try: |
| 112 | self.epd.display(self.epd.getbuffer(image)) |
| 113 | logger.info("Full display update complete.") |
| 114 | except Exception as e: |
| 115 | logger.error(f"Error during full display update: {e}") |
| 116 | raise |
| 117 | |
| 118 | def sleep(self): |
no test coverage detected