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

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

Byte-of-python-chinese-edition

  • 簡明python 教程

    Python語言是少有的一種可以稱得上即簡單又功能強大的編程語言。你將驚喜地發現Python語言是多么地簡單,它注重的是如何解決問題而不是編程語言的語法和結構。Python的官方介紹是:Python是一種簡單易學,功能強大的編程語言,它有高效率的高層數據結構,簡單而有效地實現面向對象編程。Python簡潔的語法和對動態輸入的支持,再加上解釋性語言的本質,使得它在大多數平臺上的許多領域都是一個理想的腳本語言,特別適用于快速的應用程序開發。我會在下一節里詳細地討論Python的這些特點。

    標簽: python 教程

    上傳時間: 2013-10-15

    上傳用戶:dbs012280

  • PCA9544A 4channel I2C multiple

    The PCA9544A provides 4 interrupt inputs, one for each channeland one open drain interrupt output. When an interrupt is generated byany device, it will be detected by the PCA9544A and the interruptoutput will be driven LOW. The channel need not be active fordetection of the interrupt. A bit is also set in the control byte.Bits 4 – 7 of the control byte correspond to channels 0 – 3 of thePCA9544A, respectively. Therefore, if an interrupt is generated byany device connected to channel 2, the state of the interrupt inputs isloaded into the control register when a read is accomplished.Likewise, an interrupt on any device connected to channel 0 wouldcause bit 4 of the control register to be set on the read. The mastercan then address the PCA9544A and read the contents of thecontrol byte to determine which channel contains the devicegenerating the interrupt. The master can then reconfigure thePCA9544A to select this channel, and locate the device generatingthe interrupt and clear it. The interrupt clears when the deviceoriginating the interrupt clears.

    標簽: 4channel multiple 9544A 9544

    上傳時間: 2014-12-28

    上傳用戶:潛水的三貢

  • Replacement of NXP PCA9518 wit

    The outputs of the PCA9518 are immediately available as soon as there is a voltage present on thesupply >~1V and behave as described above. The power-on reset of the PCA9518A keeps the outputsturned off during power-up and maintains the high impedance of the outputs throughout the power-upcycle. There is an additional built-in delay after power-up that allows the analog circuits to stabilize beforethe part is activated.

    標簽: Replacement 9518 NXP PCA

    上傳時間: 2013-10-26

    上傳用戶:13817753084

  • Adding 32 KB of Serial SRAM to

    Although Stellaris microcontrollers have generous internal SRAM capabilities, certain applicationsmay have data storage requirements that exceed the 8 KB limit of the Stellaris LM3S8xx seriesdevices. Since microcontrollers do not have an external parallel data-bus, serial memory optionsmust be considered. Until recently, the ubiquitous serial EEPROM/flash device was the only serialmemory solution. The major limitations of EEPROM and flash technology are slow write speed, slowerase times, and limited write/erase endurance.Recently, serial SRAM devices have become available as a solution for high-speed dataapplications. The N256S08xxHDA series of devices, from AMI Semiconductor, offer 32 K x 8 bits oflow-power data storage, a fast Serial Peripheral Interface (SPI) serial bus, and unlimited write cycles.The parts are available in 8-pin SOIC and compact TSSOP packages.

    標簽: Adding Serial SRAM 32

    上傳時間: 2013-10-14

    上傳用戶:cxl274287265

  • Control System of Stepp ingMot

    提出了一個由AT89C52單片機控制步進電機的實例。可以通過鍵盤輸入相關數據, 并根據需要, 實時對步進電機工作方式進行設置, 具有實時性和交互性的特點。該系統可應用于步進電機控制的大多數場合。實踐表明, 系統性能優于傳統的步進電機控制器。關鍵詞: 單片機; 步進電動機; 直流固態繼電器; 實時控制Con trol System of Stepp ingMotor Ba sed on AT89C52 ChipM icrocomputerMENGWu2sheng, L ILiang (College of Automatization, Northwestern Polytechnical Unversity, Xipan 710072, China)ABSTRACT: A stepp ing motor control system based on AT89C52 chip microcomputer was described.The data can be inputwith keyboard, and stepp ingmotorwas controlled by these data. According to the demand, users can set the workingmodel of stepp ingmotor in real2time. This system can be widely used in stepp ing motor controlling. The p ractice showed that the performance of this system outdid the tradi tional stepp ing motor controller.KEY WORDS: Chip microcomputer; Stepp ingmotor; DCSSR; Real2time control

    標簽: Control System ingMot Stepp

    上傳時間: 2013-11-19

    上傳用戶:leesuper

  • DS1820 C51 子程序 (一線數據傳輸)

    //芯片資料請到www.elecfans.com查找 //DS1820 C51 子程序//這里以11.0592M晶體為例,不同的晶體速度可能需要調整延時的時間//sbit DQ =P2^1;//根據實際情況定義端口 typedef unsigned char byte;typedef unsigned int  word; //延時void delay(word useconds){  for(;useconds>0;useconds--);} //復位byte ow_reset(void){  byte presence;  DQ = 0; //pull DQ line low  delay(29); // leave it low for 480us  DQ = 1; // allow line to return high  delay(3); // wait for presence  presence = DQ; // get presence signal  delay(25); // wait for end of timeslot  return(presence); // presence signal returned}     // 0=presence, 1 = no part //從 1-wire 總線上讀取一個字節byte read_byte(void){  byte i;  byte value = 0;  for (i=8;i>0;i--)  {    value>>=1;    DQ = 0; // pull DQ low to start timeslot    DQ = 1; // then return high    delay(1);  //for (i=0; i<3; i++);     if(DQ)value|=0x80;    delay(6); // wait for rest of timeslot  }  return(value);} //向 1-WIRE 總線上寫一個字節void write_byte(char val){  byte i;  for (i=8; i>0; i--) // writes byte, one bit at a time  {    DQ = 0; // pull DQ low to start timeslot    DQ = val&0x01;    delay(5); // hold value for remainder of timeslot    DQ = 1;    val=val/2;  }  delay(5);} //讀取溫度char Read_Temperature(void){  union{    byte c[2];    int x;  }temp;   ow_reset();  write_byte(0xCC); // Skip ROM  write_byte(0xBE); // Read Scratch Pad  temp.c[1]=read_byte();  temp.c[0]=read_byte();  ow_reset();  write_byte(0xCC); //Skip ROM  write_byte(0x44); // Start Conversion  return temp.x/2;}

    標簽: 1820 C51 DS 程序

    上傳時間: 2013-11-03

    上傳用戶:hongmo

  • 使用CCS進行DSP編程

    CCStudio Platinum Edition is available in a number of ways. Existingcustomers who are up-to-date with their subscription service withTexas Instruments will receive their update automatically on a CD inthe mail. New customers who wish to purchase a copy of CCStudioPlatinum Edition can order TMDSCCSALL-1 starting May 23, 2005. A120-day Trial version will be also be available on CDROM startingJuly 11, 2005. Users may order the CDROM of the 120-day free copy

    標簽: CCS DSP 編程

    上傳時間: 2014-12-28

    上傳用戶:gououo

  • 傳感器原理及應用 全教程共十章

    傳感器技術作為信息科學的一個重要分支,與計算機技術、自動控制技術和通信技術等一起構成了信息技術的完整學科。在人類進入信息時代的今天,人們的一切社會活動都是以信息獲取與信息轉換為中心,傳感器作為信息獲取與信息轉換的重要手段,是信息科學最前端的一個陣地,是實現信息化的基礎技術之一。 “沒有傳感器就沒有現代科學技術”的觀點已為全世界所公認。以傳感器為核心的檢測系統就像神經和感官一樣,源源不斷地向人類提供宏觀與微觀世界的種種信息,成為人們認識自然、改造自然的有力工具。 傳感器原理及應用全書分為十個章結: 1、傳感器的基本特性 2、各類傳統與新型傳感器的工作原理與應用      (1)應變式傳感器      (2)電感式傳感器      (3)電容式傳感器      (4)壓電式傳感器      (5)磁電式傳感器      (6)光電式傳感器      (7)半導體式傳感器      (8)波與輻射式傳感器      (9)數字式傳感器(自學)      (10)智能式傳感器(自學) 課程教材 1.郁有文等編著,傳感器原理及工程應用,西安科技大學出版社,2008 2.沈躍、楊喜峰編,物理實驗教程—智能檢測技術實驗,中國石油大學出版社,2010 課程參考書 1. 傳感器與檢測技術,胡向東等編著,機械工業出版社,2009 2. 傳感器原理及應用,王化祥編著,天津大學出版社,2007 3. 傳感技術與應用教程,張洪潤等編著,清華大學出版社,2009 4. 傳感器原理及應用(項目式教學),于彤編著,機械工業出版社,2008 5. 傳感器與測試技術,葉湘濱等編著,國防工業出版社,2007 6. 傳感器與檢測技術,陳杰、黃鴻編著,高等教育出版社,2003 7. Handbook of Modern Sensors(3rd Edition),Jacob Fraden,Springer-Verlag,Inc.,2004 課程性質     課程屬于專業基礎課,在專業人才培養中具有提高學生相關專業基礎理論的認知能力、增強學生從事傳感與檢測技術研究與應用工作的適應能力和開發創新能力的作用。 研究對象     傳感器技術的基本概念和理論、常用傳感器的工作原理和應用技術。 學習目的與要求  (1)建立傳感器技術的整體概念;  (2)掌握傳感器技術的基本理論、常用傳感器的工作原理和應用技術;  (3)獲得應用傳感器設計、組建測控系統的基本技能;  (4)培養學生進一步學習、研究和應用傳感器技術的興趣;  (5)為學習后續課程和獨力解決實際問題打下必要的基礎。 主要考核目標(包括重點及難點) (1)掌握傳感器的基本概念和基本特性; (2)掌握常用傳感器的工作原理(實驗方法); (3)掌握常用傳感器的基本應用(實驗技術); (4)了解應用傳感器設計、組建測控系統的基本方法; (5)了解傳感器技術的發展前沿和趨勢。 重點:傳感器的工作原理 難點:傳感器的應用技術;       內容涉及知識面廣,理論性、綜合性和實踐性強。

    標簽: 傳感器原理 教程

    上傳時間: 2013-11-13

    上傳用戶:yqs138168

  • STC90C51RC-RD+_GUIDE-CHINESE使用手冊

    STC90C51RC-RD+_GUIDE-CHINESE使用手冊

    標簽: GUIDE-CHINESE RC-RD STC 90

    上傳時間: 2014-01-06

    上傳用戶:lht618

  • LabVIEW for Everyone(經典英文書籍)

    The #1 Step-by-Step Guide to labviewNow Completely Updated for labview 8!   Master labview 8 with the industry's friendliest, most intuitive tutorial: labview for Everyone, Third Edition. Top labview experts Jeffrey Travis and Jim Kring teach labview the easy way: through carefully explained, step-by-step examples that give you reusable code for your own projects!   This brand-new Third Edition has been fully revamped and expanded to reflect new features and techniques introduced in labview 8. You'll find two new chapters, plus dozens of new topics, including Project Explorer, AutoTool, XML, event-driven programming, error handling, regular expressions, polymorphic VIs, timed structures, advanced reporting, and much more. Certified labview Developer (CLD) candidates will find callouts linking to key objectives on NI's newest exam, making this book a more valuable study tool than ever. Not just what to d why to do it! Use labview to build your own virtual workbench Master labview's foundations: wiring, creating, editing, and debugging VIs; using controls and indicators; working with data structures; and much more Learn the "art" and best practices of effective labview development NEW: Streamline development with labview Express VIs NEW: Acquire data with NI-DAQmx and the labview DAQmx VIs NEW: Discover design patterns for error handling, control structures, state machines, queued messaging, and more NEW: Create sophisticated user interfaces with tree and tab controls, drag and drop, subpanels, and more Whatever your application, whatever your role, whether you've used labview or not, labview for Everyone, Third Edition is the fastest, easiest way to get the results you're after!

    標簽: Everyone LabVIEW for 英文

    上傳時間: 2013-10-14

    上傳用戶:shawvi

主站蜘蛛池模板: 新建县| 环江| 曲阳县| 宜黄县| 衡阳市| 罗源县| 呼图壁县| 玛沁县| 新营市| 云阳县| 恭城| 南召县| 东海县| 齐河县| 屏边| 逊克县| 武陟县| 新竹市| 安新县| 靖安县| 中宁县| 鄂尔多斯市| 林口县| 昌乐县| 电白县| 建德市| 进贤县| 乐亭县| 萨嘎县| 黎川县| 方正县| 时尚| 合水县| 霍城县| 九江县| 车险| 冕宁县| 昌吉市| 萝北县| 上栗县| 宜昌市|