最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊

LabWindows_CVI測試技術(shù)及工程應(yīng)用學(xué)習(xí)筆記1(構(gòu)建一個(gè)簡單的程序)

2020-02-18 17:56 作者:技術(shù)龍的傳人  | 我要投稿

1、創(chuàng)建工程文件

或File——〉New——〉Project(*.prj),默認(rèn)名Untitled.prj,存儲(chǔ)在Unititled.cws的工作空間中

File——〉Save Untitled Project As...保存新建工程文件為“溫度.prj”

2、創(chuàng)建用戶界面文件

或File——〉New——〉User Interface(*.uir)

面板屬性編輯

panel——面板

constant name——常量名

callback function——回掉函數(shù)名

panel title——面板標(biāo)題

menu bar——菜單欄

close control——關(guān)閉面板的控件

top——頂

left——左

height——高

width——寬

scroll bars——滾動(dòng)條

auto-center vertically——垂直居中

auto-cecnter horizontally——水平居中

title bar style——標(biāo)題欄風(fēng)格

other attributes——其他屬性

sizable——程序運(yùn)行時(shí)是否可以改變窗口大小

movable——程序運(yùn)行時(shí)是否可以通過拖拽移動(dòng)窗口

can maximize——程序運(yùn)行時(shí)是否可以最大化

can minimize——程序運(yùn)行時(shí)是否可以最小化

title bar visible——標(biāo)題欄可見

has taskbar button——有任務(wù)欄按鈕

conform to system colors——符合系統(tǒng)顏色

scale contents on resize——調(diào)整大小時(shí)縮放內(nèi)容

floating style——浮動(dòng)風(fēng)格(最前端顯示,never從不;when app is active程序激活時(shí);always總是)

create——〉graph——〉strip chart

graph是整屏顯示一組靜態(tài)數(shù)據(jù),strip chart滾動(dòng)顯示數(shù)據(jù)并能動(dòng)態(tài)添加數(shù)據(jù)點(diǎn)

create——〉numeric——〉thermometer

數(shù)值 溫度計(jì)

create——〉numeric——〉numeric(最大值 最小值)

create——〉BinarySwitch——〉vertical toggle switch

垂直搖桿開關(guān)

create——〉led——〉round led

create——〉command button——〉square command button

方形命令按鈕

arrange——〉alignment

布置 ? ? ? ? ? ? ? ? 對齊

按鈕控件屬性

control mode——控件顯示類型(indication指示類型,不響應(yīng)用戶操作事件;hot響應(yīng)控件所有事件normal在程序執(zhí)行時(shí)修改控件屬性,不能對控件操作產(chǎn)生事件;validate與hot基本相同,若range-checking范圍檢查設(shè)置為notify通知,屬性值合法才產(chǎn)生EVENT_COMMIT)

initially dimmed——程序運(yùn)行時(shí)控件是否可用

initially hidden——程序運(yùn)行時(shí)控件是否可見

modifier key——組合快捷鍵中的修飾鍵shift或ctrl鍵

key——其他鍵

label——標(biāo)題

控件按照下表配置:

File——〉Save 用戶界面文件保存為“溫度.uir”

3、生成源代碼文件

Code——〉Generate——〉A(chǔ)ll Code彈出產(chǎn)生所有代碼對話框

select panels to load and display at startup確定程序啟動(dòng)時(shí)要顯示的面板,相應(yīng)面板名前打勾

program termination選擇回調(diào)函數(shù)用來實(shí)現(xiàn)結(jié)束程序的功能

若選擇Generate WinMain() instead of main()選項(xiàng),則會(huì)產(chǎn)生一個(gè)名為WinMain的主函數(shù)

源代碼框架

#include <cvirte.h>

#include <userint.h>

#include "溫度.h"

static int panelHandle;

/* 主函數(shù) */

int main (int argc, char *argv[])

{

/*

函數(shù)原型: int InitCVIRTE(void HInstance, char *Argv[], void *Reserved)

*HInstance:若main為主函數(shù),則輸入值為0

*Argv[]:指向調(diào)試時(shí)生成的可執(zhí)行文件的文件名

*Reserved:保留參數(shù),一般為0

返回值:1表示運(yùn)行成功;0表示運(yùn)行失敗,可能內(nèi)存溢出

*/

if (InitCVIRTE (0, argv, 0) == 0)//初始化CVI運(yùn)行時(shí)庫

return -1; /* out of memory */

if ((panelHandle = LoadPanel (0, "溫度.uir", PANEL)) < 0)//姜用戶界面文件載入到內(nèi)存中

return -1;

DisplayPanel (panelHandle);//在屏幕上顯示面板

RunUserInterface ();//運(yùn)行用戶界面

DiscardPanel (panelHandle);//從內(nèi)存中刪除面板及其子面板,并在屏幕中清除

return 0;

}

//Acquire 回調(diào)函數(shù)

int CVICALLBACK Acquire (int panel, int control, int event,

void *callbackData, int eventData1, int eventData2)

{

switch (event)

{

case EVENT_COMMIT:

break;

}

return 0;

}

//Quit回調(diào)函數(shù)

int CVICALLBACK Quit (int panel, int control, int event,

void *callbackData, int eventData1, int eventData2)

{

switch (event)

{

case EVENT_COMMIT:

QuitUserInterface (0);//在運(yùn)行用戶界面時(shí),回退出用戶界面

break;

}

return 0;

}

向源代碼框架中添加回調(diào)函數(shù)(Quit Acquire)

Quit回調(diào)函數(shù)——按下按鈕時(shí)退出用戶界面

Acquire回調(diào)函數(shù)——開關(guān)控件處于ON時(shí)使LED點(diǎn)亮,且LED控件標(biāo)題變?yōu)椤伴_”。在Strip CHart上滾動(dòng)顯示100個(gè)隨機(jī)產(chǎn)生的溫度數(shù)值。在溫度計(jì)Thermometer控件中顯示即時(shí)溫度。當(dāng)溫度數(shù)值產(chǎn)生完畢后,在最大值和最小值數(shù)值控件中,顯示所產(chǎn)生的100個(gè)隨機(jī)數(shù)值中的最大值和最小值;當(dāng)開關(guān)處于OFF狀態(tài)時(shí),將LED熄滅,該控件標(biāo)題變?yōu)椤瓣P(guān)”,溫度計(jì)為零。

利用函數(shù)面板向框架中添函數(shù)

回調(diào)函數(shù)Acquire中首先要判斷的是開關(guān)控件Binary Switch的狀態(tài)是ON還是OFF。利用GetCtrlVal和SetCtrlVal函數(shù)來獲得和設(shè)置控件的值,打開Library——〉User Interface Library——〉Controls/Graphs/Strip Charts——〉General Functions彈出選擇函數(shù)面板,雙擊所需函數(shù)會(huì)彈出相應(yīng)函數(shù)面板。

Acquire回掉函數(shù)源碼

int CVICALLBACK Acquire (int panel, int control, int event,

void *callbackData, int eventData1, int eventData2)

{

static double max,min;

static int ? ?max_index,min_index;

int ? ? ? ? ? i, j ,value;

double ? ? ? ?datapoints[100];//定義信號采集數(shù)據(jù)點(diǎn)數(shù)組

switch (event)

{

case EVENT_COMMIT:

GetCtrlVal (panelHandle, PANEL_BINARYSWITCH, &value); ?//獲取開關(guān)控件的狀態(tài)

if(1 == value)//開關(guān)為開

{

SetCtrlVal (panelHandle, PANEL_LED, 1); //點(diǎn)亮LED

SetCtrlAttribute (panelHandle, PANEL_LED, ATTR_LABEL_TEXT, "開");//設(shè)置LED的標(biāo)題變?yōu)椤伴_”

for(i = 0; i < 100; i++)

{

datapoints[i] = 100*rand()/32767.0;//編寫隨機(jī)函數(shù)

Delay(0.1); ? //掩飾0.01s

SetCtrlVal (panelHandle, PANEL_NUMERICTHERM, datapoints[i]);//設(shè)置溫度計(jì)控件的值

PlotStripChartPoint (panelHandle, PANEL_STRIPCHART, datapoints[i]);//逐點(diǎn)繪圖在圖表中滾動(dòng)顯示數(shù)據(jù)

}

MaxMin1D (datapoints, 100, &max, &max_index, &min, &min_index);//找出100個(gè)隨機(jī)數(shù)中最大值和最小值

SetCtrlVal (panelHandle, PANEL_NUMERIC, min); //將最小值設(shè)置到控件中

SetCtrlVal (panelHandle, PANEL_NUMERIC_2, max); //將最大值設(shè)置到控件中

SetCtrlVal (panelHandle, PANEL_BINARYSWITCH, 0); ?//數(shù)據(jù)產(chǎn)生完畢后關(guān)閉“開始采集”開關(guān)

SetCtrlVal (panelHandle, PANEL_LED, 0); //關(guān)閉LED

SetCtrlVal (panelHandle, PANEL_NUMERICTHERM, 0.0);//設(shè)置溫度計(jì)控件的值歸零

SetCtrlAttribute (panelHandle, PANEL_LED, ATTR_LABEL_TEXT, "關(guān)");//設(shè)置LED的標(biāo)題變?yōu)椤瓣P(guān)”

}

else

{

SetCtrlVal (panelHandle, PANEL_LED, 0); //關(guān)閉LED

SetCtrlVal (panelHandle, PANEL_NUMERICTHERM, 0,0);//設(shè)置溫度計(jì)控件的值歸零

SetCtrlAttribute (panelHandle, PANEL_LED, ATTR_LABEL_TEXT, "關(guān)");//設(shè)置LED的標(biāo)題變?yōu)椤瓣P(guān)”


}

break;

}

return 0;

}

運(yùn)行和調(diào)試程序

Run——〉Debug

Windows——>Variables即可瀏覽變量顯示窗口

選擇所要查看變量,右擊選擇View——〉Memory可瀏覽變量的內(nèi)存顯示窗口

生成可執(zhí)行文件和發(fā)布文件

生成可執(zhí)行文件Build——〉Target Type——〉Executable

目標(biāo)設(shè)置對話框Build——〉Target Setting

生成可執(zhí)行文件Build——〉Create Debuggable Executable

生成發(fā)布文件(MSI格式)

生成cds文件——〉Build——〉Distributions——〉Manage Distributions

生成“cvidistkit.溫度”的MSI發(fā)布程序目錄Build——〉Distributions——〉Build


LabWindows_CVI測試技術(shù)及工程應(yīng)用學(xué)習(xí)筆記1(構(gòu)建一個(gè)簡單的程序)的評論 (共 條)

分享到微博請遵守國家法律
台州市| 湄潭县| 措美县| 文山县| 无极县| 诏安县| 北碚区| 盐池县| 巍山| 台州市| 靖西县| 乌什县| 昌图县| 余姚市| 陈巴尔虎旗| 固镇县| 阳原县| 滁州市| 航空| 合阳县| 宁蒗| 宁强县| 阜宁县| 墨脱县| 迭部县| 平昌县| 台北市| 海南省| 温州市| 黄平县| 长海县| 福清市| 淅川县| 潍坊市| 义乌市| 上饶县| 延寿县| 武川县| 年辖:市辖区| 阳朔县| 安塞县|