代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/429591/8801354
c led.c
#include
#include
#include
#include
#include "fr400pdk2_board.h"
#define clear_psr_et() \
({ \
unsigned long temp;
www.eeworm.com/read/320868/8806182
h led.h
#ifndef LED_H
#define LED_H
#include
/********************数码管常量****************************/
unsigned char code table[]={0x00,0x10,0x20,0x30,0x40,0x50,0x60,0x70,0x80,0x90}; /
www.eeworm.com/read/385343/8808480
h led.h
void LedInit(void);
void LedRedOn(void);
void LedRedOff(void);
void LedBlueOn(void);
void LedBlueOff(void);
//void LedTest(void);
www.eeworm.com/read/385343/8808486
lst led.lst
C51 COMPILER V8.02 LED 12/04/2008 06:31:30 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE LED
OBJECT MODULE PLACED IN Led
www.eeworm.com/read/385343/8808501
obj led.obj
www.eeworm.com/read/385343/8808558
c led.c
#include "Include.h"
//硬件连接:
//红色Led P11 低电平有效
//蓝色Led P10 低电平有效
sbit LED_RED=P0^4;
sbit LED_BLUE=P0^0;
void LedInit(void)
{
LedRedOff();
LedBlueOff();
}
void LedRe
www.eeworm.com/read/385341/8808630
h led.h
void LedInit(void);
void LedRedOn(void);
void LedRedOff(void);
void LedBlueOn(void);
void LedBlueOff(void);
www.eeworm.com/read/385341/8808633
lst led.lst
C51 COMPILER V7.06 LED 12/04/2008 15:12:03 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE LED
OBJECT MODULE PLACED IN Led
www.eeworm.com/read/385341/8808652
obj led.obj
www.eeworm.com/read/385341/8808687
c led.c
#include "Include.h"
//硬件连接:
//红色Led P11 低电平有效
//蓝色Led P10 低电平有效
sbit LED_RED=P0^1;
sbit LED_BLUE=P0^0;
void LedInit(void)
{
LedRedOff();
LedBlueOff();
}
void LedRed