Need help wemos D1 mini board garage door opener project

ok cant get to work also would like lcd read out to say if door is opened or shut here is my code and wiring diagram of board any help would be great I found this code on internet would like to change led to lcd


Blynk is a platform with iOS and Android apps to control
  Arduino, Raspberry Pi and the likes over the Internet.
  You can easily build graphic interfaces for all your
  projects by simply dragging and dropping widgets.

    Downloads, docs, tutorials: http://www.blynk.cc
    Blynk community:            http://community.blynk.cc
    Social networks:            http://www.fb.com/blynkapp
                                http://twitter.com/blynk_app

  Blynk library is licensed under MIT license
  This example code is in public domain.

 *************************************************************

  Blynk using a LED widget on your phone!

  App project setup:
    LED widget on V1

  WARNING :
  For this example you'll need SimpleTimer library:
    https://github.com/jfturcot/SimpleTimer
  Visit this page for more information:
    http://playground.arduino.cc/Code/SimpleTimer
 *************************************************************/

/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include <SimpleTimer.h>

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

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

WidgetLED led1(V1);

#define BLYNK_GREEN   "#23C48E"
#define BLYNK_RED       "#D3435C"


SimpleTimer timer;

// V1 LED Widget State
void blinkLedWidget()
 
 {
 if (digitalRead(D3)) {  

    led1.setColor(BLYNK_RED);  // magnetic switch is open, D3 is HIGH
    Serial.println("Door is open");

  } else {

    led1.setColor(BLYNK_GREEN);  // magnetic switch is closed, D3 is LOW
    Serial.println("Door is closed");

  }

}



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

  Blynk.begin(auth, ssid, pass);
  pinMode(D6, OUTPUT);   // connects to D1 of Relay
  pinMode(D5, OUTPUT);   // connects to D2 of Relay
  pinMode(D3, INPUT);    // connects to NC Magnetic Reed Switch
  // You can also specify server:
  //Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 8442);
  //Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8442);

// Turn LED on, so colors are visible
  led1.on();
  timer.setInterval(1500L, blinkLedWidget);
}

void loop()
{
  Blynk.run();
  timer.run();
}

I don’t know how to post pic of my board wiring thanks again for any help

At the upper right of this page are links to the Documents, Help Center and Sketch Builder. You will find everything you need to know about Blynk in there.

If you have any questions about a particular command or something that you have tried, but isn’t working quite right, then please ask… but please don’t just post a random sketch that you found and ask us to make it work for you.

Here is some additional references to the LCD - NOTE: the Blynk LCD widget is not a method of controlling real world LCD displays, rather a simple method to print data from your device to the app. I am sure you will be able to see how it works and merge it into your sketch.

http://docs.blynk.cc/#widgets-displays-lcd

http://examples.blynk.cc/?board=WeMos%20D1&shield=ESP8266%20WiFi&example=Widgets%2FLCD%2FLCD_AdvancedMode

It is also not capable of graphics, just text and numbers, pretty much anything ASCII.

And sending information to it is as simple as shown in the links above and here:

WidgetLCD lcd(V1);  In app, also assign virtual pin V1 to the Widget LCD in advanced mode.
lcd.clear();  //  Clear the LCD Widget screen

lcd.print(4, 0, "Hello");  // print Hello on the 1st line, starting at the 5th character in (counting starts from 0)
lcd.print(4, 1, "World");  // print World on the 2st line, starting at the 5th character in (counting starts from 0)

sorry just new to the blynk and needed a little help