fizban99 / microbit_ssd1306spi

Simple micropython library for the micro:bit to control the SSD1306 display through SPI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Basic micropython library to control the OLED SSD1306 128x64 spi with a micro:bit

This library allows the micro:bit to control the typical low cost 0,96" OLED display sold in Amazon and eBay connected to the default spi pins of the micro:bit. Some sort of breakout is required.

You should connect D0 to 13, D1 to 15, RES to 14 and DC to 16. You also must connect the device’s ground to the micro:bit ground (pin GND) and the device's VCC to the micro:bit VCC.

This library uses the full resolution of the OLED, due to some optimizations that can be done when using SPI instead of I2C.

image

Main features

  • Load a 128x64 bitmap file
  • Set and get pixel value
  • Sprites
  • Text
  • Sample programs demonstrating the different functions

Preparation and displaying of a bitmap image

  1. Create a bitmap with an image editor with only 2 bits per pixel (black and white)
  2. Use the LCDAssistant (http://en.radzio.dxp.pl/bitmap_converter/) to generate the hex data.
  3. Copy the hex data into the bitmap_converter.py file and run it on a computer.
  4. Flash a completely empty file from mu.
  5. Copy the generated file to the micro:bit using the file transfer function in mu
  6. Create a main.py file, import sdd1306spi and use the function show_bitmap to display the file
  7. Move the files main.py, sdd1306spi.py to the micro:bit with the file transfer function in mu
  8. Reset the micro:bit or press CTRL+D in the Repl.

Library usage

initilization

You have to instantiate the SSD1306 object before using the display. This puts the display in its reset status.

clear_oled()

You will typically use this function after instantiating the object, in order to make sure that the display is blank at the beginning.

show_bitmap(filename)

Displays on the OLED screen the image stored in the file filename. The image has to be encode as described in the previous section.

set_px(x, y, color)

Paints the pixel at position x, y (of a 64x32 coordinate system) with the corresponding color (0 dark or 1 lighted).

get_px(x, y)

Returns the color of the given pixel (0 dark 1 lighted)

draw_sprite(x, y, stamp, color, draw=1) ++++++++++++++++++++++++++++++++++++++

Draws the sprite on the screen at the pixel position x, y. The sprite will be printed using OR if color is 1 and AND NOT if color is 0, effectively removing the sprite when color=0.

When drawing a sprite, the contents of the screen just before the first column of the stamp and the content of the screen just after the last column of the sprite is also redrawn. This is done to allow using a function like this to perform a simple movement of a sprite:

The previous function removes a sprite at position x1,y1 and redraws it at position x2, y2. Note that the first draw_sprite() does not refresh the screen. The screen is only refreshed once, with the second draw_sprte(). If the sprite is 5x5 and it is centered within the 8x7 area, the sprite will be properly updated if the distance between the two coordinates is maximum one pixel.

add_text(x, y, text, size=1)

Prints the text given by text at the row x and column y. The screen is divided into 12 columns and 5 rows. If the optional parameter size is set to 2 the the text will be written in double size.

About

Simple micropython library for the micro:bit to control the SSD1306 display through SPI

License:MIT License


Languages

Language:Python 100.0%