2019年10月1日 星期二
四位數_逆時針繞三圈
#include <at89x52.h>
int i;
int anti_cck_i;
void delay_1ms(int k)
{
int i,j;
for(i=0;i<k;i++)
for(j=0;j<110;j++)
;
}
void anti_cck()
{
for(anti_cck_i=0;anti_cck_i<3;anti_cck_i++)
{
P2=0XFE;P1=0XFE;delay_1ms(500);//亮a 個位數
P2=0XFD;P1=0XFE;delay_1ms(500); //亮a十位數
P2=0XFB;P1=0XFE;delay_1ms(500); //亮a百位數
P2=0XF7;P1=0XFE;delay_1ms(500); //亮a千位數
P2=0XF7;P1=0XDF;delay_1ms(500); //亮f千位數
P2=0XF7;P1=0XEF;delay_1ms(500); //亮e千位數
P2=0XF7;P1=0XF7;delay_1ms(500); //亮d千位數
P2=0XFB;P1=0XF7;delay_1ms(500); //亮d百位數
P2=0XFD;P1=0XF7;delay_1ms(500); //亮d十位數
P2=0XFE;P1=0XF7;delay_1ms(500); //亮d個位數
P2=0XFE;P1=0XFB;delay_1ms(500); //亮c個位數
P2=0XFE;P1=0XFD;delay_1ms(500); //亮b個位數
}
P2=0XFE;P1=0XFE;delay_1ms(500); //亮a個位數,因為最後停留在a
}
main()
{
P1=~0xFF;P2=0XFF;
anti_cck();
P1=~0xFF;P2=0XFF;
while(1)
{
;
}
}
訂閱:
張貼留言 (Atom)
algorithm
#include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv) { for(int j=2;j<=100;j++)//j...
-
本文旨在補充《 超圖解Arduino互動設計入門 》第18章「RFID無線識別裝置與問答遊戲製作」單元,書本採用的RFID讀卡機模組是採用9600bps, TTL序列通訊介面,RFID的通訊頻率為125KHz。這種模組的接線和程式都很簡單,每當感測到RFID卡,讀卡機就把...
-
/* 多重按鈕開關 */ //==宣告區================================ #include // 定義8051暫存器之標頭檔,P2-17~19 #include "myio.h" // 自己寫的I/O程式庫 sbit PB...
沒有留言:
張貼留言