代码搜索结果

找到约 72,433 项符合 LED Matrix 的代码

led.plg

Build Log --------------------Configuration: LED - Win32 Debug-------------------- Command Lines Results LED.exe - 0 error(s),

copy of matrix.cpp

#include "matrix.h" #include #include #include #include #define AS_ZERO 0.0001 Matrix::Matrix(int r, int c) { rows = r; cols = c; alloc()

matrix.h

#ifndef __MATRIX_H__ #define __MATRIX_H__ #include typedef double T; class Matrix { //private: T** element; int rows; int cols; void alloc(void); void release(void);

matrix.cpp

#include "matrix.h" #include #include #include #include #define AS_ZERO 0.0001 Matrix::Matrix(int r, int c) { rows = r; cols = c; alloc()

led.c

#include "led.h" #define led 0x00010000 //P1.16 void delay_ns(int ns) { int delay; for(;ns>0;ns--) for(delay=0;delay

led.h

//led.h // init led port void LedsInit(void); // single blink led 1 void Led1Blink(void); void Led1BlinkSlow(void); // turn on led 1 void Led1On(void); // turn off led 1 void Led1Off(void

led.h

//led.h void Delay (unsigned long a); // init led port void LedInit(void); // single blink void LedBlink(void); // turn on led void LedOn(void); // turn off led void LedOff(void);

led.c

#include #include "led.h" void Delay (unsigned long a) { // 简单延时 while (--a!=0); } void LedInit(void) { // 初始化led端口 IO0DIR_bit.P0_31 = 1; // port0.31设为输出,LED }

led.pjt

; Code Composer Project File, Version 2.0 (do not modify or remove this line) [Project Settings] ProjectDir="E:\MYDSP\DSK2407\c\LED\" ProjectType=Executable CPUFamily=TMS320C24XX Tool="Compiler

led.c

/******************************************* 文件:LED.C 环境:编译为ICC AVR6.25A,仿真为AVR Studio4.10 硬件:ATMEGA16芯片 日期:2006年12月10日 功能:驱动开发板上的LED。1. 流水灯 2.闪烁指定的LED 备注:参考《AVR系列单片机C语言编程与应用实例》(清华