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

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

msp-FET

  • MSP430應用手冊

    MSP430應用手冊,詳細介紹了MSP的應用!

    標簽: MSP 430 應用手冊

    上傳時間: 2013-11-25

    上傳用戶:小儒尼尼奧

  • iar key

    5.5 register for msp 430,enjoy

    標簽: iar 5.5

    上傳時間: 2015-05-20

    上傳用戶:CrazyPanda

  • launchpad口袋實驗平臺.msp430

    MSP-EXP430G2 LaunchPad (以下簡稱 G2) 是 TI 公司推出的 1 款 MSP430 開發板.本書編寫的初衷是為擴展板編寫實驗教程,換句話說,書是擴展板的衍生品。

    標簽: launchpad 430 msp 實驗

    上傳時間: 2016-06-15

    上傳用戶:想個名字這么難

  • 《晶體管電路設計(上)》

    《晶體管電路設計(上)》  《晶體管電路設計》(上)是“實用電子電路設計叢書”之一,共分上下二冊。《晶體管電路設計》(上)作為上冊主要內容有晶體管工作原理,放大電路的性能、設計與應用,射極跟隨器的性能與應用電路,小型功率放大電路的設計與應用,功率放大器的設計與制作,共基極電路的性能、設計與應用,視頻選擇器的設計與制作,共射-共基電路的設計,負反饋放大電路的設計,直流穩定電源的設計與制作,差動放大電路的設計,運算放大電路的設計與制作,下冊則共分15章,主要介紹FET、功率MOS、開關電源電路等。《晶體管電路設計》(上)面向實際需要,理論聯系實際,通過大量具體的實驗,通俗易懂地介紹晶體管電路設計的基礎知識。

    標簽: 晶體管 電路設計

    上傳時間: 2016-07-14

    上傳用戶:煙草圈兒

  • MSP430F5529

    MSP430F5529 實驗板 (MSP-EXP430F5529) 是一個用于 MSP430F5529 器件(來自最新一代具有集成 USB 的 MSP430 器件)的開發平臺。該實驗板與 CC2520EMK 等眾多 TI 低功耗射頻無線評估模塊兼容。該實驗板能幫助設計者快速使用新的 F55xx MCU 進行學習和開發,其中 F55xx MCU 為能量收集、無線傳感以及自動抄表基礎設施 (AMI) 等應用提供了業界最低工作功耗的集成 USB、更大的內存和領先的集成技術

    標簽: F5529 430F 5529 MSP 430

    上傳時間: 2016-07-23

    上傳用戶:alienfte

  • Arduino控制器使用圖文教程

    Arduino 是一塊基于開放原始代碼的Simple i/o 平臺,并且具有使用類似java,C 語言的開發環境。讓您可以快速 使用Arduino 語言與Flash 或Processing…等軟件,作出互動作品。Arduino 可以使用開發完成的電子元件例如Switch 或Sensors 或其他控制器、LED、步進電機或其他輸出裝置。Arduino 也可以獨立運作成為一個可以跟軟件溝通的平臺,例如說:flash processing Max/MSP VVVV 或其他互動軟件…   Arduino 開發IDE界面基于開放原始碼原則,可以讓您免費下載使用開發出更多令人驚奇的互動作品。 什么是Roboduino? DFRduino 與Arduino 完全兼容,只是在原來的基礎上作了些改進。

    標簽: Arduino控制器 Arduino使用教程

    上傳時間: 2016-09-19

    上傳用戶:xinhoujue

  • 運動會源代碼

    #include <malloc.h>       #include <stdio.h>       #include <stdlib.h>       #include <string.h>       #define NULL 0      #define MaxSize 30          typedef struct athletestruct /*運動員*/     {         char name[20];          int score; /*分數*/         int range; /**/         int item; /*項目*/     }ATH;     typedef struct schoolstruct /*學校*/     {         int count; /*編號*/         int serial; /**/          int menscore; /*男選手分數*/         int womenscore; /*女選手分數*/         int totalscore; /*總分*/         ATH athlete[MaxSize]; /**/         struct schoolstruct *next;      }SCH;         int nsc,msp,wsp;      int ntsp;      int i,j;      int overgame;      int serial,range;      int n;      SCH *head,*pfirst,*psecond;      int *phead=NULL,*pafirst=NULL,*pasecond=NULL;     void create();         void input ()     {         char answer;          head = (SCH *)malloc(sizeof(SCH)); /**/         head->next = NULL;         pfirst = head;          answer = 'y';         while ( answer == 'y' )         {         Is_Game_DoMain:         printf("\nGET Top 5 when odd\nGET Top 3 when even");         printf("\n輸入運動項目序號 (x<=%d):",ntsp);         scanf("%d",pafirst);         overgame = *pafirst;         if ( pafirst != phead )         {             for ( pasecond = phead ; pasecond < pafirst ; pasecond ++ )             {                 if ( overgame == *pasecond )                 {                     printf("\n這個項目已經存在請選擇其他的數字\n");                     goto Is_Game_DoMain;                 }             }         }         pafirst = pafirst + 1;         if ( overgame > ntsp )         {             printf("\n項目不存在");             printf("\n請重新輸入");             goto Is_Game_DoMain;         }         switch ( overgame%2 )         {         case 0: n = 3;break;         case 1: n = 5;break;         }         for ( i = 1 ; i <= n ; i++ )         {         Is_Serial_DoMain:         printf("\n輸入序號 of the NO.%d (0<x<=%d): ",i,nsc);                 scanf("%d",&serial);         if ( serial > nsc )          {             printf("\n超過學校數目,請重新輸入");             goto Is_Serial_DoMain;         }         if ( head->next == NULL )          {             create();         }         psecond = head->next ;          while ( psecond != NULL )          {             if ( psecond->serial == serial )             {                 pfirst = psecond;                 pfirst->count = pfirst->count + 1;                 goto Store_Data;             }             else             {                 psecond = psecond->next;             }         }         create();         Store_Data:                 pfirst->athlete[pfirst->count].item = overgame;         pfirst->athlete[pfirst->count].range = i;         pfirst->serial = serial;         printf("Input name:) : ");                 scanf("%s",pfirst->athlete[pfirst->count].name);         }         printf("\n繼續輸入運動項目(y&n)?");         answer = getchar();         printf("\n");         }     }         void calculate() /**/     {         pfirst = head->next;         while ( pfirst->next != NULL )         {             for (i=1;i<=pfirst->count;i++)             {                 if ( pfirst->athlete[i].item % 2 == 0 )                  {                     switch (pfirst->athlete[i].range)                     {                     case 1:pfirst->athlete[i].score = 5;break;                     case 2:pfirst->athlete[i].score = 3;break;                     case 3:pfirst->athlete[i].score = 2;break;                     }                 }                 else                  {                     switch (pfirst->athlete[i].range)                     {                     case 1:pfirst->athlete[i].score = 7;break;                     case 2:pfirst->athlete[i].score = 5;break;                     case 3:pfirst->athlete[i].score = 3;break;                     case 4:pfirst->athlete[i].score = 2;break;                     case 5:pfirst->athlete[i].score = 1;break;                     }                 }                 if ( pfirst->athlete[i].item <=msp )                  {                     pfirst->menscore = pfirst->menscore + pfirst->athlete[i].score;                 }                 else                  {                     pfirst->womenscore = pfirst->womenscore + pfirst->athlete[i].score;                 }             }             pfirst->totalscore = pfirst->menscore + pfirst->womenscore;             pfirst = pfirst->next;         }     }         void output()     {         pfirst = head->next;         psecond = head->next;         while ( pfirst->next != NULL )          {             // clrscr();              printf("\n第%d號學校的結果成績:",pfirst->serial);             printf("\n\n項目的數目\t學校的名字\t分數");             for (i=1;i<=ntsp;i++)              {                 for (j=1;j<=pfirst->count;j++)                  {                     if ( pfirst->athlete[j].item == i )                     {                                                                         printf("\n %d\t\t\t\t\t\t%s\n %d",i,pfirst->athlete[j].name,pfirst->athlete[j].score);break;                                             }                 }             }             printf("\n\n\n\t\t\t\t\t\t按任意建 進入下一頁");             getchar();             pfirst = pfirst->next;         }     //  clrscr();          printf("\n運動會結果:\n\n學校編號\t男運動員成績\t女運動員成績\t總分");         pfirst = head->next;         while ( pfirst->next != NULL )         {             printf("\n %d\t\t %d\t\t %d\t\t %d",pfirst->serial,pfirst->menscore,pfirst->womenscore,pfirst->totalscore);             pfirst = pfirst->next;         }         printf("\n\n\n\t\t\t\t\t\t\t按任意建結束");         getchar();     }         void create()     {                 pfirst = (struct schoolstruct *)malloc(sizeof(struct schoolstruct));         pfirst->next = head->next ;         head->next = pfirst ;                 pfirst->count = 1;         pfirst->menscore = 0;         pfirst->womenscore = 0;         pfirst->totalscore = 0;     }     void Save()     {FILE *fp;     if((fp = fopen("school.dat","wb"))==NULL)     {printf("can't open school.dat\n");     fclose(fp);     return;     }     fwrite(pfirst,sizeof(SCH),10,fp);     fclose(fp);     printf("文件已經成功保存\n");     }         void main()     {         system("cls");         printf("\n\t\t\t 運動會分數統計\n");         printf("輸入學校數目 (x>= 5):");         scanf("%d",&nsc);          printf("輸入男選手的項目(x<=20):");         scanf("%d",&msp);          printf("輸入女選手項目(<=20):");         scanf("%d",&wsp);          ntsp = msp + wsp;                  phead = (int *)calloc(ntsp,sizeof(int));         pafirst = phead;         pasecond = phead;         input();         calculate();          output();         Save();     }             

    標簽: 源代碼

    上傳時間: 2016-12-28

    上傳用戶:150501

  • MSP430 LaunchPad介紹

    LaunchPad,MSP,430sdsfasfasfasMSP430 LaunchPad介紹

    標簽: LaunchPad MSP 430

    上傳時間: 2017-06-12

    上傳用戶:lijian0714

  • icircuit v1.11.2電路仿真軟件

    本軟件為icircuit v1.11.2,適用于Android平臺。icircuit是一款電路仿真設計程序,無論你是學生,計算機業余愛好者還是工程師,這都將是你最好的模擬工具。你可以使用它將任何支持的仿真元器件連接在一起,并各自設置其屬性。軟件介紹:iCircuit不像其他的模擬程序需要靜止測量或者花費很長時間來設置參數。僅需簡單的幾步操作,就可以媲美花費很多時間連接好的實際電路!我們提供了超過30種元件來建立你的仿真電路,從簡單的電阻、電容,到MOS管、FET管和數字門元件,一應俱全。模擬程序可以使用模擬的萬用表來探測電路的參數,并即時顯示電壓和電流。如果你想看到電路參數如何隨著時間的推移而變化,你可以使用內置的示波器來觀察。我們的示波器還支持同時跟蹤多個信號并描繪在同一個坐標系中,非常易于觀察比較支持元件:* 信號發生器,電壓源,電流源* 電阻,電容,電感* SPST/ SPDT開關,按鈕,繼電器* 二極管,晶體管,MOSFET* 揚聲器,麥克風,蜂鳴器,直流電動機和LED* ADC和DAC* 邏輯門:與,或,非,或非,異或* JK觸發器和D觸發器* 377400系列* 7段顯示器和驅動程序

    標簽: icircuit 電路仿真 Android

    上傳時間: 2022-01-06

    上傳用戶:

  • PW1555-2.0.pdf規格書

    PW1555 is a programmable current limit switch with input voltage range selection and outputvoltage clamping. Extremely low RDS(ON) of the integrated protection N-channel FET helps toreduce power loss during the normal operation. Programmable soft-start time controls the slew rateof the output voltage during the start-up time. Independent enable control allows the complicatedsystem sequencing control. It integrates the over-temperature protection shutdown andautorecovery with hystersis

    標簽: pw1555

    上傳時間: 2022-02-14

    上傳用戶:

主站蜘蛛池模板: 南开区| 乌兰县| 徐闻县| 镇原县| 古浪县| 江孜县| 霍州市| 麻阳| 多伦县| 定安县| 藁城市| 仪陇县| 常德市| 广宗县| 万州区| 锦州市| 定安县| 新建县| 通化县| 什邡市| 禹城市| 罗平县| 腾冲县| 河北省| 常宁市| 寻乌县| 任丘市| 名山县| 任丘市| 恩平市| 日喀则市| 周宁县| 阳新县| 金乡县| 哈密市| 金乡县| 门源| 那曲县| 正镶白旗| 丰顺县| 奉新县|