LED模拟垂直电梯提示_代码文件: I:\m\视频\LED_DianZhen.c 2011/12/4, 23:41:52 //****************************************************************************** // // LED_DianZhen.c // f=11.0592Hz // MCU:STC89C52RC // Copyright (c) 2011-2011 Soothmusic. All rights reserved. // //****************************************************************************** #include "reg52.h" #define Dynamic_Display 4 typedef unsigned int uint; typedef unsigned char uchar; uchar code Di[] = //用 于 列 控制 { 0xfe,//11111110 0xfd,//11111101 0xfb,//11111011 0xf7,//11110111 0xef,//11101111 0xdf,//11011111 0xbf,//10111111 0x7f// 01111111 }; //****************************************************************************** // // 函 数 声明 // //****************************************************************************** voi……