Proyek Menengah

Proyek Menengah : Scrolling Text

// maxmatrix-disp-scroll-text-7219 // based on // https://code.google.com/p/arudino-maxmatrix-library/wiki/Example_Display_Scrolling_Tex #include “MaxMatrix.h” #include “avr/pgmspace.h” #define maxDisplays 2 // Number of MAX7219’s in use. byte Buf7219[7]; // “width,height,data[5]” single character buffer. const int data = 11; // DIN or MOSI const int load = 10; // CS const int clock = 13; // SCK MaxMatrix m(data, load, clock, maxDisplays); […]