Difference between revisions of "Arduino::LEDControl"
(→Draiveris) |
|||
Line 7: | Line 7: | ||
[https://www.dropbox.com/s/xhmao0hcd1fgd21/max7219.h?dl=1 Max7219.h] draivera kods: |
[https://www.dropbox.com/s/xhmao0hcd1fgd21/max7219.h?dl=1 Max7219.h] draivera kods: |
||
//===== |
//=================================== |
||
// MAX 7219 easy driver |
|||
// |
|||
// Assume the following connection to the Arduino pins: |
|||
// |
|||
// VCC => Arduino 5V |
|||
// GND => Arduino GND |
|||
// DIN => Arduino 11 |
|||
// CS => Arduino 10 |
|||
// CLK => Arduino 13 |
|||
//=================================== |
|||
#include <SPI.h> |
#include <SPI.h> |
||
// You may redefine this pin |
// You may redefine this pin |
||
#ifndef |
#ifndef SS_PIN |
||
#define SS_PIN 10 |
#define SS_PIN 10 |
||
#endif |
#endif |
||
Line 26: | Line 36: | ||
// Send a command to max7219 |
// Send a command to max7219 |
||
//------------------------------------------ |
//------------------------------------------ |
||
void max72SendCMD(uint8_t address, uint8_t value) |
void max72SendCMD(uint8_t address, uint8_t value) { |
||
{ |
|||
digitalWrite(SS_PIN, LOW); |
digitalWrite(SS_PIN, LOW); |
||
SPI.transfer(address); // Send address. |
SPI.transfer(address); // Send address. |
||
Line 37: | Line 46: | ||
// Send data to one max7219 (matrix) |
// Send data to one max7219 (matrix) |
||
//------------------------------------------ |
//------------------------------------------ |
||
void max72SendDATA(uint8_t address, uint8_t value) |
void max72SendDATA(uint8_t address, uint8_t value) { |
||
{ |
|||
digitalWrite(SS_PIN, LOW); |
digitalWrite(SS_PIN, LOW); |
||
SPI.transfer(address); // Send address. |
SPI.transfer(address); // Send address. |
||
Line 46: | Line 54: | ||
//------------------------------------------ |
//------------------------------------------ |
||
// |
// Call this from setup() |
||
//------------------------------------------ |
//------------------------------------------ |
||
void max72Init() |
void max72Init() |
||
Line 63: | Line 71: | ||
max72SendCMD(MAX7219_SHUTDOWN, 0x01); // Turn on chip. |
max72SendCMD(MAX7219_SHUTDOWN, 0x01); // Turn on chip. |
||
} |
} |
||
//================ |
//================ |
||
Revision as of 11:54, 29 October 2016
LEDControl bobliotēka - programmatūra, lai ar Arduino varetu darbinat 8x8 LED matricu, ko vada MAX7219 vai MAX7221 kontrolieris.
Draiveris
Max7219.h draivera kods:
//=================================== // MAX 7219 easy driver // // Assume the following connection to the Arduino pins: // // VCC => Arduino 5V // GND => Arduino GND // DIN => Arduino 11 // CS => Arduino 10 // CLK => Arduino 13 //=================================== #include <SPI.h> // You may redefine this pin #ifndef SS_PIN #define SS_PIN 10 #endif // MAX7219 SPI LED Driver #define MAX7219_TEST 0x0f // in real code put into a .h file #define MAX7219_BRIGHTNESS 0x0a // in real code put into a .h file #define MAX7219_SCAN_LIMIT 0x0b // in real code put into a .h file #define MAX7219_DECODE_MODE 0x09 // in real code put into a .h file #define MAX7219_SHUTDOWN 0x0C // in real code put into a .h file //------------------------------------------ // Send a command to max7219 //------------------------------------------ void max72SendCMD(uint8_t address, uint8_t value) { digitalWrite(SS_PIN, LOW); SPI.transfer(address); // Send address. SPI.transfer(value); // Send the value. digitalWrite(SS_PIN, HIGH); // Finish transfer. } //------------------------------------------ // Send data to one max7219 (matrix) //------------------------------------------ void max72SendDATA(uint8_t address, uint8_t value) { digitalWrite(SS_PIN, LOW); SPI.transfer(address); // Send address. SPI.transfer(value); // Send the value. digitalWrite(SS_PIN, HIGH); // Finish transfer. } //------------------------------------------ // Call this from setup() //------------------------------------------ void max72Init() { pinMode(SS_PIN, OUTPUT); SPI.setBitOrder(MSBFIRST); // Reverse the SPI Data o/p. SPI.begin(); // Start SPI // Run test - All LED segments lit. max72SendCMD(MAX7219_TEST, 0x01); delay(1000); max72SendCMD(MAX7219_TEST, 0x00); // Finish test mode. max72SendCMD(MAX7219_DECODE_MODE, 0x00); // Disable BCD mode. max72SendCMD(MAX7219_BRIGHTNESS, 0x00); // Use lowest intensity. max72SendCMD(MAX7219_SCAN_LIMIT, 0x0f); // Scan all digits. max72SendCMD(MAX7219_SHUTDOWN, 0x01); // Turn on chip. } //================
Piemērs programmai, kas izspīdina nejaušus punktus uz LED matricas