siddharth sahu
Published © GPL3+

IOT items tracking by ringing them

Find KEYs, WALLET, BAGs by ringing them using google assistant

BeginnerFull instructions provided2 hours214
IOT items tracking by ringing them

Things used in this project

Hardware components

NodeMCU ESP8266 Breakout Board
NodeMCU ESP8266 Breakout Board
×1
Buzzer
Buzzer
×1
Battery, 3.7 V
Battery, 3.7 V
×1

Software apps and online services

Maker service
IFTTT Maker service
Blynk
Blynk
Assistant SDK
Google Assistant SDK
Arduino IDE
Arduino IDE

Story

Read more

Schematics

nodemcu connet to buzzer

sorry for connecting buzzer to other pin of nodemcu board you should change pin no. or gpio pin change in ifttt applet

Code

node mcu blynk code

C/C++
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

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

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "YourNetworkName";
char pass[] = "YourPassword";

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

  Blynk.begin(auth, ssid, pass);
  // You can also specify server:
  //Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 80);
  //Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8080);
}

void loop()
{
  Blynk.run();
  // You can inject your own code or combine it with other sketches.
  // Check other examples on how to communicate with Blynk. Remember
  // to avoid delay() function!
}

code

code

Credits

siddharth sahu
2 projects • 21 followers
i am an electronics and communication engineering student

Comments