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

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

Process<b>OR</b>s

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數轉換器,使用開關電容逐次逼近技術完成A/D轉換過程。由于是串行輸入結構,能夠節省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應用。 TLC2543的特點 (1)12位分辯率A/D轉換器; (2)在工作溫度范圍內10μs轉換時間; (3)11個模擬輸入通道; (4)3路內置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉換結束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導; (10)可編程輸出數據長度。 TLC2543的引腳排列及說明    TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double  sum_final1; double  sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe};  void delay(unsigned char b)   //50us {           unsigned char a;           for(;b>0;b--)                     for(a=22;a>0;a--); }  void display(uchar a,uchar b,uchar c,uchar d) {    P0=duan[a]|0x80;    P2=wei[0];    delay(5);    P2=0xff;    P0=duan[b];    P2=wei[1];    delay(5);   P2=0xff;   P0=duan[c];   P2=wei[2];   delay(5);   P2=0xff;   P0=duan[d];   P2=wei[3];   delay(5);   P2=0xff;   } uint read(uchar port) {   uchar  i,al=0,ah=0;   unsigned long ad;   clock=0;   _cs=0;   port<<=4;   for(i=0;i<4;i++)  {    d_in=port&0x80;    clock=1;    clock=0;    port<<=1;  }   d_in=0;   for(i=0;i<8;i++)  {    clock=1;    clock=0;  }   _cs=1;   delay(5);   _cs=0;   for(i=0;i<4;i++)  {    clock=1;    ah<<=1;    if(d_out)ah|=0x01;    clock=0; }   for(i=0;i<8;i++)  {    clock=1;    al<<=1;    if(d_out) al|=0x01;    clock=0;  }   _cs=1;   ad=(uint)ah;   ad<<=8;   ad|=al;   return(ad); }  void main()  {   uchar j;   sum=0;sum1=0;   sum_final=0;   sum_final1=0;    while(1)  {              for(j=0;j<128;j++)          {             sum1+=read(1);             display(a1,b1,c1,d1);           }            sum=sum1/128;            sum1=0;            sum_final1=(sum/4095)*5;            sum_final=sum_final1*1000;            a1=(int)sum_final/1000;            b1=(int)sum_final%1000/100;            c1=(int)sum_final%1000%100/10;            d1=(int)sum_final%10;            display(a1,b1,c1,d1);           }         } 

    標簽: 2543 TLC

    上傳時間: 2013-11-19

    上傳用戶:shen1230

  • PCA9549 Octal bus switch with

    The PCA9549 provides eight bits of high speed TTL-compatible bus switching controlledby the I2C-bus. The low ON-state resistance of the switch allows connections to be madewith minimal propagation delay. Any individual A to B channel or combination of channelscan be selected via the I2C-bus, determined by the contents of the programmable Controlregister. When the I2C-bus bit is HIGH (logic 1), the switch is on and data can flow fromPort A to Port B, or vice versa. When the I2C-bus bit is LOW (logic 0), the switch is open,creating a high-impedance state between the two ports, which stops the data flow.An active LOW reset input (RESET) allows the PCA9549 to recover from a situationwhere the I2C-bus is stuck in a LOW state. Pulling the RESET pin LOW resets the I2C-busstate machine and causes all the bits to be open, as does the internal power-on resetfunction.

    標簽: switch Octal 9549 with

    上傳時間: 2014-11-22

    上傳用戶:xcy122677

  • RSA算法 :首先, 找出三個數, p, q, r, 其中 p, q 是兩個相異的質數, r 是與 (p-1)(q-1) 互質的數...... p, q, r 這三個數便是 person_key

    RSA算法 :首先, 找出三個數, p, q, r, 其中 p, q 是兩個相異的質數, r 是與 (p-1)(q-1) 互質的數...... p, q, r 這三個數便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 這個 m 一定存在, 因為 r 與 (p-1)(q-1) 互質, 用輾轉相除法就可以得到了..... 再來, 計算 n = pq....... m, n 這兩個數便是 public_key ,編碼過程是, 若資料為 a, 將其看成是一個大整數, 假設 a < n.... 如果 a >= n 的話, 就將 a 表成 s 進位 (s

    標簽: person_key RSA 算法

    上傳時間: 2013-12-14

    上傳用戶:zhuyibin

  • 數字運算

    數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標簽: 數字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

  • The government of a small but important country has decided that the alphabet needs to be streamline

    The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition

    標簽: government streamline important alphabet

    上傳時間: 2015-06-09

    上傳用戶:weixiao99

  • 一:需求分析 1. 問題描述 魔王總是使用自己的一種非常精練而抽象的語言講話,沒人能聽懂,但他的語言是可逐步解釋成人能聽懂的語言,因為他的語言是由以下兩種形式的規則由人的語言逐步抽象上去的: -

    一:需求分析 1. 問題描述 魔王總是使用自己的一種非常精練而抽象的語言講話,沒人能聽懂,但他的語言是可逐步解釋成人能聽懂的語言,因為他的語言是由以下兩種形式的規則由人的語言逐步抽象上去的: ----------------------------------------------------------- (1) a---> (B1)(B2)....(Bm) (2)[(op1)(p2)...(pn)]---->[o(pn)][o(p(n-1))].....[o(p1)o] ----------------------------------------------------------- 在這兩種形式中,從左到右均表示解釋.試寫一個魔王語言的解釋系統,把 他的話解釋成人能聽得懂的話. 2. 基本要求: 用下述兩條具體規則和上述規則形式(2)實現.設大寫字母表示魔王語言的詞匯 小寫字母表示人的語言的詞匯 希臘字母表示可以用大寫字母或小寫字母代換的變量.魔王語言可含人的詞匯. (1) B --> tAdA (2) A --> sae 3. 測試數據: B(ehnxgz)B 解釋成 tsaedsaeezegexenehetsaedsae若將小寫字母與漢字建立下表所示的對應關系,則魔王說的話是:"天上一只鵝地上一只鵝鵝追鵝趕鵝下鵝蛋鵝恨鵝天上一只鵝地上一只鵝". | t | d | s | a | e | z | g | x | n | h | | 天 | 地 | 上 | 一只| 鵝 | 追 | 趕 | 下 | 蛋 | 恨 |

    標簽: 語言 抽象

    上傳時間: 2014-12-02

    上傳用戶:jkhjkh1982

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    標簽: converts Toolbox complex logical

    上傳時間: 2016-02-12

    上傳用戶:a673761058

  • segment,一個簡單的中文分詞程序

    segment,一個簡單的中文分詞程序,命令行如下: java -jar segmenter.jar [-b|-g|-8|-s|-t] inputfile.txt -b Big5, -g GB2312, -8 UTF-8, -s simp. chars, -t trad. chars Segmented text will be saved to inputfile.txt.seg

    標簽: segment 程序

    上傳時間: 2014-01-04

    上傳用戶:ynzfm

  • 垃圾文件清理: 垃圾文件清理: 垃圾文件清理 Clean Windows Programs: :rd_dir if " R:~-2,1 "=="" set R=" R:~1,-2 "

    垃圾文件清理: 垃圾文件清理: 垃圾文件清理 Clean Windows Programs: :rd_dir if " R:~-2,1 "=="\" set R=" R:~1,-2 " if not exist R goto :DD cd /d R for /f "delims=" a in ( dir/ad/b ) do rd /s /q " a" del /f /s /q * cdrd /s /q R :DD Clean Windows Programs: :rd_dir if " R:~-2,1 "=="\" set R=" R:~1,-2 " if not exist R goto :DD cd /d R for /f "delims=" a in ( dir/ad/b ) do rd /s /q " a" del /f /s /q * cdrd /s /q R :DD

    標簽: Programs Windows rd_dir Clean

    上傳時間: 2017-04-21

    上傳用戶:lanhuaying

  • 將魔王的語言抽象為人類的語言:魔王語言由以下兩種規則由人的語言逐步抽象上去的:α-〉β1β2β3…βm ;θδ1δ2…-〉θδnθδn-1…θδ1 設大寫字母表示魔王的語言

    將魔王的語言抽象為人類的語言:魔王語言由以下兩種規則由人的語言逐步抽象上去的:α-〉β1β2β3…βm ;θδ1δ2…-〉θδnθδn-1…θδ1 設大寫字母表示魔王的語言,小寫字母表示人的語言B-〉tAdA,A-〉sae,eg:B(ehnxgz)B解釋為tsaedsaeezegexenehetsaedsae對應的話是:“天上一只鵝地上一只鵝鵝追鵝趕鵝下鵝蛋鵝恨鵝天上一只鵝地上一只鵝”。(t-天d-地s-上a-一只e-鵝z-追g-趕x-下n-蛋h-恨)

    標簽: 語言 抽象 字母

    上傳時間: 2013-12-19

    上傳用戶:aix008

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美午夜一区| 久久一区精品| 国产精品久久久对白| 欧美日韩第一区| 国产精品麻豆va在线播放| 欧美丝袜一区二区| 国产精品男人爽免费视频1| 国产自产女人91一区在线观看| 亚洲国产另类 国产精品国产免费| 亚洲国产精品ⅴa在线观看| 亚洲欧美欧美一区二区三区| 久久成人这里只有精品| 女人香蕉久久**毛片精品| 欧美色大人视频| 精久久久久久| 亚洲一区久久| 欧美巨乳在线观看| 国产一区二区三区在线免费观看| 亚洲国产精品久久久久秋霞蜜臀| 性欧美暴力猛交69hd| 欧美极品一区| 激情另类综合| 亚洲精品视频免费| 久久香蕉精品| 又紧又大又爽精品一区二区| 欧美专区日韩视频| 国产精品社区| 亚洲视频1区| 国产精品久久久久久五月尺| 亚洲三级网站| 国产真实久久| 亚洲综合首页| 欧美日精品一区视频| 影音先锋中文字幕一区| 久久精品99| 国产亚洲欧美日韩精品| 亚洲男人av电影| 欧美日本国产一区| 亚洲精品四区| 欧美日韩在线看| 99精品免费网| 欧美日韩精品免费看| 亚洲激情电影中文字幕| 另类亚洲自拍| 亚洲人成77777在线观看网| 麻豆国产精品va在线观看不卡| 国产情人综合久久777777| 一本在线高清不卡dvd| 欧美日韩国产探花| 亚洲精品一二三区| 欧美体内she精视频在线观看| 99在线观看免费视频精品观看| 欧美不卡在线| 亚洲日本电影在线| 欧美午夜性色大片在线观看| 午夜精品久久久久影视| 国语精品中文字幕| 免费看的黄色欧美网站| 亚洲激情不卡| 欧美日韩日本视频| 欧美一区二区私人影院日本| 国产午夜精品一区理论片飘花| 欧美一级视频一区二区| 国产人成精品一区二区三| 欧美国产大片| 一本久久a久久免费精品不卡| 欧美日韩一区二区三区视频| 亚洲视频精选在线| 国产综合精品| 欧美色播在线播放| 久久久女女女女999久久| 在线观看精品| 国产精品毛片a∨一区二区三区| 亚洲欧美日韩中文视频| 国产一区二区电影在线观看| 久久中文字幕一区二区三区| 亚洲精品视频啊美女在线直播| 国产精品日韩一区二区三区| 男男成人高潮片免费网站| 亚洲免费观看在线观看| 国产精品免费视频xxxx| 亚洲欧美日韩国产另类专区| 禁久久精品乱码| 欧美黄在线观看| 欧美在线不卡视频| 亚洲伊人久久综合| 一本色道久久综合狠狠躁的推荐| 国产午夜亚洲精品理论片色戒| 欧美国产精品| 久久精品视频在线播放| 在线亚洲观看| 亚洲精品乱码久久久久久蜜桃麻豆 | 99国产精品国产精品久久| 欧美亚州在线观看| 牛人盗摄一区二区三区视频| 亚洲一区二区三区精品在线| 亚洲国产高清一区| 国产欧美精品一区二区色综合 | 日韩午夜电影av| 伊人久久婷婷色综合98网| 欧美日韩在线电影| 欧美精品在线极品| 欧美福利网址| 免费短视频成人日韩| 久久精品人人做人人综合| 欧美一区二区精美| 校园激情久久| 欧美一区二区三区在线看 | 国产精品久久波多野结衣| 老牛国产精品一区的观看方式| 亚洲一区在线视频| 亚洲一区影音先锋| 新片速递亚洲合集欧美合集| 亚洲欧美日韩视频二区| 亚洲一品av免费观看| 性欧美暴力猛交另类hd| 久久激情综合网| 久久天天综合| 欧美va天堂在线| 欧美天天在线| 国产日韩欧美二区| 在线观看欧美视频| 夜夜精品视频| 欧美在线一级视频| 久热这里只精品99re8久| 免费日韩视频| 欧美日韩视频在线观看一区二区三区| 欧美日韩综合一区| 国内精品久久久久久| 亚洲高清久久| 亚洲中字在线| 久久综合亚州| 国产精品久久久久久久电影| 国产一二三精品| 亚洲精品中文字| 欧美在线观看一区二区三区| 欧美福利一区二区| 国产亚洲毛片| 亚洲网址在线| 久久久九九九九| 欧美日韩天堂| 亚洲第一区在线观看| 亚洲午夜小视频| 美女网站在线免费欧美精品| 欧美jizzhd精品欧美喷水| 国产日韩成人精品| 一本色道久久综合精品竹菊| 久久久夜精品| 国产日韩视频| 亚洲欧美激情四射在线日| 欧美国产日韩一区二区| 国产综合色在线| 午夜精品一区二区三区在线播放| 欧美在线观看网址综合| 欧美色一级片| 99精品热6080yy久久| 亚洲欧美国产日韩天堂区| 欧美大片在线观看一区| 国产一区二区观看| 亚洲欧美日韩一区| 欧美激情成人在线| 亚洲成色999久久网站| 欧美在线亚洲| 国产欧美日韩一区二区三区在线| 一区二区三区精品国产| 欧美激情二区三区| 亚洲精品久久久久| 欧美 日韩 国产 一区| 国产亚洲女人久久久久毛片| 亚洲免费伊人电影在线观看av| 欧美国产亚洲另类动漫| 在线国产欧美| 久久女同精品一区二区| 黄色成人av网站| 久久亚洲精选| 亚洲国产精品t66y| 欧美日韩精品免费| 一本色道**综合亚洲精品蜜桃冫| 欧美日韩国产区| 欧美日韩国产片| 亚洲精品久久| 欧美日韩国产丝袜另类| avtt综合网| 国产精品嫩草久久久久| 欧美一级二级三级蜜桃| 国产欧美不卡| 久久国产精品久久久久久久久久 | 欧美综合国产| 国内久久精品| 免费短视频成人日韩| 亚洲乱亚洲高清| 国产精品ⅴa在线观看h| 欧美一区综合| 亚洲国产一区在线| 欧美日韩亚洲三区| 欧美一区二区三区在| 亚洲黄色大片| 国产精品日韩精品欧美精品| 久久久人成影片一区二区三区| 亚洲夫妻自拍|