davis2016 发表于 2016-5-8 21:22:56

Arduino 8*8LED点阵模块验证成功

1. 学习来源
https://www.arduino.cc/en/Tutorial/RowColumnScanning
2. 连线方法参看图片
3. 程序如下
/*
Row-Column Scanning an 8x8 LED matrix with X-Y input

This example controls an 8x8 LED matrix using two analog inputs

created 27 May 2009
modified 30 Aug 2011
by Tom Igoe

This example works for the LumexLDM-24488NI Matrix. See
http://sigma.octopart.com/140413/datasheet/Lumex-LDM-24488NI.pdf
for the pin connections

For other LED cathode column matrixes, you should only need to change
the pin numbers in the row[] and column[] arrays

rows are the anodes
cols are the cathodes
---------

Pin numbers:
Matrix:
* Digital pins 2 through 13,
* analog pins 2 through 5 used as digital 16 through 19
Potentiometers:
* center pins are attached to analog pins 0 and 1, respectively
* side pins attached to +5V and ground, respectively.

This example code is in the public domain.

http://www.arduino.cc/en/Tutorial/RowColumnScanning

see also http://www.tigoe.net/pcomp/code/category/arduinowiring/514 for more
*/


// 2-dimensional array of row pin numbers:
const int row = {
2, 7, 19, 5, 13, 18, 12, 16
};

// 2-dimensional array of column pin numbers:
const int col = {
6, 11, 10, 3, 17, 4, 8, 9
};

// 2-dimensional array of pixels:
int pixels;

// cursor position:
int x = 5;
int y = 5;

void setup() {
// initialize the I/O pins as outputs
// iterate over the pins:
for (int thisPin = 0; thisPin < 8; thisPin++) {
    // initialize the output pins:
    pinMode(col, OUTPUT);
    pinMode(row, OUTPUT);
    // take the col pins (i.e. the cathodes) high to ensure that
    // the LEDS are off:
    digitalWrite(col, HIGH);
}

// initialize the pixel matrix:
for (int x = 0; x < 8; x++) {
    for (int y = 0; y < 8; y++) {
      pixels = HIGH;
    }
}
}

void loop() {
// read input:
readSensors();

// draw the screen:
refreshScreen();
}

void readSensors() {
// turn off the last position:
pixels = HIGH;
// read the sensors for X and Y values:
x = 7 - map(analogRead(A0), 0, 1023, 0, 7);
y = map(analogRead(A1), 0, 1023, 0, 7);
// set the new pixel position low so that the LED will turn on
// in the next screen refresh:
pixels = LOW;

}

void refreshScreen() {
// iterate over the rows (anodes):
for (int thisRow = 0; thisRow < 8; thisRow++) {
    // take the row pin (anode) high:
    digitalWrite(row, HIGH);
    // iterate over the cols (cathodes):
    for (int thisCol = 0; thisCol < 8; thisCol++) {
      // get the state of the current pixel;
      int thisPixel = pixels;
      // when the row is HIGH and the col is LOW,
      // the LED where they meet turns on:
      digitalWrite(col, thisPixel);
      // turn the pixel off:
      if (thisPixel == LOW) {
      digitalWrite(col, HIGH);
      }
    }
    // take the row pin low to turn off the whole row:
    digitalWrite(row, LOW);
}
}

4. 验证效果如图片,通过调整2个可调电阻,可以控制亮灯的LED位置。
5. 另外 8*8LED点阵模块不好接线,后来用两个面包板拼接,搞定了:)

爱瞌睡的盾 发表于 2016-5-9 11:56:14

赞一个,楼主可以试试直接用这个点阵编出一个贪吃蛇的出来没?

zzk22510 发表于 2016-5-9 15:09:25

可以使用一个max7219芯片。这样使用起来非常方便。

原野动力 发表于 2016-5-9 16:49:16

:):):):):):)

davis2016 发表于 2016-5-10 16:57:09

爱瞌睡的盾 发表于 2016-5-9 11:56 static/image/common/back.gif
赞一个,楼主可以试试直接用这个点阵编出一个贪吃蛇的出来没?

刚入手一个月,还没那个能力:)

leizhanbin 发表于 2019-6-2 16:35:48

这个值得学习
页: [1]
查看完整版本: Arduino 8*8LED点阵模块验证成功