代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/389075/8549258
h led.h
#ifndef LED_H
#define LED_H
#ifdef __cplusplus
extern "C" {
#endif
#include "define.h"
extern void led(int bit, int val);
extern void led_set_val(int val);
extern void ledblink(void);
#
www.eeworm.com/read/389075/8549306
c led.c
#include "led.h"
static void delay(int x)
{
int i;
while (x--)
{
for (i = 65536 ; i > 0; i--);
}
}
void led (int bit, int val)
{
int led_mask[LED_NUM] = {0x00000040, 0x000000
www.eeworm.com/read/188259/8554920
apj led.apj
www.eeworm.com/read/188236/8555544
led_blink
www.eeworm.com/read/432993/8556343
c led.c
/*
* 2006 OURS TECH
*
*
*
This file for explain how to use a simple driver
*/
#include
#include
#include
www.eeworm.com/read/188234/8557369
led_blink
www.eeworm.com/read/432978/8557762
c led.c
#include //配置头文件
#include //内核头文件
#include
#include //时钟头文件
#include //用户定义模块初始函数名需引用的头文件
#include /
www.eeworm.com/read/289284/8561197
exe led.exe
www.eeworm.com/read/432804/8572905
c led.c
#include
#include
#include
sbit DIN=P1^0;
sbit CLK=P1^1;
sbit LOAD=P1^2;
sbit KEY1=P1^3;
sbit KEY2=P1^4;
unsigned char KEYKEY=5;
void inputa(unsigned char aa)
www.eeworm.com/read/187982/8582262