Posts

Home-Automation-System-using-Arduino ::::: SDWEBENGINEER..

Image
Home-Automation-System-using-Arduino (This page includes the complete code and circuit diagram of Home Automation Project.) App used in this Project: https://play.google.com/store/apps/details?id=com.himanshu.ArduinoAutomation Note: In Circuit diagram I have just connected 2 Channel Relay and 2 Appliances but according to code you can connect 9 Relay at digital pins 4, 5, 6, 7, 8, 9, 10, 11 & 12. You can increase the number of appliances according to you, there will be no need of changing anything in the code. For more information regarding the Project you can watch this video: https://youtu.be/i4A1lT43w5g Project Components:  Arduino UNO Board:  2 Channel Relay Module:  Bluetooth Module HC-05:  Half Breadboard:  Jumper Wires:  Circuit diagram.  (If picture not clear then click on picture.) Codes for this project.. (Codes are given below. Just copy and paste in ardiuno ide. or click here for codes.  )       ===============...

Arduino-Talking-Bot ::::::::: SDWEBENGINEER

Image
Arduino-Talking-Bot This github includes the complete code & circuit of Arduino Talking Bot Project. The app used for this Project: https://play.google.com/store/apps/details?id=com.himanshu.ArduinoAutomation To know more about this Project you can watch this Video:  https://youtu.be/v_Vck78mUkQ To create audio file click here  . Accessories I used in this project.. Buy Arduino UNO Board: Buy Bluetooth Module: Buy APR33A3 Module: Buy 8 Ohm Speaker: Buy Jumper Wires:     Ardiuno Talking Bot (Circuit).. If  picture not showing or not clear then click here .... Codes for this project..         ( Click here for codes. The codes also given below. Just copy and paste in ardiuno ide.. )        -------------------------------------------------------------- #include<SoftwareSerial.h> SoftwareSerial mySerial (2, 3); #define m1 4 #define m2 5 #define m3 6 #define m4 7 #define m5 8 #define m6 9 #define m7 10 #defi...

Iron Man Jarvis AI Desktop Voice Assistant | Using Python...

🏠Home   Jarvis AI Desktop Voice Assistant | Using Python... Have you ever wondered how cool it would be to have your own A.I. assistant? Imagine how easier it would be to send emails without typing a single word, doing Wikipedia searches without opening web browsers, and performing many other daily tasks like playing music with the help of a single voice command. In this tutorial, I will teach you how you can make your personal A.I. assistant using Python.  What can this A.I. assistant do for you? It can send emails on your behalf. It can play music for you. It can do Wikipedia searches for you. It is capable of opening websites like Google, Youtube, etc., in a web browser. It is capable of opening your code editor or IDE with a single voice command. Enough talks! Let's start building our own J.A.R.V.I.S. – Starting VS Code I am going to use the VS Code IDE in this video. Feel free to use any other IDE you are comfortable with. Start a new project and make a file called jarvi...