Bluetooth connection HC-06

Hello, I’m trying the new connection bluetooh with HC-06 only got not success, aparenemente everything is normal connected however try a simple command to trigger a button but nothing works, anyone have any suggestions?

I am using a one arduino and bluetooth module HC-06.

// You could use a spare Hardware Serial on boards that have it (like Mega)
#include <SoftwareSerial.h>
SoftwareSerial DebugSerial(2, 3); // RX, TX

#define BLYNK_PRINT DebugSerial
#include <BlynkSimpleStream.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "20185cadd1db4fe2b784880c6ea29965";

void setup()
{
  // Debug console
  DebugSerial.begin(9600);

  // Blynk will work through Serial
  // 9600 is for HC-06. For HC-05 default speed is 38400
  Serial.begin(9600);
  Blynk.begin(auth, Serial);
}

void loop()
{
  Blynk.run();
}