Need help with Zapier & Bluetooth

As I said before, if you aren’t familiar with the process then you ought to follow the IFTTT tutorials and get the process working on that platform, then use what you’ve learned to recreate the same process on Zapier.

Or, read the documentation for the API using the GET method and test the commands from the address bar of your browser then use those commands in Zapier.

Pete.

sir but I need a tutorial

YouTube is your friend my friend!

PS Don’t over work @PeteKnight or we are all up a creek with no paddle!

1 Like

As I’ve already said several times, there are many IFTTT/Blynk tutorials on this forum. You should search for them, follow them and get some of your processes working with IFTTT. You’ll then realise that Zapier is very similar to IFTTT and the information contained in the original topic that you posted in will tell you everything you need to know to change the Blynk side of the Zap so it works correctly.

However, I suspect that what you really want is for someone to do the work for you, as opposed to you putting a little time an effort in yourself. If that’s the case then you’ve probably come to the wrong place.

Pete.

Sir after watching the tutorial i made a zapier configuration and it worked thankyou sir so much

Sir i have a problem with bluetooth and blynk when i open blynk it gets connected with hc 05 module but when i come out of the blynk app the connection is gone what i need is that when i even close blynk app bluetooth connection should be connected

The topic that you posted in was about a particle photon board, which woks in a very different way to the NodeMCU board that you said you are now using. Because of this I’ve moved your post back to your own topic about your project.

As I’ve said before, Bluetooth isn’t a suitable communication method for the type of project that you are building. For the project to operate, your phone needs to be within a short distance of the NodeMCU + HC-05 module, and you need to manually create the Bluetooth connection each time it is dropped.
Bluetooth is okay when used to control something like a radio controlled vehicle, but has very few other real world uses.
That is why I said…

Pete.

Sir i dumped the idea of bluetooth but sir now what i am trying to do is that i have a arduino an esp8266 module and a hc05 module now i have 2 codes in which 1 code will work for esp8266 and another code will work for hc05 i am trying to club both so i will send you the both code tommorow morning sir can you help with clubing both codes i tried clubing both the codes from morning but it is showing 1 or the other errors

Sir i am uploading the code of esp8266
the code is



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


char auth[] = "YourAuthToken";


char ssid[] = "YourNetworkName";
char pass[] = "YourPassword";


#include <SoftwareSerial.h>
SoftwareSerial EspSerial(2, 3); // RX, TX


#define ESP8266_BAUD 115200

ESP8266 wifi(&EspSerial);

void setup()
{
 
  Serial.begin(9600);

  delay(10);

  
  EspSerial.begin(ESP8266_BAUD);
  delay(10);

  Blynk.begin(auth, wifi, ssid, pass);
}

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

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.