// Program to demonstrate the MD_Parola library
//
// Simplest program that does something useful - Hello World!
//
// MD_MAX72XX library can be found at https://github.com/MajicDesigns/MD_MAX72XX
//
#include "MD_MAX72xx.h"
#include "max7219func.h"
#include <SPI.h>
void setup(void)
{
Serial.begin(9600);
mx.begin();
printText("Szia");
delay(10000);
}
void loop(void)
{
delay(10);
}