2

C# Windows Formsアプリケーションをラップトップから Arduino Duemilanoveに接続しようとしています。Bluetooth モジュールは、Arduino の Tx および Rx ピンに接続されています。私の目標は、文字「a」を入力したときにオンボード LED を点灯させることですが、これまでのところ成功していません。Bluetooth がラップトップに接続されていることは確かですが、押している文字に応答していません。

C# コード

public partial class Form1 : Form
{
    private Guid service = BluetoothService.SerialPort;
    private BluetoothClient bluetoothClient;

    public Form1()
    {
        InitializeComponent();

        this.KeyPreview = true;
        this.KeyPress += new KeyPressEventHandler(Form1_KeyPress);
    }

    void Form1_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (e.KeyChar == 'a')
        {
            Stream peerStream = bluetoothClient.GetStream();
            Byte[] buffer = Encoding.ASCII.GetBytes("a");
            peerStream.Write(buffer, 0, buffer.Length);
        }
    }

    private void search_Click(object sender, EventArgs e)
    {
        BluetoothRadio.PrimaryRadio.Mode = RadioMode.Discoverable;
        BluetoothRadio myRadio = BluetoothRadio.PrimaryRadio;
        bluetoothClient = new BluetoothClient();
        Cursor.Current = Cursors.WaitCursor;
        BluetoothDeviceInfo[] bluetoothDeviceInfo = { };
        bluetoothDeviceInfo = bluetoothClient.DiscoverDevices(10);
        comboBox1.DataSource = bluetoothDeviceInfo;
        comboBox1.DisplayMember = "DeviceName";
        comboBox1.ValueMember = "DeviceAddress";
        comboBox1.Focus();
        Cursor.Current = Cursors.Default;
    }

    private void Connect_Click(object sender, EventArgs e)
    {
        if (comboBox1.SelectedValue != null)
        {
            try
            {
                bluetoothClient.Connect(new BluetoothEndPoint((BluetoothAddress)comboBox1.SelectedValue, service));
                MessageBox.Show("Connected");

            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
    }
}

Arduinoコード

int incomingByte = 0;   // For incoming serial data
void setup()
{
    pinMode(13, OUTPUT); // On-board LED as output
    Serial.begin(9600);     // Opens serial port, sets data rate to 9600 bit/s.
}

void loop()
{
    if (Serial.available() > 0)
    {
        // Read the incoming byte:
        incomingByte = Serial.read();

        if (incomingByte == 'a')
            digitalWrite(13, HIGH);
    }
}

ASCII コードを間違って送信していますか、それとも何が欠けていますか?

4

1 に答える 1

0

ここで答えたのと同じ問題かもしれません。

私は最近これに手を出しました。Arduino IDE 以外のほとんどのものからシリアル通信を受信すると、Arduino は自動的にリセットされます。これが、node.js ではなく IDE から送信できる理由です。

私は Uno を持っていて、Reset と Ground の間にコンデンサーを入れています。幸運を。 http://arduino.cc/playground/Main/DisablingAutoResetOnSerialConnection

于 2012-06-19T17:28:18.987 に答える