Speed monitoring system

Before creating the topic

  1. Search forum for similar topics
  2. Check http://docs.blynk.cc and http://help.blynk.cc/
  3. Add details :
    • Hardware model + communication type. For example: Arduino UNO with Ethernet Shield
    • Smartphone OS (iOS or Android) + version
    • Blynk server or local server
    • Blynk Library version
    • Add your sketch code. :point_up:Code should be formatted as example below.

Simply paste your code between ``` If you don’t format your code, your topic can be deleted by moderators.


void loop()

```/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial


#include <WiFi.h>
#include <WiFiClient.h>
#include <Blynk.h>

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

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "3c40a1";
char pass[] = "worry.863.gaze";
int sen1=15;
unsigned long t1=0; 
float velocity;

void setup()
{
  // Debug console
  pinMode(sen1,INPUT);
  Serial.begin(9600);
  Serial.print(" Speed Detector ");

  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();
  while(digitalRead(sen1));
  while(digitalRead(sen1)==0);
  t1=millis();
  velocity=t1;
  velocity=velocity/1000;//convert millisecond to second
  velocity=(5.0/velocity);//v=d/t
  velocity=velocity*3600;//multiply by seconds per hr
  velocity=velocity/1000;//division by meters per Km
  Serial.print(velocity);
  Serial.print(" Miles/Hr   ");

  // 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!