亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Step-by-step

  • 基于單片機的顏色自適應識別電路

      為解決電致變色器件的顏色變化受外界環境顏色控制的問題,設計了一種基于單片機的便攜式顏色自適應識別電路。與傳統顏色識別電路相比較,該電路利用數字式的顏色傳感器來獲取外界環境顏色,產生的數字顏色信號易于單片機進行處理。在電路中,下位機部分主要負責獲取電致變色器件變色參數及控制電致變色器件的顏色變化;而上位機部分主要負責把下位機獲取的電致變色器件變色參數進行電壓到顏色的曲線擬合,并通過藍牙通信把擬合曲線參數傳遞給下位機。結果表明,該電路能自動根據環境顏色提供-4~4 V范圍步進為0.1 V的電壓來驅動電致變色器件的顏色顯示,與傳統的顏色識別電路設計相比,識別的精度和速度都得到了明顯改善。   Abstract:   In this paper, a portable adaptive circuit for color identification(PACCI) based on MCU was designed. Compared to the traditional color identification circuit, the PACCI adopts digital sensor to detect the color data from external environment and further generate digital color data, which can be processed easily by MCU. In PACCI, the slave is mainly responsible for detecting the color parameters of the corresponding elcreochromic device and further driving it. For the master, which is mainly responsible for the color curve fitting based on the parameters of the electrochromic device, and transmits the fitting parameters to the slave through the bluetooth device. The results show that the PACCI can provide the basis voltage range from -4V to 4V automatically based on the colors of external environment with step as 0.1V to drive the corresponding electrochromic device. Compared to the traditional color recognition circuit, the recognition accuracy and speed of PACCI have been improved significantly.

    標簽: 單片機 識別電路

    上傳時間: 2013-11-09

    上傳用戶:franktu

  • 單片機控制的鉛酸蓄電池充電電源

     為了有效地提升鉛酸蓄電池的使用壽命,同時實現對充電過程的監控,設計出一種用單片機控制的36 V鉛酸蓄電池充電電源。本電路采用反激式拓撲,連續電流工作模式,電源管理IC設計在電源的副邊,由ELAN公司的EM78P258N單片機模擬,是用可編程器件模擬電源管理IC,實現智能電源低成本化的一次成功嘗試,通過對單片機的軟件設計實現了充電電源的狀態顯示、充電時間控制、報警、過溫保護、過壓保護、過流保護等功能。本充電器真正的實現了鉛酸蓄電池的三段式充電過程,其最高輸出功率可達90 W,效率約85%,成本不到20元,具有很高的市場競爭力。 Abstract:  In order to extend the life of lead-acid battery efficiently and supervise the charging process meanwhile, a 36V lead-acid battery charge powe supply controlled by microcontroller is designed. The charger is flyback switching power supply and works in CCM mode. A EM78P258N microcontroller made by ELAN microelectronics corporation is used as power management IC which is designed at the secondary circuit. The project is a successful attempt to low-cost intelligent power used microcontroller simulating power management IC. The charger also has the functions of the status reveal, charge time control, alarming, thermal protect, current limit and overvoltage protect by the software design. The circuit actually implements the three-step charge process, whose power is up to 90W and whose efficiency can get 85%. The net cost of this charger is less than 20 RMB, so that the charger is of powerful market competitiveness.    

    標簽: 單片機控制 充電電源 鉛酸蓄電池

    上傳時間: 2013-11-16

    上傳用戶:cepsypeng

  • 基于CDC3207G的汽車儀表板設計

    應用德國Micronas公司的CDC3207G微控制器開發了一款汽車儀表板系統。詳細地介紹了該系統的硬件原理,以及步進電機,音頻控制,LCD顯示,LED指示燈和報警燈等幾個模塊的實現方法。應用μC/OS-II實時操作系統開發軟件。著重介紹了啟動代碼的設計和任務的規劃。 Abstract:  A dashboard system is developed by using CDC3207G microcontroller made by Micronas.The hardware of the sys-tem and the realization of the step motor module,audio module,LCD display and LED indicator and alarm module are ex-plained in detail.The μC/OS-II real-time operating system is used for the software development and the starting code design and the task planning is explained specifically.

    標簽: 3207G 3207 CDC 汽車儀表板

    上傳時間: 2013-10-26

    上傳用戶:x4587

  • AT89C2051驅動步進電機的電路和源碼

    AT89C2051驅動步進電機的電路和源碼:AT89C2051驅動步進電機的電路和源碼 程序:stepper.c stepper.hex/* * STEPPER.C * sweeping stepper's rotor cw and cww 400 steps * Copyright (c) 1999 by W.Sirichote */#i nclude c:\mc5151io.h /* include i/o header file */ #i nclude c:\mc5151reg.hregister unsigned char j,flag1,temp; register unsigned int cw_n,ccw_n;unsigned char step[8]={0x80,0xc0,0x40,0x60,0x20,0x30,0x10,0x90} #define n 400/* flag1 mask byte 0x01 run cw() 0x02 run ccw() */main(){ flag1=0; serinit(9600); disable(); /* no need timer interrupt */ cw_n = n; /* initial step number for cw */ flag1 |=0x01; /* initial enable cw() */while(1){ { tick_wait(); /* wait for 10ms elapsed */energize(); /* round-robin execution the following tasks every 10ms */ cw(); ccw(); } }}cw(){ if((flag1&0x01)!=0) { cw_n--; /* decrement cw step number */ if (cw_n !=0) j++; /* if not zero increment index j */ else {flag1&=~0x01; /* disable cw() execution */ ccw_n = n; /* reload step number to ccw counter */ flag1 |=0x02; /* enable cww() execution */ } }

    標簽: C2051 2051 89C AT

    上傳時間: 2013-11-21

    上傳用戶:boyaboy

  • 1A SIMPLE STEP-DOWN SWITCHING

    The TL2575 and TL2575HV represent superior alternatives to popular three-terminal linear regulators. Due totheir high efficiency, the devices significantly reduce the size of the heatsink and, in many cases, no heatsink isrequired. Optimized for use with standard series of inductors available from several different manufacturers, theTL2575 and TL2575HV greatly simplify the design of switch-mode power supplies by requiring a minimaladdition of only four to six external components for operation.

    標簽: STEP-DOWN SWITCHING SIMPLE 1A

    上傳時間: 2013-11-20

    上傳用戶:jelenecheung

  • 51單片機驅動步進電機(含電路圖和C語言源程序代碼)

    51單片機驅動步進電機(含電路圖和源程序代碼) 源程序:stepper.c stepper.hex /* * STEPPER.C * sweeping stepper's rotor cw and cww 400 steps * Copyright (c) 1999 by W.Sirichote */ #i nclude c:\mc5151io.h /* include i/o header file */ #i nclude c:\mc5151reg.h register unsigned char j,flag1,temp; register unsigned int cw_n,ccw_n; unsigned char step[8]={0x80,0xc0,0x40,0x60,0x20,0x30,0x10,0x90} #define n 400 /* flag1 mask byte 0x01 run cw() 0x02 run ccw() */

    標簽: 51單片機 驅動 步進電機 C語言

    上傳時間: 2013-11-09

    上傳用戶:釣鰲牧馬

  • CCS編程環境 使用的是匯編加C的混合編程方法: The programme of the Correlation Algorithm. Using INT2 to get the input s

    CCS編程環境 使用的是匯編加C的混合編程方法: The programme of the Correlation Algorithm. Using INT2 to get the input signal. Array x, in first step, is the input signal produced by programme, in next step, is the input signal get from A/D, the length is 128, 32-bit floating point. Array y, in first step, is the input signal produced by programme, in next step, is the input signal get from A/D, the length is 128, 32-bit floating point. Array cor is the Correlation result, the length is 255, 32-bit floating point.

    標簽: Correlation Algorithm programme the

    上傳時間: 2013-12-21

    上傳用戶:leixinzhuo

  • %BIQPBOX Bisection reflective line search for sqpbox % [nx,nsig,alpha] = BIQPBOX(s,c,strg,x,y,sigma

    %BIQPBOX Bisection reflective line search for sqpbox % [nx,nsig,alpha] = BIQPBOX(s,c,strg,x,y,sigma,l,u,... % oval,po,normg,DS,mtxmpy,data,H) % returns the new feasible point nx, the corresponding sign vector nsig, % and the step size of the unreflected step, alpha. % Copyright (c) 1990-98 by The MathWorks, Inc. % $Revision: 1.2 $ $Date:

    標簽: BIQPBOX reflective Bisection search

    上傳時間: 2013-12-17

    上傳用戶:sk5201314

  • Every day, patches are created to cover up security holes in software applications and operating sys

    Every day, patches are created to cover up security holes in software applications and operating systems. But by the time you download a patch, it could be too late. A hacker may have already taken advantage of the hole and wreaked havoc on your system. This innovative book will help you stay one step ahead. It gives you the tools to discover vulnerabilities in C-language-based software, exploit the vulnerabilities you find, and prevent new security holes from occurring.

    標簽: applications operating security software

    上傳時間: 2015-11-01

    上傳用戶:fhzm5658

  • this a pack include source code for quartus 2. It is an implementation of the LC2. The LC-2 compu

    this a pack include source code for quartus 2. It is an implementation of the LC2. The LC-2 computer is described in Introduction to Computing Systems from Bits & Gates to C & Beyond by Yale Patt and Sanjay Patel, McGraw Hill, 2001. The LC2 model can be run as a simulation or downloaded to the UP3 in a larger model, TOP_LC2 that adds video output. Push buttons reset and single step the processor and a video output display of registers is generated. This state machine VHDL-based model of the LC-2 includes all source files. Currently compiled for a Cyclone EP1C6Q240 FPGA.

    標簽: implementation include quartus source

    上傳時間: 2013-12-25

    上傳用戶:壞壞的華仔

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品91久久久久| 亚洲午夜精品久久| 一本色道久久| 欧美激情a∨在线视频播放| 精品动漫一区二区| 国产欧美日韩一区二区三区在线观看 | 欧美精品一区视频| 亚洲久久在线| 91久久精品国产91久久| 欧美日韩黄色大片| 久久高清国产| 欧美在线一二三四区| 99热这里只有精品8| 亚洲另类自拍| 1024日韩| 亚洲精品国产精品久久清纯直播 | 欧美日韩成人综合| 欧美理论在线| 国产精品国产三级国产aⅴ浪潮 | 亚洲专区欧美专区| 久久本道综合色狠狠五月| 亚洲电影在线看| 亚洲国产精品国自产拍av秋霞| 狠狠干狠狠久久| 亚洲人成在线观看一区二区 | 亚洲永久免费观看| 亚洲女同性videos| 亚洲视频中文| 欧美在线视频免费播放| 午夜精品在线| 欧美成人免费va影院高清| 午夜精品久久久久久久久久久| 在线精品亚洲| 亚洲一区二区三区色| 久久成人精品电影| 免播放器亚洲| 国产亚洲欧美一区二区三区| 精品福利av| 尤物视频一区二区| 久久一区欧美| 黄色一区二区三区| 久久国产日本精品| 欧美视频免费| 亚洲亚洲精品在线观看| 久久久之久亚州精品露出| 国产精品夜夜夜| 亚洲最新合集| 欧美日韩免费观看一区三区 | 欧美在线视频a| 国产日韩在线一区| 久久综合九色综合久99| 国产在线精品自拍| 亚洲欧美成人网| 国产在线观看91精品一区| 欧美日韩国产成人| 国产欧美精品一区二区色综合| 一本色道久久综合亚洲精品按摩| 午夜久久电影网| 欧美精品午夜视频| 亚洲永久免费av| 极品少妇一区二区三区| 一个人看的www久久| 快射av在线播放一区| 99这里有精品| 国语自产精品视频在线看8查询8| 久久一二三四| 1024国产精品| 国产精品毛片大码女人| 欧美一级播放| 欧美日韩视频专区在线播放 | 免费观看成人| 欧美国产在线电影| 国产精品高潮在线| 欧美成年人视频| 狠狠色狠色综合曰曰| 欧美福利视频在线| 亚洲五月婷婷| 亚洲精品一区二区三区婷婷月| 欧美99在线视频观看| 日韩视频在线免费观看| 亚洲精品乱码视频| 国产精品一区二区久久久| 久久久久久黄| 久久漫画官网| 久久国产日本精品| 日韩视频二区| 国产中文一区| 好吊色欧美一区二区三区四区| 欧美成人日本| 欧美四级在线| 欧美在线亚洲综合一区| 亚洲色无码播放| 一区二区高清| 国产精品99久久久久久白浆小说 | 国产一区91精品张津瑜| 欧美午夜激情视频| 欧美激情视频一区二区三区在线播放 | 亚洲一区二区四区| 亚洲欧美另类在线| 香蕉久久精品日日躁夜夜躁| 欧美在线亚洲一区| 久久久精品tv| 欧美大尺度在线观看| 欧美在线观看一区| 亚洲天堂黄色| 亚洲女女做受ⅹxx高潮| 亚洲激情成人网| 国产日韩欧美在线看| 国产麻豆精品在线观看| 国产精品乱人伦一区二区| 欧美日韩国产影院| 亚洲免费视频观看| 欧美激情片在线观看| 久久精彩免费视频| 99视频+国产日韩欧美| 在线性视频日韩欧美| 日韩一本二本av| 亚洲一区二区影院| 媚黑女一区二区| 国产精品久99| 亚洲精品综合精品自拍| 久久国产精品第一页| 性伦欧美刺激片在线观看| 亚洲国产精品ⅴa在线观看 | 久久精品视频在线看| 久久精品国产精品亚洲| 国产片一区二区| 樱桃成人精品视频在线播放| 亚洲视频久久| 欧美.com| 亚洲激情第一页| 国产日产欧美一区| 欧美精品免费在线| 久久久国产视频91| 宅男噜噜噜66一区二区| 亚洲成人原创| 国产亚洲欧美一区二区三区| 欧美国产另类| 亚洲国产精品一区| 国产精品视频男人的天堂| 卡一卡二国产精品| 欧美日本国产一区| 欧美性猛交99久久久久99按摩 | 亚洲一区在线观看免费观看电影高清| 国产精品毛片一区二区三区| 欧美a级片一区| 久久精品女人的天堂av| 久久成人18免费观看| 欧美在线视频全部完| 亚洲性夜色噜噜噜7777| 欧美一二三区精品| 久久久久欧美精品| 久久综合成人精品亚洲另类欧美 | 激情综合网址| 国产伦精品一区| 国产精品久久久久av免费| 嫩草影视亚洲| 欧美精品日韩一区| 国产精品久久久久久久久免费| 欧美体内she精视频| 国产性做久久久久久| 亚洲黄色成人网| 99在线热播精品免费| 亚洲视频axxx| 欧美激情视频在线播放| 欧美视频福利| 国产日韩欧美综合一区| 亚洲精品国产精品国自产在线| 亚洲高清影视| 日韩午夜在线电影| 久久精品欧洲| 欧美日韩精品免费在线观看视频| 国产精品久久久久77777| 亚洲国产三级网| 欧美在线免费视频| 欧美福利一区二区| 亚洲精品免费一二三区| 欧美一区亚洲| 亚洲电影免费观看高清完整版| 欧美成在线视频| 国产精品推荐精品| 亚洲日本中文字幕| 农村妇女精品| 亚洲精品久久久久久久久久久久| 香蕉精品999视频一区二区| 欧美日韩国产在线看| 国产精品爱久久久久久久| 一个色综合导航| 欧美国产一区二区三区激情无套| 一区在线播放视频| 免费观看在线综合色| 国产精品黄视频| 噜噜噜久久亚洲精品国产品小说| 国产精品国产a级| 亚洲男女毛片无遮挡| 国产乱码精品| 久久亚洲美女| 亚洲国产精品激情在线观看 | 欧美日韩伦理在线| 亚洲制服少妇|