Corona virus (Covid 19) is spreading all around the world. Many lives have been at risk due to this pandemic. Most of the family members could not even reach their home. How about if you could take care of your family remotely ? How about if you could get your distant family member's health statistics from remote location and call for help in emergencies. This project explains how heart beat of a person can be received over a smartphone. Circuit diagram: Code: #include <ESP8266WiFi.h> #include <Servo.h> Servo servo; //Static IP address configuration IPAddress staticIP(192, 168, 225, 81); //ESP static ip IPAddress gateway(192, 168, 225, 1); //IP Address of your WiFi Router (Gateway) IPAddress subnet(255, 255, 255, 0); //Subnet mask //Define wifi configuration const char* ssid = "YOUR_SSID"; const char* password = "YOUR_WIFI_PASSWORD"; // Create an instance of the server WiFiServer server(80); void setup() { Serial.begin(9600); // pre
LEARN | EXPLORE | INNOVATE