Welcome![Sign In][Sign Up]
Location:
Search - 2.2 l

Search list

[Windows Developsja1000_peli库v1.2及其调用示范

Description: SJA1000_PELI库V1.2及其调用示范-SJA1000_PELI V1.2 and its call for demonstrations
Platform: | Size: 48128 | Author: 许晓冬 | Hits:

[SCM19264lcd

Description: 192*64显示lcd程序,功能:根据参数x_add,y_add往LCD中写1个字 输入:1: 写到LCD的X、Y坐标;2:数据地址 输出:无-LCD display procedures, functions : the parameters x_add, LCD y_add to write a character input : 1 : LCD wrote the X, Y coordinates; 2 : data output address : None
Platform: | Size: 3072 | Author: 陈虹 | Hits:

[OtherLcd造字软件

Description: 可以为无字库的LCD生成汉字或者字符的编码值,非常好用。-can no font LCD generation of Chinese characters or character encoding value, a very handy.
Platform: | Size: 189440 | Author: 赵凤鹏 | Hits:

[Special EffectsK-L变换类

Description: KL变换是图像处理的常规算法,文件里四该变换的类-KL transform is the conventional image processing algorithms, the paper four categories Transform
Platform: | Size: 5120 | Author: 齐名 | Hits:

[Audio programsnack2.2.2

Description: Snack v2.2 - a sound toolkit for scripting languages-Snack v2.2-a sound toolkit for scripting l anguages
Platform: | Size: 1381376 | Author: 董道道 | Hits:

[Linux-Unixdemo_ls-l

Description: a demo of command of "ls -l"-a demo of command of the "ls-l"
Platform: | Size: 1024 | Author: 糖糖 | Hits:

[Graph programparashell-2.1

Description: Parallel Port Control Made Easy - parashell allows control of a PC parallel port (input and output) with simple command line arguments. The simplicity of these programs make it very easy to use in scripts. Control stepper motors, Relays, LEDs, etc... -Parallel Port Control Made Easy-parashel l allows control of a PC parallel port (input and output) with simple command line arguments. Th e simplicity of these programs make it very easy to use in scripts. Control stepper motors. Relays, LEDs, etc. ...
Platform: | Size: 493568 | Author: liuyangustc | Hits:

[SCMproteus_keil

Description: Keil 51和Proteus仿真LED,串口实例 6个共阴极LED,还可仿真串口通讯,自己项目中的代码,吐血共享 使用方法: 1、用proteus打开ddb_stc51.DSN 2、用keil打开ddb_stc51目录下的ddb_stc51.Uv2工程 3、在keil中运行调试即可在proteus中查看调试结果, 串口仿真结果要用虚拟串口互联查看结果。 -Keil 51 and Proteus simulation LED, serial port examples of a total of six cathode LED, also Simulation serial communications, project their own code, hematemesis shared use: 1, using Proteus open ddb_stc51.DSN2, using keil open directory ddb_stc51 The ddb_stc51.Uv2 works 3, in the run keil debugger can debug in the Proteus to view the results of the serial simulation results using the Internet to view the results of the virtual serial port.
Platform: | Size: 55296 | Author: generalj | Hits:

[Embeded-SCM DevelopNIOS_LED

Description: 完整的Nios 2 演示工程,包括Quartus II 工程和NIOS IDE下的c代码。采用NIOS 2处理器控制LED。已通过实验测试。-Complete Nios 2 demonstration projects, including the Quartus II and NIOS IDE works under the c code. NIOS 2 processor to control the use of LED. Experimental tests have passed.
Platform: | Size: 763904 | Author: M | Hits:

[SCMTG12864B-2

Description: 图形液晶TG12864B-2驱动程序-Graphic LCD Driver TG12864B-2
Platform: | Size: 54272 | Author: Pade | Hits:

[SCMst7781

Description: 手机2.4~LCM驱动显示程序!用与IC为ST7781-2.4 ~ LCM-driven mobile phone display program! IC for use with the ST7781! !
Platform: | Size: 106496 | Author: 肖海云 | Hits:

[Embeded-SCM Develop2.LCD

Description: zigbee cc2430模块控制lcd,初学者可知如何控制其io口-zigbee cc2430 module control lcd, beginners can see how to control the io port
Platform: | Size: 61440 | Author: 莫为 | Hits:

[Embeded Linuxservfox-L

Description: 嵌入式liunx网络摄像机中的本地lcd显示的程序。servfox的以前源码里面没有本地lcd显示的内容,这里的程序是增加的lcd显示的内容。-Embedded liunx network camera lcd display in the local program. servfox previous source which has no local content lcd display, where the program is to increase the lcd display of the content.
Platform: | Size: 45056 | Author: 王刚 | Hits:

[SCMLCD

Description: stm32f103的lcd驱动,2.2寸触摸屏-stm32f103 the lcd driver, 2.2-inch touch screen
Platform: | Size: 214016 | Author: henson | Hits:

[Other2

Description: 定义实现大整数运算的类LINT,该类实现两个100位以内的大整数的加法和结果输出。 类可以有如下的类似定义: class LINT { private: // …… public: LINT(char*) LINT operator+(const LINT& L) ostream& operator<<(const ostream& os, const LINT& L) // …… } 要求: 1)构造函数LINT::LINT(char*)初始化大整数。可以根据自己的要求增加定义任意形式和任意个数的构造函数。 2)用“cout << LINT的对象”形式打印大整数的值。 3)可以根据需要,自行增加类LINT的成员函数和成员变量。 4)类中的运算符重载方式,既可以重载为类的成员函数,也可以重载为类的友元函数。 5)100位的大整数可以用数组或者链表来实现,也可以用你认为合适的数据结构。 程序中可能如下使用类LINT: void main() { LINT L1("12345678900987654321"), L2("9876543210"), L3 L3 = L1 + L2 cout << L3 …… } 说明:假设L1 = 12345678900987654321,L2 = 9876543210。 -定义实现大整数运算的类LINT,该类实现两个100位以内的大整数的加法和结果输出。 类可以有如下的类似定义: class LINT { private: // …… public: LINT(char*) LINT operator+(const LINT& L) ostream& operator<<(const ostream& os, const LINT& L) // …… } 要求: 1)构造函数LINT::LINT(char*)初始化大整数。可以根据自己的要求增加定义任意形式和任意个数的构造函数。 2)用“cout << LINT的对象”形式打印大整数的值。 3)可以根据需要,自行增加类LINT的成员函数和成员变量。 4)类中的运算符重载方式,既可以重载为类的成员函数,也可以重载为类的友元函数。 5)100位的大整数可以用数组或者链表来实现,也可以用你认为合适的数据结构。 程序中可能如下使用类LINT: void main() { LINT L1("12345678900987654321"), L2("9876543210"), L3 L3 = L1+ L2 cout << L3 …… } 说明:假设L1 = 12345678900987654321,L2 = 9876543210。
Platform: | Size: 1024 | Author: Elena | Hits:

[Other Embeded programDM430-L

Description: DM430-L代码,对于初学者有很大的帮助,使用此开发板的人会有很大帮助-DM430-L code
Platform: | Size: 239616 | Author: 王嘉男 | Hits:

[Other Embeded programDMAVR-L(ATmega128A)code

Description: DMAVR-L资料光盘(ATmega128A)源程序代码.zip-DMAVR-l data CD (ATmega128A) source code. Zip
Platform: | Size: 180224 | Author: 丁国盛 | Hits:

[Special EffectsK-L

Description: K-L变换算法 以矢量信号X的协方差矩阵Ф的归一化正交特征矢量q所构成的正交矩阵Q,来对该矢量信号X做正交变换Y=QX,则称此变换为K-L变换(K-LT或KLT),K-LT是Karhunen-Loève Transform的简称,有的文献资料也写作KLT。可见,要实现KLT,首先要从信号求出其协方差矩阵Ф,再由Ф求出正交矩阵Q。Ф的求法与自相关矩阵求法类似。-K- L
Platform: | Size: 2688000 | Author: 柳费洋 | Hits:

[SCMDM430-L

Description: DM430-L是MSP430单片机最小系统板,板载USB型BSL下载器,RS232通信模块,12864液晶接口,同时支持JTAG调试,可匹配市场上的各种JTAG调试器。-DM430- L is MSP430 single chip microcomputer minimum system board, board type USB BSL downloader, RS232 communication module, 12864 LCD interface, at the same time support the JTAG debugging, can match various JTAG debugger
Platform: | Size: 6318080 | Author: 崔媛媛 | Hits:

[Linux-Unixls -l

Description: 实现ls -l功能,打开文件夹,列出文件名,大小,详细信息(Implementation ls -l function)
Platform: | Size: 1024 | Author: 飞飞鹰 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net