Posts

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