这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » DIY与开源设计 » 开源硬件 » 【炫Q-ESP】画个马里奥(SPI屏幕操作)

共14条 2/2 1 2 跳转至
专家
2016-01-10 15:10:11     打赏
11楼
Arduino这个平台真好,也要尝试一下原生SDK

助工
2016-01-11 17:19:44     打赏
12楼
Q哥好棒呀,给你点赞!!!

专家
2016-01-25 11:13:41     打赏
13楼
};  
  
void bmpdraw()  
{  
    uint32_t time = millis();  
    byte a;  
    byte b;  
    for (int i=0; i< 320; i++)  
    {  
            TFT_DC_HIGH;  
            TFT_CS_LOW;  
            for(byte j=0; j < 240; j++)  
            {  
              a=pgm_read_byte_near(bmp+i*2+j*640-1);    
              b=pgm_read_byte_near(bmp+i*2+j*640);    
                SPI.transfer(a);  
                SPI.transfer(b);  
            }  
            TFT_CS_HIGH;  
          
    }  
      
    Serial.print(millis() - time, DEC);  
    Serial.println(" ms");  
}  
  
void setup()  
{  
    TFT_BL_ON;                                          // turn on the background light  
    Tft.TFTinit();                                      // init TFT library  
    Serial.begin(9600);  
    Serial.print("init");  
    bmpdraw();  
}  
  
void loop()  
{  
    delay(100000);  
    Serial.println("ok");  
}  
/********************************************************************************************************* 
  END FILE 
*********************************************************************************************************/  

 


专家
2016-03-04 10:19:06     打赏
14楼
旋球大神威武

共14条 2/2 1 2 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]