Need help with Zapier & Bluetooth

this is the code to hc05
the code is

#include <BlynkSimpleSerialBLE.h>
#include <SoftwareSerial.h>
SoftwareSerial SwSerial(10,11);


SoftwareSerial SerialBLE(10,11);


char auth[] = "Auth token";


 void setup()
{
  Serial.begin(9600);
  pinMode(2,OUTPUT);digitalWrite (2,OUTPUT);
  pinMode(3,OUTPUT);digitalWrite (3,OUTPUT);
  pinMode(4,OUTPUT);digitalWrite (4,OUTPUT);
  pinMode(5,OUTPUT);digitalWrite (5,OUTPUT);
  pinMode(6,OUTPUT);digitalWrite (6,OUTPUT);
  pinMode(7,OUTPUT);digitalWrite (7,OUTPUT);
  pinMode(8,OUTPUT);digitalWrite (8,OUTPUT);
  pinMode(9,OUTPUT);digitalWrite (9,OUTPUT);
  SerialBLE.begin(9600);
  Blynk.begin(SerialBLE, auth);


  Serial.println("Waiting for connections...");    
}


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

@Devendra please edit your code, using the pencil icon at the bottom, and add triple backticks at the beginning and end of your code so that it displays correctly.
Triple backticks look like this:
```

Pete.

sir i did it can you help me

In that case, why are you trying to incorporate the HC-05 Bluetooth module into your hardware setup?

Pete.

sir, its for my friend he asked me to give me the clubbed code i am trying it from morning but i couldā€™nt acheive it

Sir when i include this

#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>```

To

To this
It shows me that error compiling for board arduino uno

#include <BlynkSimpleSerialBLE.h>
   #include <SoftwareSerial.h>

Thatā€™s because the standard Blynk library is designed to use one connection method (WiFi or Bluetooth) at a time, not both.

Pete.

sir pls give me the procedure for zapier and blynk

sir pls i am requesting you sir

It seems like you have a short memory!

Pete.

Sir this is a blynk user and i need help with configuring blynk and google assistant and i need to control a nodemcu but it is showing an error and i need to send data to virtual pin in nodemcu and mentioned above my topic is not included in this sir

Iā€™d suggest that you start a new topic and provide sufficient information about what you are trying to achieve, what you have tried so far, what errors you get and anything else that may be helpful to assist us to help you.

Pete.