from machine import Pin, SPI from tft import TFT_GREEN _init() machine.freq(160000000) dc = Pin(4, Pin.OUT) cs = Pin(2, Pin.OUT) rst = Pin(5, Pin.OUT) spi = SPI(1, baudrate=40000000, polarity=0, phase=0) tft = TFT_GREEN(128, 160, spi, dc, cs, rst, rotate=0) Map = [ [1,1,0,1,1,1,0,1], [0,1,1,1,1,1,1,0], [1,1,0,0,0,1,1,1], [0,1,0,1,0,1,0,1], [0,1,0,0,0,1,0,1], [1,1,1,1,0,0,0,1], [1,0,0,0,0,0,0,1], [1,0,0,0,1,0,0,1], [1,0,0,0,1,1,1,1], [1,1,1,1,1,0,0,0] ] tft.initr(tft.BGR) # tft.initr(tft.RGB) #Если вместо синего цвета отображается красный, а вместо красного синий tft.clear(tft.COLOR_BLACK) x = 0 y = 0 for row in Map: for col in row: if col: tft.draw_bmp(x * 16, y * 16,'brick.bmp') x+=1 x=0 y+=1