What hardware hacker doesn’t have a soft spot for transparent cases? While they may have fallen out of mainstream favor, they ...
from machine import I2C, Pin from ssd1306 import SSD1306_I2C from font import Font import time i2c = I2C(scl=Pin(0), sda=Pin(2)) display= SSD1306_I2C(128, 32, i2c) f ...
This is a simple library for interfacing a MSP430G2 LaunchPad with a 128x64 SSD1306 OLED display using I2C. Much of the code for the display has been borrowed from Adafuit's wonderful SSD1306 Arduino ...