[go: up one dir, main page]

Skip to content
/ MAX7219 Public
forked from bitbank2/MAX7219

A C library for controlling any number of Maxim LED matrix controllers

Notifications You must be signed in to change notification settings

dan69p/MAX7219

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MAX7219

Copyright(c) 2018 BitBank Software, Inc.

MAX7219 Array

7-segment digits

MAX7219 is a simple C library for working with the Maxim LED controllers when connected to the SPI bus or bit-banged on GPIO pins. This includes both LED matrices (8x8) and 7-segment digits. The idea is to provide a simple interface for C programmers to make use of those low-cost, cascadable LED controllers without having to read the data sheet or figure out SPI programming. When using SPI, the display controller needs an additional control line (GPIO pin) for latching the data; this requires extra work on Linux platforms. In this case, I use my ArmbianIO library (https://github.com/bitbank2/ArmbianIO)
To build the library, simply type 'make' in the terminal. To build the sample app, type 'make -f make_demo'. This will build the demo executable to show that the library is working.
For Arduino, choose the SPI option by defining "USE_SPI" before you include max7219.h. Otherwise, the bit-banged option will be used. This is useful for devices like the ATtiny85 which don't have SPI hardware.
Linux Troubleshooting tips:

  1. Make sure to enable the SPI interface and check the bus number (e.g. /dev/spidev0.0)
  2. Connect the "CS" pin of the first MAX7219 to the correct GPIO pin.
  3. You can use any GPIO pin to control the data latch; initialize the library with the pin number used (not GPIO number)

Written by Larry Bank
Project started 3/10/2018
bitbank@pobox.com

About

A C library for controlling any number of Maxim LED matrix controllers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • C 57.1%
  • C++ 42.3%
  • Makefile 0.6%