The Adafruit 2.23in Monochrome OLED Bonnet is an add-on board for the Raspberry Pi, designed to provide a high-contrast, high-resolution OLED display for your projects. This display is perfect for adding a small screen to your Raspberry Pi, with 128x32 pixels to display text, graphics, and animations. It's commonly used in wearable tech, small handheld devices, and status display for IoT projects.
Pin Number | Name | Description |
---|---|---|
1 | 3V3 | 3.3V Power Supply |
2 | 5V | 5V Power Supply (Not used by OLED) |
3 | SDA | I2C Data |
4 | 5V | 5V Power Supply (Not used by OLED) |
5 | SCL | I2C Clock |
6 | GND | Ground Connection |
0x3C
. Make sure that no other devices on the I2C bus have the same address.i2cdetect
command to verify that the Raspberry Pi is detecting the OLED Bonnet.Q: Can I use this display with other single-board computers?
A: While designed for the Raspberry Pi, it may be possible to use this display with other single-board computers that support I2C, provided you have the correct software drivers.
Q: How do I install the Adafruit Python library for the OLED Bonnet?
A: You can install the Adafruit Python library using the following commands:
sudo pip3 install adafruit-circuitpython-ssd1306
Q: Can I display images on the OLED Bonnet?
A: Yes, you can display bitmap images, but they need to be converted to a monochrome format suitable for the display's resolution.
Q: How do I control the brightness of the display?
A: The brightness (also known as contrast) can be controlled programmatically through the Adafruit library functions.
For further assistance, refer to the Adafruit forums or the community support channels for the Raspberry Pi.