Kaustubh Agarwal
Published © GPL3+

Using IFTTT with BLynk

A write up that would show how to connect the maker (hardware) channel of IFTTT to hundreds of channels.

BeginnerProtip1 hour13,495
Using IFTTT with BLynk

Things used in this project

Story

Read more

Schematics

Trial

Code

Trial

Arduino
#define BLYNK_PRINT Serial
#include <SPI.h>
#include <Ethernet.h>
#include <BlynkSimpleEthernet.h>
#include <SimpleTimer.h>

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

SimpleTimer timer;

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

  while (Blynk.connect() == false) {
    // Wait until connected
  }

 pinMode(7,OUTPUT); 
 }
  
  void loop()
  {
  Blynk.run();
  Timer.run();
  }

Credits

Kaustubh Agarwal

Kaustubh Agarwal

14 projects • 191 followers
IoT Enthusiast SDE@ASML

Comments