A Pen by Lorik Mehmeti on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="card card:smert"> | |
<div class="display:flex top"> | |
<div class="top:left display:flex"> | |
<div class="icon:card icon:lamp"> | |
<svg width="26" height="26"> | |
<use xlink:href="#bulb" /> | |
</svg> | |
</div> | |
<div class="text:card"> | |
<h2 class="link title:card">Lamp</h2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="full-width"> | |
<div class="grid-section"> | |
<div class="image-section"> | |
<div class="image"> | |
<div class="img"> | |
<img src="https://images.unsplash.com/photo-1558403194-611308249627?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80" alt=""> | |
</div> | |
<div class="shadow"> | |
<div class="position-relative d"> | |
<div class="drag"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body ontouchstart="" draggable="false"> | |
<div class="container-slides"> | |
<div class="slider tv"> | |
<div class="info-sl"> | |
<div class="icon"> | |
<svg width="32" height="32"> | |
<use xlink:href="#tv"/> | |
</svg> | |
</div> | |
<div class="text-sl"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define BLYNK_PRINT Serial | |
#include <ESP8266WiFi.h> | |
#include <BlynkSimpleEsp8266.h> | |
char ssid[] = "****"; //Enter your WiFi name here! | |
char pass[] = "****"; //Enter your WiFi password here! | |
const int led1= D5; | |
const int trigPin = D3; | |
const int echoPin = D4; | |
const int buttonPin = D7; |