查看: 1217|回复: 0

Atmega328p Xplained mini 流水灯实现

[复制链接]
  • TA的每日心情
    开心
    2014-10-12 13:06
  • 签到天数: 1 天

    连续签到: 1 天

    [LV.1]初来乍到

    发表于 2015-1-20 09:22:28 | 显示全部楼层 |阅读模式
    分享到:
    1.将8个LED按共阳接法,分别接Atmega328的PD0-PD7,如下图:

    2.在Atmel Studio 6.2新建工程。
    代码如下:
    #include <asf.h>#define  F_CPU 8000000ul#include <avr/io.h>#include <util/delay.h>int main(void){        int i =0;        DDRD = 0xff;        PORTD = 0xfe;        while (1)                {                for(i=0;i<8;i++)                  {                        _delay_ms(1000);                        PORTD<<=1;                        PORTD=PORTD|0x01;                     }                PORTD=0xfe;                                 }}视频效果:https://v.youku.com/v_show/id_XODc1MzI5OTg0.html
    回复

    使用道具 举报

    您需要登录后才可以回帖 注册/登录

    本版积分规则

    关闭

    站长推荐上一条 /4 下一条

    手机版|小黑屋|与非网

    GMT+8, 2024-11-14 20:58 , Processed in 0.106571 second(s), 16 queries , MemCache On.

    ICP经营许可证 苏B2-20140176  苏ICP备14012660号-2   苏州灵动帧格网络科技有限公司 版权所有.

    苏公网安备 32059002001037号

    Powered by Discuz! X3.4

    Copyright © 2001-2024, Tencent Cloud.