#include <MD_Parola.h>
#include <MD_MAX72xx.h>
MD_Parola P = MD_Parola( MD_MAX72XX::PAROLA_HW, 12, 4 );
void setup()
{
P.begin();
P.print( "\xC5\xC4\xD6\xE5\xE4\xF6" );
// Alternatively, you can redefine characters as you want, for example:
/*
uint8_t A_umlaut[] =
{
5,
0b01111000,
0b00010101,
0b00010100,
0b00010101,
0b01111000,
};
P.addChar( '&', A_umlaut ); // this will replace '&' by 'Ä'
P.addChar( '\x1', A_umlaut ); // this will replace '\x1' by 'Ä'
P.print( "& \x1" );
*/
}
void loop()
{
}