visual studioでセンサの値を取得する メモ
参考になりそうなページ
『Cプログラミング診断室』
http://www.pro.or.jp/~fuji/mybooks/cdiag/cdiag.1.9.html
シリアルポートをつかう通信クラス SerialPortについて
http://www.technoveins.co.jp/dev/vb2005/serialport.html
あと,
arrayの初期化はForm_Load関数でやる.
例
private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e)
{
this->ShowCOMRevieveBuffer = ( gcnew array< Byte >(29) );
for(int i=0; i<29; i++)
{
this->ShowCOMRevieveBuffer[i] = 0;
}
}
とか.
まだデバッグ中なので間違っているかも
ラベル:Visual Studio