C++/CLI¶
開発環境の設定¶
-
YdxCLI.h をプロジェクトフォルダにコピーします。
-
YdxCLI.h をプロジェクトに追加します。
-
ソースファイルに YdxCLI.h をインクルードします。
-
usingディレクティブを使ってYdxCLIを宣言します。
using namespace YdxCLI;
コントロール¶
変数¶
int id;
実行結果の表示¶
private: System::Void ResultShow(String^ title, int resultCode)
{
StringBuilder ^resultString = gcnew StringBuilder(256);
YdxCnvResultToString(resultCode, resultString);
switch (resultCode)
{
case 0:
case YDX_RESULT_DI_EXCEED_DATA_NUM:
case YDX_RESULT_DI_EXCEED_BUF_SIZ:
MessageBox::Show(resultString->ToString(), title, MessageBoxButtons::OK, MessageBoxIcon::Asterisk);
break;
default:
MessageBox::Show(resultString->ToString(), title, MessageBoxButtons::OK, MessageBoxIcon::Hand);
break;
}
}
フォームロード¶
private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e)
{
// ユニット識別スイッチ
unitSwitchComboBox->ResetText();
unitSwitchComboBox->Items->AddRange(gcnew array<String ^>{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"});
unitSwitchComboBox->SelectedIndex = 0;
// 型名
modelNameComboBox->ResetText();
modelNameComboBox->Items->AddRange(gcnew array<String ^>{"DIO-16/16C-USC", "DIO-16/16D-UBC", "DIO-16/16D-USC"});
modelNameComboBox->SelectedIndex = 0;
}
オープン¶
private: System::Void openButton_Click(System::Object^ sender, System::EventArgs^ e)
{
int getId;
int result = YdxOpen(unitSwitchComboBox->SelectedIndex, modelNameComboBox->Text, 0, &getId);
if(result != 0)
ResultShow("YdxOpen", result);
else {
unitSwitchComboBox->Enabled = false;
modelNameComboBox->Enabled = false;
ResultShow("オープン", result);
id = getId;
}
}
出力開始¶
private: System::Void startButton_Click(System::Object^ sender, System::EventArgs^ e)
{
int result;
// データバッファの設定
result = YdxDoSetBuffer(id, 0); // FIFOバッファ
if(result != 0)
{
ResultShow("YdxDoSetBuffer", result);
return;
}
// チャネルの設定
for (int channel = 0; channel < 16; channel++)
{
result = YdxDoSetChannel(id, channel, 1); // 高機能デジタル出力モード
if(result != 0)
{
ResultShow("YdxDoSetChannel", result);
return;
}
}
// サンプリングクロックの設定
result = YdxDoSetClock(id, 0); // 内部クロック
if(result != 0)
{
ResultShow("YdxDoSetClock", result);
return;
}
// 内部クロック周期の設定
result = YdxDoSetClockInternal(id, 1000); // 1000μsec
if(result != 0)
{
ResultShow("YdxDoSetClockInternal", result);
return;
}
// データの設定
const int SAMPLE_NUM = 1000; // サンプル数
int data[SAMPLE_NUM];
for (int i = 0; i < SAMPLE_NUM; i++)
{
data[i] = i;
}
result = YdxDoSetData(id, SAMPLE_NUM, data);
if(result != 0)
{
ResultShow("YdxDoSetData", result);
return;
}
// サンプリング開始条件の設定
result = YdxDoSetStartCondition(id, 0, 0); // ソフトウェア
if(result != 0)
{
ResultShow("YdxDoSetStartCondition", result);
return;
}
// サンプリング停止条件の設定
result = YdxDoSetStopCondition(id, 0, 0); // データ終了
if(result != 0)
{
ResultShow("YdxDoSetStopCondition", result);
return;
}
// デジタル出力動作を開始
result = YdxDoStart(id);
if(result != 0)
{
ResultShow("YdxDoStart", result);
return;
}
// 動作終了待ち
int status, sampleCount, repeatCount, notOutNum;
//動作中ステータスがOFFになるまでポーリング
do
{
Application::DoEvents();
//ステータスの取得
result = YdxDoGetStatus(id, &status, &sampleCount, &repeatCount, ¬OutNum);
if(result != 0)
{
ResultShow("YdxDoGetStatus", result);
return;
}
statusTextBox->Text=status.ToString("X")->PadLeft(8,'0')+"h";
sampleCountTextBox->Text = sampleCount.ToString();
repeatCountTextBox->Text = repeatCount.ToString();
notOutNumTextBox->Text = notOutNum.ToString();
if((status & YDX_STATUS_COMMUNICATE_ERR) != 0)
{
MessageBox::Show("通信エラーが発生しました", "", MessageBoxButtons::OK, MessageBoxIcon::Hand);
return;
}
if((status & YDX_STATUS_HARDWARE_ERR) != 0)
{
MessageBox::Show("ハードウェアエラーが発生しました", "", MessageBoxButtons::OK, MessageBoxIcon::Hand);
return;
}
if((status & YDX_STATUS_SAMPLE_CLOCK_ERR) != 0)
{
MessageBox::Show("サンプリングクロックエラーが発生しました", "", MessageBoxButtons::OK, MessageBoxIcon::Hand);
return;
}
} while ((status & YDX_STATUS_BUSY) != 0);
ResultShow("出力", 0);
}
クローズ¶
private: System::Void closeButton_Click(System::Object^ sender, System::EventArgs^ e)
{
unitSwitchComboBox->Enabled = true;
modelNameComboBox->Enabled = true;
int result = YdxClose(id);
if(result != 0)
ResultShow("YdxClose", result);
else
ResultShow("クローズ", result);
}
フォームクローズ¶
private: System::Void Form1_FormClosing(System::Object^ sender, System::Windows::Forms::FormClosingEventArgs^ e)
{
int result = YdxClose(id);
if((result != 0) && (result != YDX_RESULT_NOT_OPEN))
{
ResultShow("YdxClose", result);
}
}