#include "ioCC2530.h" #define LED1 P1_0 #define LED2 P1_1 #define JD1 P1_7//继电器1 #define JD2 P2_0//继电器第二联 #define SW1 P1_2//按键1 unsigned char count=0; unsigned char Num=0; void delay(int time) { while(time--) { for(int i=0;i<240;i++); } } void Init_Port() { P1SEL &=~ 0x9f;//设置P1口的通用输入输出端口 P1DIR |=0x9b; P1DIR &=~0x04; P1INP &=~0x04;//设置输入模式 P2INP &=~0x40; P2SEL &=~0x01;//设置P2口的通用输入输出端口 P2DIR |=0x01; } void Timer_Init() { T1CC0L =0xD4; T1CC0H = 0x30; T1CCTL0 |=0x04; T1IE=1; EA=1; T1CTL =0x0e; } #pragma vector=T1_VECTOR __interrupt void Timer1_int() { T1STAT &=~0x20; if(SW1 !=0 && Num !=0) { count++; } } void Scan() { if(SW1==0) { delay(100); if(SW1==0) { while(SW1==0); count=0; Num++; if(Num>2) { Num=2; } } } if(count>5) { if(Num==1) { JD1 =!JD1;//继电器1 的状态改变 LED2=1; LED1=0; } else if(Num==2) { JD2=!JD2;//继电器2的状态改变 LED1=1; LED2=0; } count=0; Num=0; } } void main(void) { Init_Port(); Timer_Init(); LED1=1; LED2=1; JD1=0; JD2 =0; while(1) { Scan(); } }
2022-08-02 10:47:47 1KB CC253 单击双 双联继电 SW
1
IAR 开发最大优势就是能够直接使用TI公司提供的协议栈 Z-Stack 进行开发,我们只需要调用API接口函数。这里我们选用ZStack-CC2530-2.5.1a (Zigbee 2007) ,《zigbee实战演练》前2个版本用Zstack-CC2530-2.3.0-1.4.0版本的,目前全面更新至2.5.1a,功能更强大!通用性较高。初学者要注意了,IAR 和Z-Stack的高低版本是互不兼容的,所以我们两个东西的版本安装选取一定要配合好。经过测试,IAR 8.10和 Zstack-CC2530-2.5.1a配合使用时从安装到开发都很友好。
2021-11-24 18:43:08 139.71MB ZigBee ZStack-CC253 IAR 开发环境
1