代码搜索结果
找到约 72,433 项符合
LED Matrix 的代码
led.lst
C51 COMPILER V7.06 LED 10/25/2006 16:17:39 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE LED
OBJECT MODULE PLACED IN LED
led.tra
*** Creating Trace Output File '.\obj\led.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '".\obj\startup.o"'
### List of Objects: adding '".\obj\ma
led.h
/*
* File: Led.h
*
* Detail: 四位数码管显示温度值包含文件
*
* Created by Pandar(sudazcf@163.com) on 2009-2-22
*
* Modified by Pandar(sudazcf@163.com) on 2009-2-22
*
*/
#ifndef LED_H_INCLUDED
#de
led.lst
C51 COMPILER V8.02 LED 02/24/2009 13:27:00 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE LED
OBJECT MODULE PLACED IN Led
led.c
/*
* File: Led.c
*
* Detail: Led显示温度值API
*
* Created by Pandar(sudazcf@163.com) on 2009-2-22
*
* Modified by Pandar(sudazcf@163.com) on 2009-2-22
*
*/
#include "reg.h"
#include "m
matrix.h
#ifndef __Matrix1_H
#define __Matrix1_H
#include
#include
using namespace std;
struct Vector2d;
struct Vector3d;
struct Matrix
{
Matrix();
explicit Matrix( const Vector2d & );
matrix.cpp
#include "Matrix.h"
#include "Geometry.h"
#include
#include
#include
#include
#include
using namespace std;
void Matrix::swap_col(int a, int b)
{
led driver.c
/*************************************
文件名:LED Driver
编译环境:ICC AVR6.25A
仿真软件;AVR studio4.10
硬件:ATMEGA16芯片
描述:驱动LED形成流水灯方式
*************************************/
#include //包含型号的头文件
led.c
#include "..\inc\led.h"
#include "..\inc\console.h"
#define ESC_KEY 0x1b
//声明总线地址
volatile U16 * LedDBuffer = (volatile U16 *)(0x2000000);
volatile U16 * LedSBuffer = (volatile U16 *)(0x20
平凡教程第一课如何点亮一个led发光管.asm
;平凡教程第一课,如何点亮一个LED发光管
LOOP:
CLR P1.0;用CLR命令使P1.0输出低电平,点亮LED
CLR P1.2;用CLR命令使P1.2输出低电平,点亮LED
LCALL DELAY;调用延时子程序DELAY
AJMP LOOP;通过AJMP执行LOOP,从最开始循环执行,无限循环下去
DELAY: MOV R7,#250
D1: M