Enviar dados do HC-05 para o blynk/ Send data from HC-05 to blynk

I have a project using the Nano arduino along with the Sw420 which is a vibration sensor and wanted to send the data to the blynk app using the HC-05, let’s go there to my problem…
I first did the configuration to test the Sw420 using led, it worked correctly, my design is a bracelet that detects seizure, I noticed that if I simulate a seizure with the Sw420 it gives a higher value and soon created a (if) for every time it captures this value light up the led, until then everything well after that comes my problem , I wanted to understand how to make the programming for when hitting this value, send the same to app type an alert message when hitting the value appear in the app that is occurring a seizure, I’ll leave the code just below

Ola, tenho um projeto usando o arduino Nano juntamente com o Sw420 que é um sensor de vibração e queria enviar os dados para o app do blynk usando o HC-05, vamos la ao meu problema…
fiz primeiro a configuração para testar o Sw420 usando led, ele funcionou corretamente, meu projeto é uma pulseira que detecta convulsão, eu reparei que se eu simular uma convulsão com o Sw420 ele da um valor maior e logo criei um (if) para toda vez que ele captar esse valor acender o led, ate ai tudo bem depois disso vem o meu problema, eu queria entender como fazer a programação para quando batesse esse valor, enviar o mesmo para app tipo uma mensagem de alerta quando batesse o valor aparecesse no app que esta ocorrendo uma convulsão, vou deixar o código logo abaixo

#include <SoftwareSerial.h>
SoftwareSerial SerialBT(4, 5); // RX, TX

//=====================================Configuracoes biblioteca Blynk===================================
#define BLYNK_PRINT SerialBT
#define BLYNK_USE_DIRECT_CONNECT
#include <BlynkSimpleSerialBLE.h>

//Token de autorizacao
char auth[] = "cWNn06hnh0AVUNofsC4Q78bGmfZSbz04";


//===================================== Programação sensor de vibração==================================
int led = 13;
int vs =9; //  sensor de vibração 

void setup()

{
  //Inicializa a comunicacao serial com o modulo HC-05
  SerialBT.begin(9600);
  Blynk.begin(SerialBT, auth);
  pinMode(led, OUTPUT);
  pinMode(vs, INPUT); 
  Serial.begin(9600);
 
}
void loop()
{
  long measurement =vibration();
  delay(50);
  Serial.println(measurement);
  if (measurement > 12400)
  {
    digitalWrite(led, HIGH);
  }
  else{
    digitalWrite(led, LOW); 
  }
  {
//=================================Aguarda conexao e interpreta os comandos enviados====================
  Blynk.run();
  }
}

long vibration()
{
  long measurement=pulseIn (vs, HIGH); 
  return measurement;
}

https://examples.blynk.cc/?board=Arduino%20Nano&shield=HC05%20or%20HC06&example=GettingStarted%2FPushData