### Install Waveshare e-paper package using pip Source: https://github.com/yskoht/waveshare-epaper/blob/main/README.md Installs the waveshare-epaper Python package using pip. This is the primary method for adding the library to your Raspberry Pi environment. ```shell pip install waveshare-epaper ``` -------------------------------- ### Initialize and clear an e-paper display Source: https://github.com/yskoht/waveshare-epaper/blob/main/README.md Shows how to instantiate an e-paper display object using the epaper.epaper() method, specifying the model name (e.g., 'epd7in5'). It then demonstrates the initialization (init()) and clearing (Clear()) of the display. ```python import epaper # For example, when using 7.5inch e-Paper HAT epd = epaper.epaper('epd7in5').EPD() # init and Clear epd.init() epd.Clear() ``` -------------------------------- ### List available e-paper modules with epaper.modules() Source: https://github.com/yskoht/waveshare-epaper/blob/main/README.md Demonstrates how to import the epaper library and call the modules() function to retrieve a list of supported e-paper display models. This helps in identifying the correct model name for subsequent operations. ```python import epaper epaper.modules() ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.