-
Notifications
You must be signed in to change notification settings - Fork 38
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Hello,
I'm having a little trouble using this module with the TM16xx library.
In my code, I included "tm1623.h" to correspond to my module, but I can't get all the segments to work, only the first four columns work.
I reassembled the module in the device I took it from, and all the LEDs work fine, but I can't get them to work with the Arduino.
For information, this is a 7x7 Matrix.
https://i.imgur.com/0XDKr4v.jpeg
#include <TM1623.h>
#include <TM16xxMatrix.h>
TM1623 module(8, 9, 7);
#define MATRIX_NUMCOLUMNS 7
#define MATRIX_NUMROWS 7
TM16xxMatrix matrix(&module, MATRIX_NUMCOLUMNS, MATRIX_NUMROWS);
void setup()
{
matrix.setAll(true);
delay(200);
module.setupDisplay(true, 1);
delay(400);
matrix.setAll(false);
}
void loop()
{
matrix.setAll(true);
delay(200);
module.setupDisplay(true, 1);
delay(400);
matrix.setAll(false);
delay(1000);
}If you could help me, thank you!
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested