0

Bluetooth経由で3つのシークバーの値をPCBに送信する必要があるアプリを開発しています。bluetoothchat の例に基づいて、すべての bluetooth コードを作成しました。最初に、これら 3 つの値を含む文字列を送信するように変更しました。でも今はもっと難しいことをしなければならないのに、どうすればいいのかわからない。

まず、アプリでシークバーを変更してから、送信ボタンをクリックします。コードでは、MCU 変数にアクセスし、各変数のアドレス、値、CRC などを設定する必要があるため、シークバーの値ごとに文字列を設定する必要があります。

だから、これを行う正しい方法を知る必要があります。send 関数を定義するコードは次のとおりです。

/**
 * SEND THREAD
 */
/**[Start Thread + Send command + Nº bytes thread + Nº bytes variable + Address + Variable value + CRC]*/

public void sendValues() {

    /**Set the seekbars values into a string*/
    send_value1 = Integer.toString(savedProgress1);
    send_value2 = Integer.toString(savedProgress2);
    send_value3 = Integer.toString(savedProgress3);



    String message1 = start_thread+" "+send_command+" "+num_byte_trama1+ " "+num_byte_variable+" "+pos_reg_1+" "+Value+" "+CRC;
    String message2 = start_thread+" "+send_command+" "+num_byte_trama1+ " "+num_byte_variable+" "+pos_reg_2+" "+Value+" "+CRC;
    String message3 = start_thread+" "+send_command+" "+num_byte_trama1+ " "+num_byte_variable+" "+pos_reg_3+" "+Value+" "+CRC;
    String message4 = start_thread+" "+send_command+" "+num_byte_trama2+ " "+num_byte_variable+" "+pos_reg_save_request+" "+Value+" "+CRC;
    String message5 = start_thread+" "+send_command+" "+num_byte_trama2+ " "+num_byte_variable+" "+pos_reg_save_status+" "+Value+" "+CRC;



    /**Check that we're actually connected before trying anything*/
    if (GlobalVar.mTransmission.getState() != GlobalVar.STATE_CONNECTED) {
        Toast.makeText(this, R.string.not_connected, Toast.LENGTH_SHORT).show();
        return;
    }

    /**Get the message bytes and tell the Transmission to write*/
    byte[] send = message.getBytes();
    GlobalVar.mTransmission.write(send);

    /**Reset out string buffer to zero*/
    GlobalVar.mOutStringBuffer.setLength(0);
}

私があなたに私を助けるように頼むこれらのいくつかのことがあります:

1- Need to know how to calculate the CRC
2- I need to send these 5 strings together when pressing the send button. 

送信するバイトを取得する部分では、これを行う正しい方法がこれらの5つの文字列を1に追加してこれを送信することであるかどうかはわかりません(これを行うと長くなりすぎるかもしれません)、またはこれら5つを別々に、同時に送信する関数を作成します。

これは、各メッセージを 1 つずつ送信するように編集されたコードです。

    /**Conversion to decimal of the seekbar's % value*/
    send_int1 = ((savedProgress1 * 20480) / 100) * -1;
    send_int2 = ((savedProgress2 * 20480) / 100) * -1;
    send_int3 = ((savedProgress3 * 20480) / 100) * -1;

    /**Conversion to string of the previous values to send in the string message*/
    sendValue1 = Integer.toString(send_int1);
    sendValue2 = Integer.toString(send_int1);
    sendValue3 = Integer.toString(send_int1);


    String message1 = start_thread+" "+send_command+" "+num_byte_trama1+" "+num_byte_variable+" "+pos_reg_1+" "+sendValue1+" " ;
    String message2 = start_thread+" "+send_command+" "+num_byte_trama1+" "+num_byte_variable+" "+pos_reg_2+" "+sendValue2+" " ;
    String message3 = start_thread+" "+send_command+" "+num_byte_trama1+" "+num_byte_variable+" "+pos_reg_3+" "+sendValue3+" " ;
    String message4 = start_thread+" "+send_command+" "+num_byte_trama2+" "+num_byte_variable+" "+pos_reg_save_request+" " ;
    String message5 = start_thread+" "+send_command+" "+num_byte_trama2+" "+num_byte_variable+" "+pos_reg_save_status+" " ;



    /**Check that we're actually connected before trying anything*/
    if (GlobalVar.mTransmission.getState() != GlobalVar.STATE_CONNECTED) {
        Toast.makeText(this, R.string.not_connected, Toast.LENGTH_SHORT).show();
        return;
    }

    /**Get the message bytes and tell the Transmission to write*/
    byte[] send1 = message1.getBytes();
    GlobalVar.mTransmission.write(send1);

    //Wait untill I receive the confirmation from the MCU

    byte[] send2 = message2.getBytes();
    GlobalVar.mTransmission.write(send2);

    byte[] send3 = message3.getBytes();
    GlobalVar.mTransmission.write(send3);

    byte[] send4 = message4.getBytes();
    GlobalVar.mTransmission.write(send4);

    byte[] send5 = message5.getBytes();
    GlobalVar.mTransmission.write(send5);


    /**Reset out string buffer to zero*/
    GlobalVar.mOutStringBuffer.setLength(0);
}
4

1 に答える 1