Posts

Showing posts from 2019

BLUETOOTH CONTROLLED CAR CODE

#include <AFMotor.h> AF_DCMotor motor1(1);  AF_DCMotor motor2(2);  AF_DCMotor motor3(3); AF_DCMotor motor4(4); char command; int emp = 13;  void setup()  {          Serial.begin(9600);   pinMode(emp,OUTPUT); } void forward() {   motor1.setSpeed(255);   motor1.run(FORWARD);    motor2.setSpeed(240);   motor2.run(FORWARD);   motor3.setSpeed(255);   motor3.run(FORWARD);   motor4.setSpeed(240);   motor4.run(FORWARD); } void back() {   motor1.setSpeed(170);    motor1.run(BACKWARD);   motor2.setSpeed(170);    motor2.run(BACKWARD);   motor3.setSpeed(170);   motor3.run(BACKWARD);   motor4.setSpeed(170);   motor4.run(BACKWARD); } void left() {   motor1.setSpeed(240);   motor1.run(FORWARD);    motor2.setSpeed(255);   motor2.run(FORWARD);   motor3.setSpeed(240);   moto...

Black hole

Happy birthday INDU😇😇.... may u achieve all tye success in ur life....

INTERFACING AN MPU 6050

Image
HELLO FRIENDS,  TODAY WE ARE GOING TO LEARN TO INTERFACE AN MPU 6050 ACCELEROMETER MODULE. SO LET'S GET STARTED: HERE'S A TUTORIAL TO EXPLAIN THE CIRCUIT AND FUNCTIONS. https://youtu.be/gJUIErKvWoo NOW FOR THE CODING OF THE ARDUINO TYPE THE FOLLOWING : #include<Wire.h> const int MPU_addr=0x68;  // I2C address of the MPU-6050 int16_t AcX,AcY,AcZ,Tmp,GyX,GyY,GyZ; int LED = 13; void setup(){   Wire.begin();   Wire.beginTransmission(MPU_addr);   Wire.write(0x6B);  // PWR_MGMT_1 register   Wire.write(0);     // set to zero    Wire.endTransmission(true);   Serial.begin(9600);    pinMode( LED,OUTPUT); } void loop(){   Wire.beginTransmission(MPU_addr);   Wire.write(0x3B);  // starting with register 0x3B (ACCEL_XOUT_H)   Wire.endTransmission(false);   Wire.requestFrom(MPU_addr,14,true);  // request a total of 14 registers   AcX=Wire.read()<<8|Wire....

EMP JAMMER

Image
EMP JAMMER : HELLO FRIENDS I AM KUNAL AND TODAY WE ARE GOING TO MAKE ANOTHER PROJECT THAT IS AN EMP GENERATOR/JAMMER. SO LET'S GET READY TO MAKE THIS WE NEED SOME EQUIPMENTS : 1. HIGH VOLTAGE GENERATOR    The  high - voltage generator  drives a power transistor based on self-excited oscillation, which converts DC to AC. A  high -frequency transformer with  high  turns ratio is used to increase the  voltage. This high voltage will be induced to create a strong electromagnetic pulse, which will stop other circuits in its range from working. TO BUY THIS PRODUCT CLICK ON: https://www.amazon.in/gp/product/B0769HW8NH/ref=as_li_tl?ie=UTF8&camp=3638&creative=24630&creativeASIN=B0769HW8NH&linkCode=as2&tag=kunnu31-21&linkId=a8e8159993ce5ad2ae0bfb2ee3dfc29c   OR  https://amzn.to/2EqwOfU 2. MAGNETIC WIRES ( COPPER WIRES)     Magnet wire  or enameled  wire ...

BLUETOOTH CONTROLLED ROBOT

Image
HELLO FRIENDS, I AM KUNAL AND TODAY WE ARE GOING TO TALK ABOUT MAKING A BLUETOOTH CONTROLLED ROBOT. FIRST OF ALL IF YOU WANT TO START ELECTRONICS THEN YOU NEED TO USE SOME BETTER EQUIPMENTS. GET OUT OF THOSE CONFUSING CIRCUITS AND START USING DEVELOPMENT BOARDS AND LETS KNOW ABOUT SOME EQUIPMENTS FOR MAKING A BLUETOOTH CONTROLLED ROBOT. HERE ARE SOME BASIC EQUIPMENTS THAT YOU NEED TO MAKE IT. 1. ARDUINO MEGA/ UNO       The MEGA 2560 is designed for more complex projects. With 54 digital I/O pins, 16 analog inputs and a larger space for your sketch it is the recommended board for 3D printers and robotics projects. This gives your projects plenty of room and opportunities. Due to more number of pins it becomes easy for users to start with and no problem while connections. click below in the link to buy: https://www.amazon.in/gp/product/B07F44YK11/ref=as_li_tl?ie=UTF8&camp=3638&creative=24630&creativeASIN=B07F44YK11&linkCod...