12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # Copyright (c) 2014 Adafruit Industries
- # Author: Tony DiCola
- #
- # Permission is hereby granted, free of charge, to any person obtaining a copy
- # of this software and associated documentation files (the "Software"), to deal
- # in the Software without restriction, including without limitation the rights
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- # copies of the Software, and to permit persons to whom the Software is
- # furnished to do so, subject to the following conditions:
- #
- # The above copyright notice and this permission notice shall be included in
- # all copies or substantial portions of the Software.
- #
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- # THE SOFTWARE.
- # This example is for use on (Linux) computers that are using CPython with
- # Adafruit Blinka to support CircuitPython libraries. CircuitPython does
- # not support PIL/pillow (python imaging library)!
- from board import SCL, SDA
- import busio
- from PIL import Image
- import adafruit_ssd1306
- # Create the I2C interface.
- i2c = busio.I2C(SCL, SDA)
- # Create the SSD1306 OLED class.
- # The first two parameters are the pixel width and pixel height. Change these
- # to the right size for your display!
- disp = adafruit_ssd1306.SSD1306_I2C(128, 64, i2c)
- # Note you can change the I2C address, or add a reset pin:
- # disp = adafruit_ssd1306.SSD1306_I2C(128, 32, i2c, addr=0x3c, reset=reset_pin)
- # Clear display.
- disp.fill(0)
- disp.show()
- # Load image based on OLED display height. Note that image is converted to 1 bit color.
- #if disp.height == 64:
- # image = Image.open("happycat_oled_64.ppm").convert("1")
- #else:
- # image = Image.open("happycat_oled_32.ppm").convert("1")
- # Alternatively load a different format image, resize it, and convert to 1 bit color.
- image = Image.open('/home/pi/OnionPi/tor.png').resize((disp.width, disp.height), Image.ANTIALIAS).convert('1')
- # Display image.
- disp.image(image)
- disp.show()
|