Skip to content

JulienBacquart/micropython-max7219

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

Micropython library for a 8 digits 7-segment display based on the MAX7219.

Thanks to https://github.com/adafruit/micropython-adafruit-max7219 for getting me started.

Wiring:

ESP8266 MAX7219
HMOSI (GPIO13) DIN
HSCLK (GPIO14) CLK
I/O (GPIO15) CS

The I/0 pin can be moved to any other pin.

I'm using the hardware SPI, but it can be moved to any other pin using the software SPI.

Example of use:

from machine import Pin, SPI
import max7219

hspi = SPI(1, baudrate=10000000, polarity=0, phase=0)
display = max7219.Max7219(hspi, Pin(15))
display.clear()
display.write_hex(0xAB9F)

About

Micropython library for a 8 digits 7-segment display based on the MAX7219.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages