亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
亚洲国产成人av| 欧美三级日韩三级国产三级| 樱桃视频在线观看一区| 午夜精品理论片| 亚洲视频在线播放| 日韩系列欧美系列| 亚洲精品综合| 亚洲精品日日夜夜| 亚洲自拍偷拍麻豆| 99天天综合性| 欧美在线一级va免费观看| 久久亚洲精品网站| 国产精品啊啊啊| 国产麻豆精品theporn| 怡红院精品视频在线观看极品| 国产欧美日韩在线| 欧美日韩免费一区二区三区视频| 欧美日韩成人在线| 国产一区二区三区四区在线观看| 亚洲精品国产精品久久清纯直播| 久久久久久久久久久久久女国产乱| 韩国精品在线观看| 欧美日韩中文在线| 亚洲一区二区综合| 国产精品xvideos88| 99精品视频免费在线观看| 美女精品一区| 亚洲午夜精品| 1024亚洲| 久久成人久久爱| 国产欧美在线| 麻豆精品在线观看| 亚洲高清免费在线| 久久精品国产欧美亚洲人人爽| 国产精品国产三级国产专区53 | 亚洲国产导航| 欧美图区在线视频| 午夜精品一区二区三区在线播放 | 国产精品资源在线观看| 中日韩美女免费视频网址在线观看 | 欧美福利网址| 亚洲一区二区精品在线| 国产一区二区在线免费观看| 欧美日韩在线播| 欧美成人资源网| 免费观看亚洲视频大全| 欧美成人精品在线播放| 欧美成人激情在线| 欧美日韩免费区域视频在线观看| 欧美精品aa| 国产精品视频区| 亚洲福利在线视频| 一区二区三区欧美在线| 久久人人爽国产| 国产精品a久久久久久| 国模大胆一区二区三区| 亚洲人午夜精品免费| 亚洲一本大道在线| 久久免费一区| 欧美日韩一区在线| 欧美日韩精品国产| 欧美日韩国产首页在线观看| 久久精品国产2020观看福利| 国产欧美日韩三级| 免费亚洲一区二区| 欧美大片va欧美在线播放| 国产偷国产偷精品高清尤物| 国产一区二区三区的电影 | 久久久91精品国产| 国产视频在线观看一区二区三区| 中文在线资源观看网站视频免费不卡| 国际精品欧美精品 | 欧美日韩成人一区二区| 免费不卡在线观看av| 欧美在线免费观看| 先锋影音国产一区| 欧美午夜视频| 亚洲欧美中文另类| 欧美激情亚洲另类| 久久精品国产v日韩v亚洲| 欧美色精品在线视频| 欧美视频免费在线| 国产一区二区三区的电影 | 亚洲欧美日韩爽爽影院| 欧美连裤袜在线视频| 国产一区二区高清| 美女精品网站| 亚洲三级免费电影| 国产精品v片在线观看不卡| 国产日韩欧美三区| 激情综合自拍| 欧美精品一区二区久久婷婷| aa级大片欧美三级| 欧美成年视频| 国产精品自拍视频| 亚洲男人的天堂在线观看| 国产精品xvideos88| 久久久久久久一区二区| 99视频超级精品| 狠狠干综合网| 亚洲欧洲精品一区二区三区不卡| 欧美三级特黄| 国产精品久久久久国产a级| 欧美一区二区网站| 亚洲一级在线观看| 亚洲精品小视频在线观看| 国产精品成人一区二区网站软件 | 久久久91精品国产一区二区三区| 激情成人中文字幕| 国产精品久久久亚洲一区 | 欧美~级网站不卡| 日韩一二在线观看| 狠狠爱综合网| 激情小说另类小说亚洲欧美| 国产精品色婷婷| 国产精品嫩草影院一区二区| 欧美视频在线播放| 亚洲免费高清| 亚洲精品男同| av成人天堂| 国产精品高潮呻吟视频| 香蕉乱码成人久久天堂爱免费| 亚洲一区二区三区免费在线观看 | 99国产精品久久久久久久久久| 国产婷婷精品| 免费一级欧美片在线观看| 久久福利资源站| 欧美性猛交xxxx乱大交蜜桃 | 亚洲欧洲日本国产| 在线欧美日韩| 亚洲精品久久嫩草网站秘色| 亚洲视屏在线播放| 狠狠色综合色综合网络| 在线国产日韩| 亚洲国产一区视频| 亚洲男人的天堂在线aⅴ视频| 午夜精品久久久久久久久久久久| 久久爱www久久做| 美女主播一区| 国产亚洲一区二区三区在线观看 | 久久国产高清| 亚洲国产精品专区久久| 亚洲午夜精品17c| 欧美体内she精视频| 亚洲一区二区三区四区视频| 欧美1区2区视频| 国产欧美日韩亚州综合| 久久夜精品va视频免费观看| 久久久久欧美精品| 欧美先锋影音| 国产午夜精品全部视频在线播放| 欧美日韩综合在线| 国产精品乱子久久久久| 亚洲美女电影在线| 欧美日韩成人在线播放| 国内一区二区三区在线视频| 国产欧美在线观看| 欧美激情国产精品| 欧美午夜一区二区| 在线亚洲电影| 欧美精品手机在线| 国产精品成人一区二区| 国产欧美日本一区视频| 亚洲国产精品高清久久久| 一区二区三区成人| 亚洲一线二线三线久久久| 久久午夜精品一区二区| 欧美色图五月天| 国际精品欧美精品| 欧美成年视频| 亚久久调教视频| 免费在线观看精品| 国产精品国产a级| 亚洲高清在线| 欧美一区二区三区视频免费播放| 欧美国产极速在线| 欧美三级欧美一级| 亚洲国产精品传媒在线观看| 亚洲综合二区| 欧美久久久久中文字幕| 国产在线国偷精品产拍免费yy| 中国女人久久久| 欧美一区二区三区在线播放| 久久久精品日韩欧美| 欧美日韩国产综合视频在线观看| 欧美午夜精品| 国产一区二区高清| 99pao成人国产永久免费视频| 亚洲免费视频一区二区| 欧美黄色大片网站| 国产毛片精品国产一区二区三区| 国产一区美女| 亚洲欧美偷拍卡通变态| 欧美顶级少妇做爰| 亚洲国产精品黑人久久久 | 亚洲激情专区| 久久久av网站| 亚洲国产欧美一区二区三区同亚洲 | 91久久精品美女高潮| 欧美国产第一页|