2530|0

1891

帖子

2

TA的资源

纯净的硅(中级)

楼主
 

SAMR21_SSD1306 [复制链接]

SSD1306

5-1OLED1 Xplained Pro
OLED1 Xplained ProAtmel设计的配件开发板,上面总共呆了三个LED和三个Key以及一个128*32OLED液晶屏幕。

5-2OLED1 Xplained Pro Overview
打开AtmelStudio 新建一个SSD1306的工程。

5-3Example
代码如下:
#include
int main(void)
{
       //! the pageaddress to write to
       uint8_t page_address;
       //! the columnaddress, or the X pixel.
       uint8_t column_address;
       //! store the LCDcontroller start draw line
       uint8_t start_line_address = 0;
       system_init();
       delay_init();
       // Initialize SPIand SSD1306 controller
       ssd1306_init();
       // set addressesat beginning of display
       ssd1306_set_page_address(0);
       ssd1306_set_column_address(0);
       // fill displaywith lines
       for (page_address = 0; page_address <= 8; page_address++) {
              ssd1306_set_page_address(page_address);
              for (column_address = 0; column_address < 128; column_address++) {
                     ssd1306_set_column_address(column_address);
                     /* fill every other pixel in the display. This will produce
                     horizontal lines on thedisplay. */
                     ssd1306_write_data(0x0f);
              }
       }
       // scroll thedisplay using hardware support in the LCD controller
       while (true) {
              ssd1306_set_display_start_line_address(start_line_address++);
              delay_ms(250);
       }
}
OLED1插在开发板上,烧写代码,即可看到SSD1306上显示条形黑白间隔的图案。
图5-4
SSD1306是这个OLED液晶屏的主控芯片。

点赞 关注
个人签名
分享铸就美好未来。。。




 

回复
举报
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表