C#¶
開発環境の設定¶
-
Ydx.cs をプロジェクトフォルダにコピーします。
-
Ydx.cs をプロジェクトに追加します。
-
ソースファイルにusing ディレクティブを使ってYdxCsを宣言します。
using YdxCs;
コントロール¶
変数¶
private int id;
実行結果の表示¶
private void ResultShow(string title, int resultCode)
{
string resultString;
Ydx.CnvResultToString(resultCode, out resultString);
switch (resultCode)
{
case 0:
case Ydx.YDX_RESULT_AI_EXCEED_DATA_NUM:
case Ydx.YDX_RESULT_AI_EXCEED_BUF_SIZ:
MessageBox.Show(resultString, title, MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
break;
default:
MessageBox.Show(resultString, title, MessageBoxButtons.OK, MessageBoxIcon.Hand);
break;
}
}
フォームロード¶
private void Form1_Load(object sender, EventArgs e)
{
// ユニット識別スイッチ
unitSwitchComboBox.ResetText();
unitSwitchComboBox.Items.AddRange(new 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(new string[] { "AIO-64/4/1B-USC", "AIO-04/4/1B-USC" });
modelNameComboBox.SelectedIndex = 0;
}
オープン¶
private void openButton_Click(object sender, EventArgs e)
{
int result = Ydx.Open(unitSwitchComboBox.SelectedIndex, modelNameComboBox.Text, 0, out id);
if (result != 0)
ResultShow("YdxOpen", result);
else
{
unitSwitchComboBox.Enabled = false;
modelNameComboBox.Enabled = false;
ResultShow("オープン", result);
}
}
アナログ出力¶
private void outputButton_Click(object sender, EventArgs e)
{
const int CHANNEL_NUM = 4;
float[] data = new float[CHANNEL_NUM];
string dataText = "";
for (int i = 0; i < CHANNEL_NUM; i++)
{
switch (i)
{
case 0:
dataText = data0TextBox.Text;
break;
case 1:
dataText = data1TextBox.Text;
break;
case 2:
dataText = data2TextBox.Text;
break;
case 3:
dataText = data3TextBox.Text;
break;
}
double doubleData;
if (!double.TryParse(dataText, System.Globalization.NumberStyles.Float, null, out doubleData))
{
MessageBox.Show("CH" + i.ToString() + "のデータが不正です", "", MessageBoxButtons.OK, MessageBoxIcon.Hand);
return;
}
data[i] = (float)doubleData;
}
int result = Ydx.AoOutputVolt(id, 0, CHANNEL_NUM, 0, data);
ResultShow("アナログ出力", result);
}
クローズ¶
private void closeButton_Click(object sender, EventArgs e)
{
unitSwitchComboBox.Enabled = true;
modelNameComboBox.Enabled = true;
int result = Ydx.Close(id);
if (result != 0)
ResultShow("YdxClose", result);
else
ResultShow("クローズ", result);
}
フォームクローズ¶
private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
int result = Ydx.Close(id);
if ((result != 0) && (result != Ydx.YDX_RESULT_NOT_OPEN))
{
ResultShow("YdxClose", result);
}
}