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

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

fg<b>fd</b>g

  • 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

  • AVR單片機數碼管秒表顯示

    #include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,

    標簽: AVR 單片機 數碼管

    上傳時間: 2013-10-21

    上傳用戶:13788529953

  • 題目:利用條件運算符的嵌套來完成此題:學習成績>=90分的同學用A表示

    題目:利用條件運算符的嵌套來完成此題:學習成績>=90分的同學用A表示,60-89分之間的用B表示,60分以下的用C表示。 1.程序分析:(a>b)?a:b這是條件運算符的基本例子。

    標簽: gt 90 運算符 嵌套

    上傳時間: 2015-01-08

    上傳用戶:lifangyuan12

  • 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

  • 源代碼用動態規劃算法計算序列關系個數 用關系"<"和"="將3個數a

    源代碼\用動態規劃算法計算序列關系個數 用關系"<"和"="將3個數a,b,c依次序排列時,有13種不同的序列關系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要將n個數依序列,設計一個動態規劃算法,計算出有多少種不同的序列關系, 要求算法只占用O(n),只耗時O(n*n).

    標簽: lt 源代碼 動態規劃 序列

    上傳時間: 2013-12-26

    上傳用戶:siguazgb

  • 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運行說明: 請輸入初始功率S0,形如a+bi 請輸入無限大系統母線電壓V0 請輸入系統等值電抗矩陣B 矩陣B有以下元素組成的行矩陣 1正常運行時的系統直軸等值電抗Xd 2故障運行時的系統直軸等值電抗X d 3故障切除后的系統直軸等值電抗 請輸入慣性時間常數Tj 請輸入時段數N 請輸入哪個時段發生故障Ni 請輸入每時段間隔的時間dt

    標簽: 電力系統 計算 運行

    上傳時間: 2015-06-13

    上傳用戶:it男一枚

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    標簽: represented integers group items

    上傳時間: 2016-01-17

    上傳用戶:jeffery

  • 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

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品乱人伦一区二区| 欧美电影免费观看高清完整版| 亚洲视频在线播放| 欧美日韩一区二区免费在线观看 | 一区二区三区在线免费视频| 欧美在线一二三区| 136国产福利精品导航网址| 欧美成人精品在线| 亚洲男人av电影| 在线观看亚洲视频啊啊啊啊| 欧美激情一区二区久久久| 亚洲无吗在线| 极品少妇一区二区| 欧美精品日韩| 久久精品女人天堂| 夜色激情一区二区| 韩国av一区二区三区| 欧美日韩在线电影| 老色鬼精品视频在线观看播放| 亚洲精品一区二区三区樱花| 国产精品一区二区在线观看| 欧美va天堂va视频va在线| 性欧美1819性猛交| 亚洲美女诱惑| 黄页网站一区| 国产精品日韩| 欧美日韩一区在线观看视频| 久久久久久久久一区二区| 亚洲天堂男人| 亚洲精品综合精品自拍| 国内伊人久久久久久网站视频 | 国产一区二区三区免费观看| 欧美成年人在线观看| 亚洲欧美日韩一区二区三区在线 | 国产乱码精品1区2区3区| 欧美福利在线| 久久久综合网站| 欧美在线日韩| 亚洲综合清纯丝袜自拍| 99av国产精品欲麻豆| 在线观看国产精品网站| 国产性色一区二区| 国产欧美不卡| 国产精品一区二区欧美| 欧美精品色综合| 免费观看一级特黄欧美大片| 久久久精品视频成人| 小处雏高清一区二区三区| 亚洲少妇一区| 亚洲午夜日本在线观看| 一本色道综合亚洲| 一本色道久久综合狠狠躁篇的优点| 91久久精品日日躁夜夜躁国产| 精品96久久久久久中文字幕无| 国产亚洲亚洲| 狠狠色狠狠色综合日日五| 国产伦精品一区二区三区高清版| 国产精品久久久久久久电影 | 国产伦精品一区二区三区视频孕妇 | 欧美影片第一页| 亚洲欧美日本国产有色| 亚洲欧美成人| 久久大香伊蕉在人线观看热2| 欧美一区二区成人| 久久精品30| 欧美成人精品在线| 欧美日韩国内| 国产精品婷婷| 激情综合网址| 一本一本久久| 欧美一区二区三区久久精品茉莉花| 欧美一区2区视频在线观看| 久久久久久久91| 欧美精品亚洲精品| 国产精品日韩久久久| 国产亚洲精品bt天堂精选| 国产一区日韩一区| 在线免费观看视频一区| 日韩香蕉视频| 欧美一区二区视频免费观看| 久久天天躁夜夜躁狠狠躁2022| 欧美电影在线观看完整版| 国产精品vip| 国产亚洲毛片在线| 亚洲国产影院| 性色av一区二区三区| 欧美成人免费在线观看| 欧美日韩一区二区三区在线观看免| 国产精品福利影院| 一区二区视频免费在线观看 | 亚洲在线观看免费视频| 欧美一区二区在线免费观看| 久久先锋影音av| 国产精品www色诱视频| 国产一区二区三区电影在线观看| 亚洲第一精品福利| 亚洲在线一区二区三区| 久久精品毛片| 国产精品乱子久久久久| 在线欧美电影| 欧美一区二区网站| 欧美日韩一区二区精品| 国内成人精品2018免费看| 日韩亚洲欧美成人一区| 久久综合九色综合欧美就去吻| 欧美日韩一区二区在线观看| 雨宫琴音一区二区在线| 亚洲一品av免费观看| 欧美福利视频在线| 国语自产精品视频在线看| 亚洲午夜伦理| 欧美日韩大片| 亚洲精品视频一区| 乱人伦精品视频在线观看| 国产欧美日韩亚洲精品| 中日韩在线视频| 欧美激情一区二区三区蜜桃视频| 国产私拍一区| 性欧美大战久久久久久久免费观看| 欧美高清视频一区| 樱桃国产成人精品视频| 午夜在线视频观看日韩17c| 欧美日韩一本到| 亚洲精品日产精品乱码不卡| 久久都是精品| 国产亚洲精品一区二区| 9久re热视频在线精品| 欧美1区免费| 黄色一区二区在线| 欧美影院久久久| 国产精品综合| 亚洲欧美制服另类日韩| 国产精品毛片| 午夜精品久久久久久久白皮肤| 国产精品乱码妇女bbbb| 亚洲影音一区| 欧美午夜精品久久久久久孕妇| 日韩特黄影片| 欧美午夜精品理论片a级大开眼界| 最新国产精品拍自在线播放| 欧美韩日一区| 99精品福利视频| 欧美午夜片欧美片在线观看| 夜夜嗨av一区二区三区网站四季av | 国产精品分类| 亚洲自拍偷拍网址| 国产喷白浆一区二区三区| 欧美一区二区三区久久精品茉莉花 | 欧美成人蜜桃| 99精品欧美一区二区蜜桃免费| 欧美精品一区二区精品网| 日韩午夜视频在线观看| 欧美视频一区在线| 欧美亚洲午夜视频在线观看| 国产婷婷精品| 亚洲免费影视| 国产欧美一区二区三区视频| 狠狠久久婷婷| 欧美激情精品久久久久久变态| 欧美日韩精品一本二本三本| 亚洲女女女同性video| 国产午夜精品福利| 日韩一级免费观看| 99国内精品久久| 国产精品久久久久久久久久免费看| 亚洲男人的天堂在线观看| 欧美视频观看一区| 免费一级欧美片在线播放| 午夜在线一区二区| 亚洲欧美日本在线| 在线视频日本亚洲性| 激情综合网激情| 猛男gaygay欧美视频| 在线看一区二区| 国产精品国产三级国产普通话三级 | 欧美日本久久| 欧美日韩亚洲免费| 黄色一区二区在线观看| 亚洲精品1234| 久久精品视频免费| 极品少妇一区二区三区| 亚洲综合日韩中文字幕v在线| 日韩视频免费观看| 9色精品在线| 欧美在线亚洲| 最新亚洲一区| 亚洲清纯自拍| 亚洲精品视频啊美女在线直播| 亚洲福利专区| 亚洲精品专区| 亚洲一级黄色| 欧美在线观看视频一区二区| 久久精品99久久香蕉国产色戒| 久久精品1区| 男人的天堂成人在线| 欧美国产日本在线| 欧美三区美女| 国产亚洲日本欧美韩国| 在线日韩av片| 一区二区三区日韩欧美|