Git Product home page Git Product logo

rpi_i2c_oled's Introduction

IC2 OLED controller for Raspberry PI

Python library to enable 128x32 pixel OLED for Raspberry Pi (both 32 and 64bit).

This repository has been broken out to work as a standalone service and will work on a standard Raspberry Pi running Raspian.

Buy Me A Coffee

release downloads

Some Teaser Screenshots.

Welcome HA Splash CPU Stats RAM Stats Storage Stats Network Stats Exit Screen
Welcome Splash CPU Stats RAM Stats Storage Stats Network Stats Exit

Custom Screen & Static Text Variables

Aswell as the above screens, you can configure a static custom screen which can be fixed or animated.

If the configured text is greater than the screen size, it will scroll across the screen unless you configure it to display as lines.

Scrolling animations also supports configurable apmlitude enabling the text to wave up and down as it scrolls.

Exit Welcome

This screen can take variables to help personalise your view:

"Static_Screen_Text": "Today is {datetime}, running hassio verion {hassio.os.version} on {hostname} with IP {ip}"

The following variables are supported

Variable Description
{datetime} Displays the current datetime based on the defined format specified in the DateTime_Format config option.
{hostname} Displays the current hostname of the host device
{ip} Displays the host device IP
{hassio.info.property} Fetches a specified property from Home Assistants supervisor API (e.g. http://supervisor/os/info). You can state the namespace and property which will populate with the responding value. This must be fixed with hassio first, followed by the namespace (e.g. os, network etc), then the property e.g. hassio.os.latest_version will call http://supervisor/os/info and display the latest_version value.


Adafruit Python SSD1306

This addon leverages the original Adafruit Python SSD1306 and GPIO libraries, which have been deprecated. However, I have taken the nessassary parts out of this and bundled them into this I2C module avoiding the need for GPIO and relying on the Raspberry Pi's I2C setup.

Original Repo: https://github.com/adafruit/Adafruit_Python_SSD1306

Originally designed specifically to work with the Adafruit SSD1306-based OLED displays ----> https://www.adafruit.com/categories/98

Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!

Gareth Cheyne & Ultronics

Special thanks to Gareth Cheyne for his intial version of this project. After the removal of GPIO support from Home Assistant, the referenced addon no longer worked for me, so I took the initial project apart, and smashed it together with the Adafruit I2C libraries removing the GPIO requirements.

Additionally, the original build didn't work on 64bit versions of the Raspberry Pi, nor would it work as a stand alone service.

Home Assistant Support

This repository has been broken out to work as a standalone service and will work on a standard Raspberry Pi running Raspian.

Any screens which are dependent on Home Assistant (e.g. Splash) will be automatically disabled

Home Assistant variant of this build can be accessed from HomeAssistant_Addons

Hardware Setup

You can use 0.91 Inch 128X32 I2C module, as long as it is registered on /dev/i2c-1 which is the Rasperry Pi default.

I purchased this MakerHawk I2C OLED Display Module I2C Screen Module 0.91" 128X32 I2C

Pin setup:

- PIN1 : Power (3.3V / VCC)
- PIN3: SDA (I2C Data)
- PIN5: SCL (I2C Clock)
- PIN14: Ground (0V)

Enable I2C on the Raspberry Pi

sudo raspi-config
# Interface Options > I2C

One-Step Automated Install

Those who want to get started quickly and conveniently may install the RPI_I2C_OLED using the following command:

curl -sSL https://raw.githubusercontent.com/crismc/rpi_i2c_oled/v1.0.2/basic-install.sh | sudo bash

This will download the latest release, and install it as a service. Once run, you can control the oled service by the following:

sudo service oled start
sudo service oled stop
sudo service oled restart

Installing From Source

Initial apt-get installs:

sudo apt-get install i2c-tools git vim

Test I2C device is working:

$ i2cdetect -y 1

Install Python3 dependencies

sudo apt-get install python3-dev python3-smbus python3-pil

Checkout this code

git clone [email protected]:crismc/rpi_i2c_oled.git
cd rpi_i2c_oled

Test OLED

cd rpi_i2c_oled
python3 display.py

Create a service

Copy the repo file to /etc:

sudo cp -ri ../rpi_i2c_oled /etc

Create a sym link of the service file in /etc/systemd/system, and reload it

sudo ln -s /etc/rpi_i2c_oled/oled.service /etc/systemd/system/oled.service
sudo systemctl daemon-reload

Test it out

sudo service oled start
sudo service oled stop
sudo service oled restart

Start on boot

sudo systemctl enable oled.service

Configuration Options

You can modify the display of the content by editing the options.json file.

By default the options.json is loaded from the same directory as the display.py.

Note: The keys are case insensitive

If you want to change this location, simply pass in the path to the desired config using the flags -c or --config:

python3 display.py -c /path/to/options.json

or

python3 display.py --config /path/to/options.json
Name Type Requirement Description Default
i2c_bus int Required I2C bus number. /dev/i2c-[bus number] 1
Temperature_Unit string Required Display the CPU temperature in C or F C
Rotate int Optional Rotates the screen by the number of degrees provided counter clockwise around its centre (e.g. 180 displays the screen upside down). 0
Default_Duration int Required How long in seconds to display each screen by default. Ignored if specified on specific screen 10
DateTime_Format string Optional Format of the {datetime} static text variable %d/%m/%Y %H:%M:%S
Graceful_Exit_Text string Optional Text to display when the service is exited. Accepts same variables as the custom screen. Exited at {datetime}
Static_Screen_Text string Optional Text to display when the Show_Static_Screen is enabled. Accepts all static text variables. Hassio verion {hassio.os.version} on {hostname} with IP {ip}
Static_Screen_Text_NoScroll boolean Optional Disable the scrolling animation if the static text its too large to fit. If set to true, make a best effort to stack the text as centered lines false
Scroll_Amplitude int Optional Amount of wave action the scrolling animation text has. The bigger the number, the bigger the wave. 6
Show_Static_Screen boolean Required Show the static screen with the specified custom text false
Show_Welcome_Screen boolean Required Show the animated Welcome to hostname screen true
Welcome_Screen_Text string Optional Text to display when the Show_Welcome_Screen is enabled. Accepts all static text variables. Welcome to {hostname}
Show_Splash_Screen boolean Required Show the Home Assistant core and version screen. I you're not using Home Assistant, leave this false false
Show_Network_Screen boolean Required Show the Network Information screen true
Show_CPU_Screen boolean Required Show the CPU Information screen true
Show_Memory_Screen boolean Required Show the Memory Information screen true
Show_Storage_Screen boolean Required Show the Storage Information screen true
Screenshot boolean or string Optional Saves a screenshot of the screen to the specified path, or to './img/examples/' if set to True false
*_Screen_Limit int Optional Number of times to show the screen in the cycle. Once limit is reached, display will no longer appear null
*_Screen_Duration int Optional How long in seconds to display the screen 10


Logs & Debugging

As logging is initiated before the party begins, log levels are defined outside of the options.json.

Therefore, to enable debugging, when running display.py add -d or --debug to the command.

e.g.:

$ python3 display.py -d
INFO:Config:Loading config: /etc/rpi_i2c_oled/options.json
INFO:Config:Home Assistant is not supported on this instance
INFO:Config:'welcome' limited to 5 iterations
INFO:__main__:'welcome' is being processed
INFO:Screen:'WelcomeScreen' created
INFO:Screen:'WelcomeScreen' rendering



Legal Stuff Required By Adafruit

As part of the library leveraged to produce this service, the below text needs to be copied... (yawn)

However, you can ignore the install instructions below as they've been replaced by the above.

Original Adafruit Repository

DEPRECATED LIBRARY Adafruit Python SSD1306

his library has been deprecated! We are leaving this up for historical and research purposes but archiving the repository.

We are now only supporting the use of our CircuitPython libraries for use with Python.

Check out this guide for info on using OLEDs with the CircuitPython library: https://learn.adafruit.com/monochrome-oled-breakouts/python-wiring


Python library to use SSD1306-based 128x64 or 128x32 pixel OLED displays with a Raspberry Pi or Beaglebone Black.

Designed specifically to work with the Adafruit SSD1306-based OLED displays ----> https://www.adafruit.com/categories/98

Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!

Installing

sudo python -m pip install --upgrade pip setuptools wheel
sudo pip install Adafruit-SSD1306

Or alternatively:

sudo python -m pip install --upgrade pip setuptools wheel
git clone https://github.com/adafruit/Adafruit_Python_SSD1306.git
cd Adafruit_Python_SSD1306
sudo python setup.py install

Copying

Written by Tony DiCola for Adafruit Industries. MIT license, all text above must be included in any redistribution

rpi_i2c_oled's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.