Need help with Zapier & Bluetooth

Don’t you think that this is somewhat difficult, as you haven’t shared your code?

Pete.

sorry sir I figured out the mistake in code and I fixed it but sir please give me the procedure to integrate blynk with zapier process

Sir and I am using bluetooth to control arduino via mobile so when I tried as you said with ifttt it worked from GA to blynk and it didn’t turn on the relay when I come out of blynk app and use GA it bluetooth module disconnects from blynk so relay isn’t turning on can you give me any suggestion

I’ve moved your posts into a new topic, as it has now strayed a long way from the original (solved) topic.

If there is no Bluetooth connection between the Arduino and the phone then how do imagine that the instructions from IFTTT/Zapier will reach your relay?

My advice would be not to use Bluetooth and use WiFi instead, along with a board that has built-in WiFi connectivity such as the NodeMCU or Wemos D1 Mini.

Pete.

SIR i took nodemcu and its working with blynk now what i need is only the procedure to link blynk with zapier

That’s already been described in the topic that you posted in originally…

The IP address of the Blynk cloud server that hosts your project will probably be different - I’d guess 188.166.206.43 but you can find that information by pinging blynk-cloud.com from your PC as described in many of the IFTTT tutorials.

Pete.

Sir but i am not understanding the procedure pls tell me the procedure

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.