Posts

Showing posts from January, 2021

How To Make Google Home

Image
Code  :- /* code started     Google Home     #define Relay1 = D0     #define Relay2 = D1   code created by technical ideas yt https://youtube.com/c/TechnicalidEas07 */  #define BLYNK_PRINT Serial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> char auth[] = "YourAuthToken"; char ssid[] = "YourNetworkName"; char pass[] = "YourPassword"; void setup() {      Serial.begin(9600);   Blynk.begin(auth, ssid, pass);    } void loop() {   Blynk.run(); } Instagram id Subscribe Now  http://188.166.206.43/AuthCode/update/D2      

Smart Charger

Image
Code :-  https://drive.google.com/file/d/13IsfVJ1opG1Q8Opsp_mKk4qTXoPvxARU/view?usp=drivesdk

How To Make Smart Street Light

Image
  ๐Ÿ”— ๐‘ช๐’Š๐’“๐’„๐’–๐’Š๐’• ๐‘ซ๐’Š๐’‚๐’ˆ๐’“๐’‚๐’Ž :-  https://drive.google.com/folderview?id=12eVxZA6ykzveXjEBglbZP36YETR_EIDm

Servo Motor Control using by Mobile

Image
What's App Group:-  https://chat.whatsapp.com/I4Nv0YEt1hK3Z9EVjsvngh ๐Ÿ‘จ๐Ÿป‍๐Ÿ’ป  Code :-  /* code started #define servo= 11; #define rx= 2; #define tx= 3; code created by technical idEas  https://youtube.com/c/TechnicalidEas07 */ #include<SoftwareSerial.h> #include <Servo.h> Servo myservo; SoftwareSerial mySerial(2, 3); // RX, TX int Position ; void setup() {   myservo.attach(11);   mySerial.begin(9600);   Serial.begin(9600); } void loop() {  if(mySerial.available()>0)  {   Position = mySerial.read();   Position = map(Position, 0, 180, 180, 0);   myservo.write(Position);  } }           Instagram ID :-   https://www.instagram.com/technical_ideas_07/ APPLICATION :-   https://drive.google.com/file/d/1AQJ29gRVOFhm1Ap1BkEbRWKg_pvEbvAX/view?usp=drivesdk SUBSCRIBE NOW :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw  ๐Ÿฅบ

Best Arduino Project

Image
  Coding & Circuit diagram:-    https://drive.google.com/folderview?id=101FnttNwofosznx5QkrOR3ZSfjJPGlAF SUBSCRIBE NOW :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw  ๐Ÿฅบ

๐‡๐จ๐ฐ ๐“๐จ ๐‚๐จ๐ง๐ญ๐ซ๐จ๐ฅ ๐‹๐ข๐ ๐ก๐ญ ๐”๐ฌ๐ข๐ง๐  ๐›๐ฒ ๐“๐• ๐‘๐ž๐ฆ๐จ๐ญ๐ž

Image
  Zip File :-   https://drive.google.com/file/d/1ocwu2Vh9-AuAx-qrez0sn3PxpmA5EW39/view?usp=drivesdk Code :-  https://drive.google.com/folderview?id=1-olah5P2pQKwrscxDag6NZeK3kqHX_is Instagram :-  https://www.instagram.com/technical_ideas_07 ๐’๐ฎ๐›๐ฌ๐œ๐ซ๐ข๐›๐ž ๐๐จ๐ฐ ๐“๐ž๐œ๐ก๐ง๐ข๐œ๐š๐ฅ ๐ข๐๐„๐š๐ฌ :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw

Accident Preventing Car

Image
  Created by :-  Tasnim   Zotder This is   Tasnim   Zotder   Code :-/* Car Crash Avoidance System Author: Mukhtar Zotder | 2021 URL:  https://github.com/mukhtarzotder/auto-crash-avoiding-system License: MIT */ #include <Arduino.h> #define triger D1 #define echo D0 #define buzzer D5 #define ENA D2 #define IN1 D8 #define IN2 D7 #define redLED D4 #define greenLED D6 int isStopped = 0; void ledSelect(int led) {     if (led == 0) {         digitalWrite(redLED, 1);         digitalWrite(greenLED, 0);     } else if (led == 1) {         digitalWrite(redLED, 0);         digitalWrite(greenLED, 1);     } } int getDistance() {     int distance;     long duration;     digitalWrite(triger, 0);     delayMicroseconds(2);     digitalWrite(triger, 1);     delayMicroseconds(10);     digitalWrite(triger, 0);     duration = pulseIn(echo, HIGH);     distance = duration * 0.034 / 2;     return distance; } int getDistanceAvg() {     int totalDist = 0;     for (int i = 0; i < 10; i++) {         int d

How to make Smart Security Camera

Image
  Code :-  // Code Started // This Code Created By Technical idEas(YT) // Samrat Security Camera #define pin2 2 #define pin3 3 void setup() { // put your setup code here, to run once: pinMode(2,INPUT); pinMode(3,OUTPUT); } void loop() { // put your main code here, to run repeatedly: if(digitalRead(PIN2)==1){digitalWrite(3,HIGH); delay(1000); digitalWrite(3,LOW); delay(20000); digitalWrite(3,HIGH); delay(1000), digitalWrite(3,LOW); delay(1000);}else{ digitalWrite(3,LOW); }} Circuit Diagramiagram :- If you have any problem in making this, can you tell me on Instagram? Instagram ID :- Technicalideas07 Link :-  https://www.instagram.com/technical_ideas_07/ Subscribe Now :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw

๐‡๐จ๐ฐ ๐“๐จ ๐Œ๐š๐ค๐ž ๐’๐ฆ๐š๐ซ๐ญ ๐‹๐ข๐ ๐ก๐ญ

Image
  Code :-  // Code Started // This Code Created By Technical idEas(YT) // Smart Light Using By PIR Sensor int pbuttonpin=4; int led=7; int val=0; int lighton=0; int pushed=0; void setup() { // put your setup code here, to run once: pinMode(pbuttonpin,INPUT_PULLUP); pinMode(led,OUTPUT); } void loop() { // put your main code here, to run repeatedly: val=digitalRead(pbuttonpin); if(val==HIGH && lighton==LOW) { pushed=1-pushed; delay(100); } lighton=val; if(pushed==HIGH) { digitalWrite(led,LOW); }else { digitalWrite(led,HIGH); } delay(100); } Circuit Diagram :-  If You have any Problem, can you tell me on Instagram    Instagram ID :- Technicalideas07 Link :-  https://www.instagram.com/technical_ideas_07/ Subscribe Now :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw

สœแดแดก แด›แด แดแด€แด‹แด‡ ส™แดแดส™ ส™สŸแด€sแด›แด‡ส€

Image
  Coding and Circuit diagram :-    https://drive.google.com/file/d/1ocwu2Vh9-AuAx-qrez0sn3PxpmA5EW39/view?usp=drivesdk 2nd Codeing :-   https://drive.google.com/file/d/1r9VEhMMTdAQLqUj3f4hN9tamT-1YXh6L/view?usp=drivesdk 2nd Circuit diagram :-   https://drive.google.com/file/d/13jIKO03G8xwx13dD6DVRyPe5HCj5Z4nN/view?usp=drivesdk    How To Download Code

How To Control Light Using by IP Address

Image
  Code :-  // Code Started // This Code Created By Technical idEas(YT) // Light Control Using IP address #include <ESP8266WiFi.h> WiFiClient client; WiFiServer server(80); #define led D5 void setup() {   // put your setup code here, to run once:   Serial.begin(9600);   WiFi.begin("Sam", "12345678");   while(WiFi.status() != WL_CONNECTED)   {     delay(200);     Serial.print("..");   }   Serial.println();   Serial.println("NodeMCU is connected!");   Serial.println(WiFi.localIP());   server.begin();   pinMode(led, OUTPUT); } void loop() {   // put your main code here, to run repeatedly:   client = server.available(); //Gets a client that is connected to the server and has data available for reading.   if (client == 1)   {     String request = client.readStringUntil('\n');     Serial.println(request);     request.trim();     if(request == "GET /ledon HTTP/1.1")     {       digitalWrite(led, HIGH);     }     if(

สœแดแดก แด›แด แดแด€แด‹แด‡ sแดแด€ส€แด› สœแดแดแด‡

Image
  Circuit diagram :-   https://drive.google.com/file/d/1HUVGGNHfHEsi4UTJgnWxX4HAN7eUF_bM/view?usp=drivesdk Code :-  https://drive.google.com/file/d/1HTtPPmhIK-DJmBxrFGpAlmmDEEOG7tgf/view?usp=drivesdk ๐•Ž๐•’๐•ฅ๐•”๐•™ ๐•ฅ๐•™๐•– ๐•—๐•ฆ๐•๐• ๐•ง๐•š๐••๐•–๐• , ๐•ช๐• ๐•ฆ ๐•จ๐•š๐•๐• ๐•˜๐•–๐•ฅ ๐•ฅ๐•™๐•– ๐•ก๐•’๐•ค๐•ค๐•จ๐• ๐•ฃ๐••.❤️๐Ÿค—     Code Download Process  ๐ˆ๐Ÿ ๐ฒ๐จ๐ฎ ๐ก๐š๐ฏ๐ž ๐š๐ง๐ฒ ๐๐ซ๐จ๐›๐ฅ๐ž๐ฆ ๐ข๐ง ๐ฆ๐š๐ค๐ข๐ง๐  ๐ญ๐ก๐ข๐ฌ, ๐œ๐š๐ง ๐ฒ๐จ๐ฎ ๐ญ๐ž๐ฅ๐ฅ ๐ฆ๐ž ๐จ๐ง ๐ˆ๐ง๐ฌ๐ญ๐š๐ ๐ซ๐š๐ฆ :-  https://www.instagram.com/technical_ideas_07/ Subscribe Now :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw