Skip to content

YuenNicdao/iParol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MUX_iParol

MUX_iParol is an Arduino library for controlling a 15x15 matrix of LEDs using the LedControl library. It allows for easy manipulation of individual LEDs or groups of LEDs on a matrix.

Features

  • Control multiple LED devices
  • Set individual LEDs to on/off state
  • Support for arrays of LEDs

Usage

Basic Example

#include "iParol.h"

void setup() {
    iParol_Init();
}

void loop() {
    for(byte i = 1; i<=225; i++){
        write(i, HIGH);
    }
    delay(100);
    
    for(byte i = 1; i<=225; i++){
        write(i, LOW);
    }
    delay(100);
}

About

Library for controlling a 15x15 matrix of LEDs using LedControl.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages