Skip to content

Instantly share code, notes, and snippets.

View jigneshk5's full-sized avatar
🎯
Focusing

jignesh kumar jigneshk5

🎯
Focusing
View GitHub Profile
@jigneshk5
jigneshk5 / index.html
Created August 22, 2021 21:55
Smart Home OS Card
<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>
@jigneshk5
jigneshk5 / index.html
Created August 22, 2021 21:54
Section Web - METAMO
<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">
@jigneshk5
jigneshk5 / accordions-input-checkboxes.markdown
Created August 22, 2021 21:54
Accordions - Input Checkboxes
@jigneshk5
jigneshk5 / index.html
Created August 22, 2021 21:53
Input Range iOS - Apple Style
<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">
@jigneshk5
jigneshk5 / smart_light.ino
Last active April 28, 2020 12:53
This arduino code is the part of documentation of Smart Street Light Project.
#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;