Skip to content

ebertmi/ip_matrix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#C Library - Adafruit 8x8 LED Matrix via i2c Simple library for education purposes with an raspberry pi and a LED matrix

##Usage

  #include "ip_matrix8x8.h"

  unsigned char arr2dim[8][8] = {{0,1,0,1,0,1,0,1},
      {1,0,1,0,1,0,1,0},
      {0,1,0,1,0,1,0,1},
      {1,0,1,0,1,0,1,0},
      {0,1,0,1,0,1,0,1},
      {1,0,1,0,1,0,1,0},
      {0,1,0,1,0,1,0,1},
      {1,0,1,0,1,0,1,0},
  };

  int fd;
  fd = initi2c(); // init communication
  printArray(fd, arr2dim);

About

C Library for Adafruit 8x8 LED Matrix

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors