//Definição da variável Array de 2 dimenões (Matriz)
byte Led_pos[118][3] = {{0, 1, 2}, {3, 4, 5}, {6, 7, 8}, {9, 10, 11}, {12, 13, 14},  {15, 16, 17}};
int mensagem;
void setup()
{
  Serial.begin(115200);
  //Imprime os dados guardados na matriz 1x
  for (int row = 0; row < 5; row++)
  {
    for (int col = 0; col < 3; col++)
    {
      Serial.print(Led_pos[row][col]);
      Serial.print(" ");
    }
    Serial.println();
  }
}
void loop()
{
/////////////////////////////////////////////////////////
//Codigo existente do bluetooth
if (Serial.available()) 
  {
    SerialBT.write(Serial.read());
  }
  if (SerialBT.available()) 
  {
    // Serial.write(SerialBT.read());
    //mensagem = SerialBT.readString();
    mensagem = SerialBT.parseInt();
    // mensagem = SerialBT.readStringUntil(',');
    Serial.println(mensagem);

/// Instrução para acender os leds de acordo com o botao carregado - mensagem via bluetooth)
    for (int col = 0; col < 3; col++)
    {
      Serial.print(Led_pos[mensagem][col]);
      Serial.print(" ");
      ////Função de acender os ledas
      leds[Led_pos[(mensagem-1)][col]]=....(255,0,0);
    }
  }
  delay(20);
}


$abcdeabcde151015202530fghijfghij
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
r1:1
r1:2
led1:A
led1:C
r2:1
r2:2