kopia lustrzana https://github.com/peterhinch/micropython-samples
92 wiersze
3.2 KiB
Python
92 wiersze
3.2 KiB
Python
# ssd1306_test.py Demo pogram for rendering arbitrary fonts to an SSD1306 OLED display.
|
|
|
|
# The MIT License (MIT)
|
|
#
|
|
# Copyright (c) 2016 Peter Hinch
|
|
#
|
|
# 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.
|
|
|
|
|
|
# https://learn.adafruit.com/monochrome-oled-breakouts/wiring-128x32-spi-oled-display
|
|
# https://www.proto-pic.co.uk/monochrome-128x32-oled-graphic-display.html
|
|
|
|
# V0.22 Dec 23rd 2017 machine.SPI now only seems to work soft SPI and I2C
|
|
# implmentations
|
|
# Now provides demo of simple graphics
|
|
|
|
import machine
|
|
from ssd1306 import SSD1306_SPI, SSD1306_I2C
|
|
from writer import Writer
|
|
|
|
# Fonts
|
|
import freesans20
|
|
#import freeserif19
|
|
#import inconsolata16
|
|
|
|
WIDTH = const(128)
|
|
HEIGHT = const(64)
|
|
|
|
def test(use_spi=False):
|
|
if use_spi:
|
|
# Pyb SSD
|
|
# 3v3 Vin
|
|
# Gnd Gnd
|
|
# X1 DC
|
|
# X2 CS
|
|
# X3 Rst
|
|
# X6 CLK
|
|
# X8 DATA
|
|
pdc = machine.Pin('X1', machine.Pin.OUT_PP)
|
|
pcs = machine.Pin('X2', machine.Pin.OUT_PP)
|
|
prst = machine.Pin('X3', machine.Pin.OUT_PP)
|
|
# spi = machine.SPI('Y')
|
|
spi = machine.SPI(sck=machine.Pin('X6'), mosi=machine.Pin('X8'), miso=machine.Pin('X7'))
|
|
ssd = SSD1306_SPI(WIDTH, HEIGHT, spi, pdc, prst, pcs)
|
|
else: # I2C
|
|
# Pyb SSD
|
|
# 3v3 Vin
|
|
# Gnd Gnd
|
|
# Y9 CLK
|
|
# Y10 DATA
|
|
pscl = machine.Pin('Y9', machine.Pin.OUT_PP)
|
|
psda = machine.Pin('Y10', machine.Pin.OUT_PP)
|
|
i2c = machine.I2C(scl=pscl, sda=psda)
|
|
# i2c = machine.I2C(2)
|
|
ssd = SSD1306_I2C(WIDTH, HEIGHT, i2c)
|
|
|
|
rhs = WIDTH -1
|
|
ssd.line(rhs - 20, 0, rhs, 20, 1)
|
|
square_side = 10
|
|
ssd.fill_rect(rhs - square_side, 0, square_side, square_side, 1)
|
|
|
|
#wri = Writer(ssd, freeserif19)
|
|
wri2 = Writer(ssd, freesans20, verbose=False)
|
|
Writer.set_clip(True, True)
|
|
Writer.set_textpos(0, 0)
|
|
wri2.printstring('Tuesday\n')
|
|
wri2.printstring('8 Nov 2016\n')
|
|
wri2.printstring('10.30am')
|
|
ssd.show()
|
|
|
|
print('Test assumes a 128*64 (w*h) display. Edit WIDTH and HEIGHT for others.')
|
|
print('Device pinouts are commented in the code.')
|
|
print('Issue:')
|
|
print('ssd1306_test.test() for an I2C connected device.')
|
|
print('ssd1306_test.test(True) for an SPI connected device.')
|