2166|1

3836

帖子

19

TA的资源

纯净的硅(中级)

楼主
 

MSP340单片机IAR-简易交通灯系统Proteus仿真程序 [复制链接]

仿真原理图如下

单片机源程序如下:
#include<msp430.h>

void delay_1s(void);
void seg7s(unsigned char data_seg7);
void seg7s2(unsigned char data_seg7);
const unsigned char decoder_seg7[10]                 
  ={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};

void main(void)
{
  WDTCTL=WDTPW+WDTHOLD;
  P1SEL=0x00;
  P1SEL2=0x00;
  P1DIR=0xff;
  P2SEL=0X00;
  P2SEL2=0x00;
  P2DIR=0xff;
  while(1)
  {
    P1OUT=0x81;
    seg7s(6);
    seg7s2(9);
    delay_1s();
    P1OUT=0x81;
    seg7s(5);
    seg7s2(8);
    delay_1s();
    P1OUT=0x81;
    seg7s(4);
    seg7s2(7);
    delay_1s();
    P1OUT=0x81;
    seg7s(3);
    seg7s2(6);
    delay_1s();
    P1OUT=0x81;
    seg7s(2);
    seg7s2(5);
    delay_1s();
    P1OUT=0x81;
    seg7s(1);
    seg7s2(4);
    delay_1s();
    P1OUT=0x82;
    seg7s(3);
    seg7s2(3);
    delay_1s();
    P1OUT=0x82;
    seg7s(2);
    seg7s2(2);
    delay_1s();
    P1OUT=0x82;
    seg7s(1);
    seg7s2(1);
    delay_1s();
    P1OUT=0x24;
    seg7s(9);
    seg7s2(6);
    delay_1s();
    P1OUT=0x24;
    seg7s(8);
    seg7s2(5);
    delay_1s();
    P1OUT=0x24;
    seg7s(7);
    seg7s2(4);
    delay_1s();
    P1OUT=0x24;
    seg7s(6);
    seg7s2(3);
    delay_1s();
    P1OUT=0x24;
    seg7s(5);
    seg7s2(2);
    delay_1s();
    P1OUT=0x24;
    seg7s(4);
    seg7s2(1);
    delay_1s();
    P1OUT=0x44;
    seg7s(3);
    seg7s2(3);
    delay_1s();
    P1OUT=0x44;
    seg7s(2);
    seg7s2(2);
    delay_1s();
    P1OUT=0x44;
    seg7s(1);
    seg7s2(1);
    delay_1s();
  }
}

void seg7s(unsigned char data_seg7)
{
  unsigned char code_seg7;
  code_seg7=decoder_seg7[data_seg7];
  P2OUT&=~BIT0;
  if(code_seg7&0x80)       //D7
  {
    P2OUT|=BIT1;
  }
  else
  {
    P2OUT&=~BIT1;
  }
  P2OUT|=BIT0;
  P2OUT&=~BIT0;
 
  if(code_seg7&0x40)       //D6
  {
    P2OUT|=BIT1;
  }
  else
  {
    P2OUT&=~BIT1;
  }
  P2OUT|=BIT0;
  P2OUT&=~BIT0;
 
  if(code_seg7&0x20)       //D5
  {
    P2OUT|=BIT1;
  }
  else
  {
    P2OUT&=~BIT1;
  }
  P2OUT|=BIT0;
  P2OUT&=~BIT0;
 
  if(code_seg7&0x10)       //D4
  {
    P2OUT|=BIT1;
  }
  else
  {
    P2OUT&=~BIT1;
  }
  P2OUT|=BIT0;
  P2OUT&=~BIT0;
 
  if(code_seg7&0x08)       //D3
  {
    P2OUT|=BIT1;
  }
  else
  {
    P2OUT&=~BIT1;
  }
  P2OUT|=BIT0;
  P2OUT&=~BIT0;
 
  if(code_seg7&0x04)       //D2
  {
    P2OUT|=BIT1;
  }
  else
  {
    P2OUT&=~BIT1;
  }
  P2OUT|=BIT0;
  P2OUT&=~BIT0;
 
  if(code_seg7&0x02)       //D1
  {
    P2OUT|=BIT1;
  }
  else
  {
    P2OUT&=~BIT1;
  }
  P2OUT|=BIT0;
  P2OUT&=~BIT0;
 
  if(code_seg7&0x01)       //D0
  {
    P2OUT|=BIT1;
  }
  else
  {
    P2OUT&=~BIT1;
  }
  P2OUT|=BIT0;
  P2OUT&=~BIT0;
}
void seg7s2(unsigned char data_seg7)
{
  unsigned char code_seg7;
  code_seg7=decoder_seg7[data_seg7];
  P2OUT&=~BIT0;
  if(code_seg7&0x80)       //D7
  {
    P2OUT|=BIT3;
  }
  else
  {
    P2OUT&=~BIT3;
  }
  P2OUT|=BIT2;
  P2OUT&=~BIT2;
 
  if(code_seg7&0x40)       //D6
  {
    P2OUT|=BIT3;
  }
  else
  {
    P2OUT&=~BIT3;
  }
  P2OUT|=BIT2;
  P2OUT&=~BIT2;
 
  if(code_seg7&0x20)       //D5
  {
    P2OUT|=BIT3;
  }
  else
  {
    P2OUT&=~BIT3;
  }
  P2OUT|=BIT2;
  P2OUT&=~BIT2;
 
  if(code_seg7&0x10)       //D4
  {
    P2OUT|=BIT3;
  }
  else
  {
    P2OUT&=~BIT3;
  }
  P2OUT|=BIT2;
  P2OUT&=~BIT2;
 
  if(code_seg7&0x08)       //D3
  {
    P2OUT|=BIT3;
  }
  else
  {
    P2OUT&=~BIT3;
  }
  P2OUT|=BIT2;
  P2OUT&=~BIT2;
 
  if(code_seg7&0x04)       //D2
  {
    P2OUT|=BIT3;
  }
  else
  {
    P2OUT&=~BIT3;
  }
  P2OUT|=BIT2;
  P2OUT&=~BIT2;
 
  if(code_seg7&0x02)       //D1
  {
    P2OUT|=BIT3;
  }
  else
  {
    P2OUT&=~BIT3;
  }
  P2OUT|=BIT2;
  P2OUT&=~BIT2;
 
  if(code_seg7&0x01)       //D0
  {
    P2OUT|=BIT3;
  }
  else
  {
    P2OUT&=~BIT3;
  }
  P2OUT|=BIT2;
  P2OUT&=~BIT2;
}
void delay_1s(void)
{
  unsigned long data_delay1s;
  for(data_delay1s=0;data_delay1s<6654;data_delay1s++);
}

最新回复

厉害的   详情 回复 发表于 2020-8-18 20:30
 
点赞 关注

回复
举报

2618

帖子

0

TA的资源

纯净的硅(高级)

沙发
 

厉害的

 
 

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

查找数据手册?

EEWorld Datasheet 技术支持

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

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

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

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

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

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