driver for micropython compatible with ssd1306 OLED displays.
Project description
SSD1306 Library
This repository contains a modified version of the micropython-ssd1306 library with the main objective of simplifying the installation process. This project has removed support for SPI and retains only the I2C functionality from the original library. All credits and acknowledgments go to the original author.
The focus of this repository is to prepare the library for uploading to PyPI and renaming it before the upload.
Test for the DUALMCU board:
import machine
i2c = machine.I2C(0, sda=machine.Pin(21), scl=machine.Pin(22))
print(i2c.scan())
The next diagram illustrates the communication between one of the two microcontrollers and the ability to display a default text on the OLED screen.
Code example
'''
Unit Electronics 2023
(o_
(o_ //\
(/)_ V_/_
tested code mark
version: 0.0.1
revision: 0.0.1
'''
import machine
from ocks import SSD1306_I2C
i2c = machine.I2C(0,sda=machine.Pin(21), scl=machine.Pin(22))
oled = SSD1306_I2C(128, 32, i2c)
oled.fill(1)
oled.show()
oled.fill(0)
oled.show()
oled.text('UNIT', 50, 10)
oled.text('ELECTRONICS', 25, 20)
oled.show()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ocks-0.4.tar.gz
.
File metadata
- Download URL: ocks-0.4.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5b8adf519aef161fc437b4afe5d929afffc54ea8b8d146e4373e041893559dd |
|
MD5 | cfe3ce97add60a23456f8cc403a24229 |
|
BLAKE2b-256 | e98dbbafb4fb23234cfef207625bd101e9ea6f8554d482ee7c6ecbdf39e17475 |
File details
Details for the file ocks-0.4-py3-none-any.whl
.
File metadata
- Download URL: ocks-0.4-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d247cb406ed880cdd94a11e912507c0b8210c45e1bdb17f9ede377f34e7f6f69 |
|
MD5 | 229c12d25ccce7b2a72ce5394fe5ac0d |
|
BLAKE2b-256 | 67758b839fdfe6a8b3ddc7d1c66e0cd4dc3d159cff2122d12ac3c3816a01fe76 |