MATRIX 16X32

Hello, I have bought the panel 16x32 in this shop but it not to be programmed. I have managed to put the code Demo but not as to do that after an enentrada it changes to another image the panel. Sabeis where to find some another example or that commands are to change the leds after the example of his demo or the electrical scheme of the panel? Thank you and a greeting to all

/*
A very simple demo for SeeedStudio ultrathin 16x32 Red LED Matrix to display 2 character of “你好”.

The circuit:

  • A connect to digital 2
  • B connect to digital 3
  • C connect to digital 4
  • D connect to digital 5
  • OE connect to digital 6
  • STB connect to digital 10
  • R1 connect to digital 11
  • CLK connect to digital 13
  • GND connect to GND
    */

#include <SPI.h>

#define RowA 2
#define RowB 3
#define RowC 4
#define RowD 5
#define OE 6
#define R1 11
#define CLK 13
#define STB 10
int botonA=0;

byte row=0;
byte hz[] =
{
//[1616]
0x3E,0xFA,0x22,0x8A,0x22,0x8A,0x22,0x8A,0x22,0x8A,0x22,0x8A,0xBE,0xFA,0x00,0x02,
0x3E,0xFA,0x22,0x8A,0x22,0x8A,0x22,0x8A,0x22,0x8A,0x22,0x8A,0x3E,0xFA,0x00,0x02,
//[16
16]
0x00,0x00,0x00,0x00,0xF3,0xCF,0x92,0x49,0x92,0x49,0x92,0x49,0xF3,0xCF,0x00,0x00,
0x00,0x00,0x00,0x00,0xF3,0xCF,0x92,0x49,0x92,0x49,0x92,0x49,0xF3,0xCF,0x00,0x00,
};

void hc138sacn(byte r){
digitalWrite(RowA,(r & 0x01));
digitalWrite(RowB,(r & 0x02));
digitalWrite(RowC,(r & 0x04));
digitalWrite(RowD,(r & 0x08));

}

void setup () {
pinMode(RowA, OUTPUT);
pinMode(RowB, OUTPUT);
pinMode(RowC, OUTPUT);
pinMode(RowD, OUTPUT);
pinMode(OE, OUTPUT);
pinMode(R1, OUTPUT);
pinMode(CLK, OUTPUT);
pinMode(STB, OUTPUT);
pinMode(7, INPUT);
pinMode(12, OUTPUT);
SPI.begin();
delay(10);
}

void loop(){
for(row=0;row<16;row++){
for (int i=0;i<2;i++){
SPI.transfer(~(hz[i*32+row*2]));
SPI.transfer(~(hz[i*32+row*2+1]));
}
digitalWrite(OE,HIGH);
hc138sacn(row);
digitalWrite(STB,LOW);
digitalWrite(STB,HIGH);
delayMicroseconds(500);
digitalWrite(OE,LOW);
delayMicroseconds(500);
}

botonA=digitalRead(7);

if(botonA == HIGH) {
???
}
}