亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
欧美高清视频一二三区| 免费在线亚洲欧美| 亚洲国产精品精华液2区45 | 国产精品久久久久久妇女6080 | 欧美精品一区在线发布| 欧美一区中文字幕| 美女黄网久久| 国产精品乱子久久久久| 亚洲国产精品成人综合| 国产精品视频第一区| 亚洲电影欧美电影有声小说| 中文一区二区| 久久久精品久久久久| 欧美激情综合亚洲一二区| 国产精品久久久久久影视| 久久女同精品一区二区| 欧美日韩成人一区| 在线日韩精品视频| 久久久久国产精品午夜一区| 国产精品日韩在线一区| 一本色道久久99精品综合| 久久久亚洲一区| 国产精品美女诱惑| 在线一区二区三区四区五区| 欧美黑人一区二区三区| 久久精品成人| 国产欧美 在线欧美| 亚洲一本视频| 国产精品久久午夜| 中文一区二区在线观看| 欧美日韩国产成人在线免费| 亚洲美女av网站| 欧美久久婷婷综合色| 亚洲欧洲在线观看| 免费观看成人| 久久一二三区| 国内精品久久久久影院薰衣草| 欧美视频在线观看 亚洲欧| 一色屋精品亚洲香蕉网站| 小处雏高清一区二区三区| 欧美一区二区在线看| 国产精品视频网址| 国产日韩精品在线播放| 红桃视频亚洲| 久久久www成人免费无遮挡大片| 噜噜爱69成人精品| 在线观看亚洲精品| 亚洲第一毛片| 久久精品在线观看| 在线观看中文字幕不卡| 欧美成人免费小视频| 老司机免费视频久久| 欧美国产日韩xxxxx| 亚洲乱码视频| 国产精品一区二区男女羞羞无遮挡 | 国产亚洲精品aa| 亚洲一区二区在| 日韩亚洲综合在线| 欧美日本在线看| 国产日韩一区在线| 香蕉久久久久久久av网站 | 久久精品在这里| 狠狠色综合网| 欧美激情免费在线| 亚洲六月丁香色婷婷综合久久| 制服丝袜激情欧洲亚洲| 欧美另类在线观看| 亚洲男人影院| 今天的高清视频免费播放成人| 99riav1国产精品视频| 欧美精品成人| 永久域名在线精品| 亚洲性人人天天夜夜摸| 国产一区日韩欧美| 这里只有精品视频在线| 精品成人国产在线观看男人呻吟| 在线亚洲欧美视频| 国产精品婷婷| 欧美精品网站| 蜜桃av综合| 欧美亚洲一区二区在线| 激情综合网址| 国产嫩草一区二区三区在线观看| 国际精品欧美精品| 久久国产精品99国产精| 亚洲激情在线播放| 国产午夜精品久久久| 亚洲黄色免费电影| 亚洲一区国产视频| 国产日韩精品视频一区二区三区| 亚洲精品乱码久久久久久黑人| 性亚洲最疯狂xxxx高清| 黑人中文字幕一区二区三区| 久久久久久9| 亚洲国内精品在线| 伊人色综合久久天天五月婷| 国产精品a久久久久久| 麻豆精品精华液| 亚洲欧美日韩在线一区| 亚洲深夜福利| 欧美激情在线观看| 久久成人精品一区二区三区| 99精品视频免费全部在线| 欧美日韩国产a| 久久黄色级2电影| 午夜精品在线视频| 99国产精品99久久久久久| 亚洲高清在线精品| 在线观看成人小视频| 久久午夜av| 久久午夜视频| 亚洲欧洲在线一区| 亚洲国产精品免费| 欧美精品久久久久久久| 亚洲欧洲精品成人久久奇米网| 欧美va天堂| 欧美成人亚洲成人日韩成人| 美国十次了思思久久精品导航| 亚洲国产精品热久久| 亚洲国产欧美一区二区三区丁香婷| 蘑菇福利视频一区播放| 女仆av观看一区| 欧美精品一区二区三区视频| 亚洲一区二区三区免费视频| 夜夜精品视频一区二区| 日韩一区二区久久| 亚洲欧美一区二区精品久久久| 国产一区二区三区四区| 一色屋精品亚洲香蕉网站| 亚洲精品久久久久久一区二区| 国产嫩草影院久久久久 | 欧美精品一区在线观看| 欧美日韩精品系列| 亚洲欧美国产日韩天堂区| 国产精品你懂的在线欣赏| 国产精品一区2区| 在线看日韩av| 亚洲国产精品一区在线观看不卡 | 永久域名在线精品| 激情久久久久久久久久久久久久久久| 欧美一级大片在线免费观看| 欧美在线视频免费| 久久精品国产清高在天天线| 欧美日韩精品久久久| 国产亚洲激情视频在线| 日韩视频在线免费| 欧美中文字幕在线观看| 激情欧美一区二区三区| 亚洲精品一区在线观看| 欧美一区二区在线| 欧美日韩精品免费在线观看视频| 性娇小13――14欧美| 欧美精品v国产精品v日韩精品 | 日韩视频一区二区三区在线播放免费观看 | 国产自产2019最新不卡| 91久久黄色| 久久久久久久久蜜桃| 一区二区高清视频在线观看| 久久精品国产亚洲高清剧情介绍| 亚洲欧美日韩高清| 欧美成人自拍| 黄色成人在线网站| 午夜精品一区二区三区电影天堂| 一区二区三区精品视频| 久久噜噜亚洲综合| 国产午夜精品一区二区三区欧美| 国产精品乱码人人做人人爱| 一区二区三区精品在线| 欧美日韩成人一区| 亚洲激情电影中文字幕| 久久久久久亚洲综合影院红桃| 久久婷婷综合激情| 国产揄拍国内精品对白 | 久久国产欧美精品| 亚洲欧美国产视频| 欧美怡红院视频一区二区三区| 欧美一区二区三区免费看| 欧美日韩在线不卡| 一区二区高清视频| 欧美视频国产精品| 亚洲影视综合| 国产精品久久久久毛片大屁完整版 | 国产精品成人久久久久| 亚洲美女色禁图| 免费看成人av| 亚洲高清成人| 欧美精品二区| 中国成人在线视频| 国产精品露脸自拍| 性感少妇一区| 国语自产在线不卡| 亚洲人成亚洲人成在线观看| 亚洲午夜在线观看| 久久av一区二区三区漫画| 国产精品麻豆成人av电影艾秋| 亚洲第一精品福利| 欧美韩国日本一区| 亚洲午夜激情免费视频| 国产视频久久久久久久| 免费亚洲视频|