Problems showing values on screen received from arduino via hc05

i'm trying to read two values that are send from arduino via gc05 , i want to show the value of c11 and c14 . but it doesn't work and i don't know why.

estou tentando ler dois valores que sao enviados via hc05 do arduino , vou mostrar o valor de c11 e c14

void jogar()
{//rotina jogar
                digitalWrite(motor,LOW);//liga motores de lançamento
                delay(10000);//aguarda atingir velocidade
               //c11=0;
               //c14=0;
               do{
                c10 = digitalRead(sensordosador);//lê sensor
                  
                          if (c10 == LOW && set ==0)
                            {
                              set =1;
                            }
                                  
                         if (c10 == HIGH && set ==1)
                            {
                              set =0;
                            }      
                          if (set==1)
                           {
                               digitalWrite(dosador,HIGH);//desliga dosador
                               c11= c11 + 1;//conta numero de vezes que o sensor atuou
                               c14 = c14 + 1;
                               Serial.print(c11);
                               Serial.print("|");
                               Serial.print(c14);
                               Serial.println("|");
                               delay(6000);
                            }
                         if (set ==0)
                           {
                               digitalWrite(dosador,LOW);//liga dosador.
                           }
                                           
                } while (c11<5);
                c11=0;
                digitalWrite(motor,HIGH);//DESLIGA MOTORES DE LANÇAMENTO
                digitalWrite(dosador,HIGH);//DESLIGA MOTOR DOSADOR
                digitalWrite(habBase,LOW);//DESABILITA DRIVE MOTOR POSICIONADO      
                
}        




ajuda

can someone show me where the error is? please , if i remove the lenght from de list, another error occurs , is i leave it, it does not show the value in ball.txt and total.txt.

alguem pode me dizer onde esta o erro.........por favor, se retirar o comprimento da lista ele da mensagem "select item:list too large......." com comprimento da lista falha nãp ocorre mas ele não mostra os valores no bolas.txt e total.txt