Gets or sets a repeat value of the speech data.
- Type: byte
- Access type: read / write
- Default value: 0
- Range: 0 – 127
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get byte repeat = cltComm.ReqSendDataSpeechRepeat; //Set cltComm.ReqSendDataSpeechRepeat = 3 //It is reproduced 4 times. |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get repeat = cltComm.ReqSendDataSpeechRepeat #Set cltComm.ReqSendDataSpeechRepeat = 3 #It is reproduced 4 times. |
Python
1 2 3 4 5 6 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get repeat = clt_comm.ReqSendDataSpeechRepeat #Set clt_comm.ReqSendDataSpeechRepeat = 3 #It is reproduced 4 times. |