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

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

Hour

  • 6小時學(xué)會labview

    6小時學(xué)會labview, labview Six Hour Course – Instructor Notes   This zip file contains material designed to give students a working knowledge of labview in a 6 Hour timeframe. The contents are: Instructor Notes.doc – this document. labviewIntroduction-SixHour.ppt – a PowerPoint presentation containing screenshots and notes on the topics covered by the course. Convert C to F (Ex1).vi – Exercise 1 solution VI. Convert C to F (Ex2).vi – Exercise 2 solution subVI. Thermometer-DAQ (Ex2).vi – Exercise 2 solution VI. Temperature Monitor (Ex3).vi – Exercise 3 solution VI. Thermometer (Ex4).vi – Exercise 4 solution subVI. Convert C to F (Ex4).vi – Exercise 4 solution subVI. Temperature Logger (Ex4).vi – Exercise 4 solution VI. Multiplot Graph (Ex5).vi – Exercise 5 solution VI. Square Root (Ex6).vi – Exercise 6 solution VI. State Machine 1 (Ex7).vi – Exercise 7 solution VI.   The slides can be presented in two three Hour labs, or six one Hour lectures. Depending on the time and resources available in class, you can choose whether to assign the exercises as homework or to be done in class. If you decide to assign the exercises in class, it is best to assign them in order with the presentation. This way the students can create VI’s while the relevant information is still fresh. The notes associated with the exercise slide should be sufficient to guide the students to a solution. The solution files included are one possible solution, but by no means the only solution.

    標(biāo)簽: labview

    上傳時間: 2013-10-13

    上傳用戶:zjwangyichao

  • 單片機(jī)12864液晶時鐘顯示程序

    12864液晶時鐘顯示程序 LCD 地址變量 ;**************變量的定義***************** RS             BIT      P2.0            ;LCD數(shù)據(jù)/命令選擇端(H/L) RW             BIT      P2.1          ;LCD讀/寫選擇端(H/L) EP             BIT      P2.2            ;LCD使能控制 PSB        EQU P2.3 RST        EQU P2.5 PRE            BIT      P1.4            ;調(diào)整鍵(K1) ADJ            BIT      P1.5            ;調(diào)整鍵(K2) COMDAT         EQU P0 LED        EQU P0.3 YEAR           DATA      18H            ;年,月,日變量 MONTH          DATA      19H DATE           DATA      1AH WEEK           DATA      1BH Hour           DATA      1CH            ;時,分,秒,百分之一秒變量 MIN            DATA      1DH SEC            DATA      1EH SEC100         DATA      1FH STATE          DATA      23H LEAP           BIT      STATE.1            ;是否閏年標(biāo)志1--閏年,0--平年 KEY_S          DATA      24H            ;當(dāng)前掃描鍵值 KEY_V          DATA      25H            ;上次掃描鍵值 DIS_BUF_U0      DATA      26H            ;LCD第一排顯示緩沖區(qū) DIS_BUF_U1      DATA      27H DIS_BUF_U2      DATA      28H DIS_BUF_U3      DATA      29H DIS_BUF_U4      DATA      2AH DIS_BUF_U5      DATA      2BH DIS_BUF_U6      DATA      2CH DIS_BUF_U7      DATA      2DH DIS_BUF_U8      DATA      2EH DIS_BUF_U9      DATA      2FH DIS_BUF_U10     DATA      30H DIS_BUF_U11     DATA      31H DIS_BUF_U12     DATA      32H DIS_BUF_U13     DATA      33H DIS_BUF_U14     DATA      34H DIS_BUF_U15     DATA      35H DIS_BUF_L0      DATA      36H            ;LCD第三排顯示緩沖區(qū) DIS_BUF_L1      DATA      37H DIS_BUF_L2      DATA      38H DIS_BUF_L3      DATA      39H DIS_BUF_L4      DATA      3AH DIS_BUF_L5      DATA      3BH DIS_BUF_L6      DATA      3CH DIS_BUF_L7      DATA      3DH DIS_BUF_L8      DATA      3EH DIS_BUF_L9      DATA      3FH DIS_BUF_L10     DATA      40H DIS_BUF_L11     DATA      41H DIS_BUF_L12     DATA      42H DIS_BUF_L13     DATA      43H DIS_BUF_L14     DATA      44H DIS_BUF_L15     DATA      45H FLAG            DATA      46H ;1-年,2-月,3-日,4-時,5-分,6-秒,7-退出調(diào)整。 DIS_H           DATA      47H DIS_M           DATA      48H DIS_S           DATA      49H

    標(biāo)簽: 12864 單片機(jī) 液晶時鐘 顯示程序

    上傳時間: 2013-11-09

    上傳用戶:xingisme

  • 單片機(jī)12864液晶時鐘顯示程序

    12864液晶時鐘顯示程序 LCD 地址變量 ;**************變量的定義***************** RS             BIT      P2.0            ;LCD數(shù)據(jù)/命令選擇端(H/L) RW             BIT      P2.1          ;LCD讀/寫選擇端(H/L) EP             BIT      P2.2            ;LCD使能控制 PSB        EQU P2.3 RST        EQU P2.5 PRE            BIT      P1.4            ;調(diào)整鍵(K1) ADJ            BIT      P1.5            ;調(diào)整鍵(K2) COMDAT         EQU P0 LED        EQU P0.3 YEAR           DATA      18H            ;年,月,日變量 MONTH          DATA      19H DATE           DATA      1AH WEEK           DATA      1BH Hour           DATA      1CH            ;時,分,秒,百分之一秒變量 MIN            DATA      1DH SEC            DATA      1EH SEC100         DATA      1FH STATE          DATA      23H LEAP           BIT      STATE.1            ;是否閏年標(biāo)志1--閏年,0--平年 KEY_S          DATA      24H            ;當(dāng)前掃描鍵值 KEY_V          DATA      25H            ;上次掃描鍵值 DIS_BUF_U0      DATA      26H            ;LCD第一排顯示緩沖區(qū) DIS_BUF_U1      DATA      27H DIS_BUF_U2      DATA      28H DIS_BUF_U3      DATA      29H DIS_BUF_U4      DATA      2AH DIS_BUF_U5      DATA      2BH DIS_BUF_U6      DATA      2CH DIS_BUF_U7      DATA      2DH DIS_BUF_U8      DATA      2EH DIS_BUF_U9      DATA      2FH DIS_BUF_U10     DATA      30H DIS_BUF_U11     DATA      31H DIS_BUF_U12     DATA      32H DIS_BUF_U13     DATA      33H DIS_BUF_U14     DATA      34H DIS_BUF_U15     DATA      35H DIS_BUF_L0      DATA      36H            ;LCD第三排顯示緩沖區(qū) DIS_BUF_L1      DATA      37H DIS_BUF_L2      DATA      38H DIS_BUF_L3      DATA      39H DIS_BUF_L4      DATA      3AH DIS_BUF_L5      DATA      3BH DIS_BUF_L6      DATA      3CH DIS_BUF_L7      DATA      3DH DIS_BUF_L8      DATA      3EH DIS_BUF_L9      DATA      3FH DIS_BUF_L10     DATA      40H DIS_BUF_L11     DATA      41H DIS_BUF_L12     DATA      42H DIS_BUF_L13     DATA      43H DIS_BUF_L14     DATA      44H DIS_BUF_L15     DATA      45H FLAG            DATA      46H ;1-年,2-月,3-日,4-時,5-分,6-秒,7-退出調(diào)整。 DIS_H           DATA      47H DIS_M           DATA      48H DIS_S           DATA      49H

    標(biāo)簽: 12864 單片機(jī) 液晶時鐘 顯示程序

    上傳時間: 2013-12-25

    上傳用戶:wvbxj

  • The JICQ is the bureau area which JAVA writes according to "Customer s Machine/Server"(C/S) mode mes

    The JICQ is the bureau area which JAVA writes according to "Customer s Machine/Server"(C/S) mode message solid Hour correspond by letter tool system, the system adopted the SQL Server2000 of Microsoft company as a backstage database, the system passes a JDBC interview database. The system is divided into the server procedure and customer s procedure two parts, server and customer adoption "Transmission Control Protocol"(TCP), connect a word (Socket) conjunction through a set, the adoption "User Datagram Protocol "(UDP) of the customer s, pass a data report a set to connect a word (DatagramSocket) establishment a conjunction. The system has customer registration, customer to register, increase good friend, delete good friend and send out and receive news etc. function.

    標(biāo)簽: according Customer Machine Server

    上傳時間: 2014-01-04

    上傳用戶:jyycc

  • c8051f020 實(shí)時時鐘模塊程序 內(nèi)含IIC模塊程序/********************** SYSTEM CLOCK 8M********************************/

    c8051f020 實(shí)時時鐘模塊程序 內(nèi)含IIC模塊程序/********************** SYSTEM CLOCK 8M********************************/ extern unsigned char xdata currenttime[16]={0} extern unsigned char xdata settime[16]={ 0x00, // control regesiter 1 0x00, // control regesiter 2 0x01, //current second 0x19, //current minute 0x20, //current Hour 0x29, //current data 0x04, //current week 0x07, //current month 0x05, //current year 0x00, // alarm value reset 0x00, // alarm value reset 0x00, // alarm value reset 0x00, // alarm value reset 0x00, // clk out disable 0x00, // close timer 0x00, } /*********************************************************************/ extern void Current_Time ( void ) extern void Set_Time ( void )

    標(biāo)簽: c8051f020 SYSTEM CLOCK IIC

    上傳時間: 2015-06-30

    上傳用戶:edisonfather

  • 將4MHz的訪波輸入到ccc模塊上

    將4MHz的訪波輸入到ccc模塊上,輸出500Hz提供鳴叫聲頻。1kHz的方波經(jīng)fen10模塊進(jìn)行十分頻后為秒模塊mian、分模塊mina、時模塊Hour,提供時鐘信號;用sst模塊為整點(diǎn)報時提供控制信號,(當(dāng)59 50"、52"、54"、56"、58"時,q500輸出為”1”,秒為00時qlk輸出為”1”,這兩個信號經(jīng)過邏輯或門實(shí)現(xiàn)報時功能);用sel模塊提供數(shù)碼管片選信號;用模塊bbb將對應(yīng)數(shù)碼管信號送出需要的顯示信號;用七段譯碼器dispa模塊進(jìn)行譯碼。 將4MHz的訪波輸入到ccc模塊上,輸出500Hz提供鳴叫聲頻。1kHz的方波經(jīng)fen10模塊進(jìn)行十分頻后為秒模塊mian、分模塊mina、時模塊Hour,提供時鐘信號;用sst模塊為整點(diǎn)報時提供控制信號,(當(dāng)59 50"、52"、54"、56"、58"時,q500輸出為”1”,秒為00時qlk輸出為”1”,這兩個信號經(jīng)過邏輯或門實(shí)現(xiàn)報時功能);用sel模塊提供數(shù)碼管片選信號;用模塊bbb將對應(yīng)數(shù)碼管信號送出需要的顯示信號;用七段譯碼器dispa模塊進(jìn)行譯碼。

    標(biāo)簽: 4MHz ccc 輸入 模塊

    上傳時間: 2014-12-22

    上傳用戶:lps11188

  • * DEFINITION * This a set of math functions that deal with time. The functions accept * 4-digit

    * DEFINITION * This a set of math functions that deal with time. The functions accept * 4-digit time values and 4-digit time of day values. Time values are * interpreted as Hours-minutes and are valid if all digits are numeric and * 9 or less, except the second-to-last digit must be 5 or less. Time of day * values are valid if they conform to normally accepted clock values of * 1:00 to 12:59 for a 12-Hour clock or 00:00 to 23:59 for a 24-Hour clock.

    標(biāo)簽: functions DEFINITION accept digit

    上傳時間: 2014-01-15

    上傳用戶:Divine

  • 一個很好用的 lcd 時鐘程序 C語言 #include<reg51.h> #include<stdio.h> //定義計時器0 的重裝值 #define RELOAD

    一個很好用的 lcd 時鐘程序 C語言 #include<reg51.h> #include<stdio.h> //定義計時器0 的重裝值 #define RELOAD_HIGH 0x3C #define RELOAD_LOW 0xD2 //定義按鍵彈跳時間 #define DB_VAL //定義設(shè)置模式的最大時間間隔 #define TIMEOUT 200 //定義游標(biāo)位置常數(shù) #define HOME 0 #define Hour 1 #define MIN 2 #define SEC 3

    標(biāo)簽: include define RELOAD stdio

    上傳時間: 2014-12-19

    上傳用戶:zukfu

  • VDSP++打開。This directory contains an example ADSP-BF537 RTC project that does a basic blink routine a

    VDSP++打開。This directory contains an example ADSP-BF537 RTC project that does a basic blink routine and then puts the part in deep sleep mode to be woken up from a RTC Stopwatch Event. Once woken up, the RTC is reconfigured to toggle the EZ KIT LEDs using RTC second, minute, Hour, and day interrupts.

    標(biāo)簽: directory contains ADSP-BF example

    上傳時間: 2015-12-29

    上傳用戶:330402686

  • class Time { public: Time(int =0,int =0,int =0) void setTime(int,int,int) void printMilita

    class Time { public: Time(int =0,int =0,int =0) void setTime(int,int,int) void printMilitary() void printStandard() private: int Hour int minute int second }

    標(biāo)簽: int Time void printMilita

    上傳時間: 2013-12-20

    上傳用戶:hwl453472107

主站蜘蛛池模板: 龙陵县| 晴隆县| 兖州市| 阜阳市| 泰和县| 西盟| 达拉特旗| 肇东市| 房山区| 明星| 那曲县| 沂南县| 兴隆县| 濮阳市| 肥城市| 晋中市| 柏乡县| 丰原市| 澎湖县| 交口县| 哈密市| 皋兰县| 清流县| 郯城县| 雷州市| 玉屏| 通州区| 贡觉县| 龙州县| 板桥市| 隆安县| 东阿县| 博客| 霍州市| 静安区| 上蔡县| 郧西县| 富源县| 巫溪县| 贵州省| 蒲江县|