Arduino SIM800L IMEI CHANGER

Below mentioned code can change any GSM module IMEI 

Many of faulty registered IMEI can be re-use in this Case,

AT+SIMEI command will be used in this case

 

https://youtu.be/hOJCJVk-5JE

 

 

 

 #include

void setup() {

  Serial.begin(9600);

  delay(100);

  Serial.println(“AT+SIMEI=863789000008218”) }; // Enter desire IMEI #

     

void loop() {}

Arduino Car Alternator to Brushless Motor conversion

 Arduino Car Alternator to Brushless Motor conversion 

Below is the simple Arduino control car alternator working as a powrfull motor 
Here simple ESC 30 Amps were used 
1). Need 12VDC connected to the internal coil of alternator first

2). 12VDC also need to be  connected to ESC 

3). Arduino will get 5V from the ESC buit-in 5VDC output

4). ESC connected to arduino  pin # 8

5). 10 K resistor connected to  arduino A0

https://web.facebook.com/ksfelectronics

servo esc;    

void setup()

{

esc.attach(8); 

esc.writeMicroseconds(1000); 

}

void loop(){

int val;                           

val= analogRead(A0);   

val= map(val, 0, 1023,1000,2000);                                                          

esc.writeMicroseconds(val);      

}

Check the video:

https://www.youtube.com/watch?v=LzQ_vyZUGTU


Arduino Bluetooth Remote control

Complete Bluetooth Remote control Project  

Arduino Bluetooth Remote control with APK

A great Bluetooth Remote control for your home automation , 

Download APK:

https://drive.google.com/file/d/0B5Nox4-ftvTqSmd6TGpiaHRTNkU/view?usp=sharing

…………………………………………………………………………………..

Check Video: 


https://m.youtube.com/watch?v=j2HYM4YbRK0

1). 1k Resister
              2). Any NPN transister
 3). 5 Volt Relay
     4). Arduino  nano
          5). Bluetooth module

            6). 5 volt power supply
                                              7). Arduino 6 & 7 pin used with bluetooth 

Below are the Arduino codes

#include
SoftwareSerial mySerial(7, 6);
#define relay1 2
#define relay2 3
#define relay3 4
#define relay4 5
char val;
void setup() {
pinMode(relay1,OUTPUT);
pinMode(relay2,OUTPUT);
pinMode(relay3,OUTPUT);
pinMode(relay4,OUTPUT);
digitalWrite(relay1,LOW);
digitalWrite(relay2,LOW);
digitalWrite(relay3,LOW);
digitalWrite(relay4,LOW);
mySerial.begin(9600);
Serial.begin(9600);
}
void loop() {
//cek data serial from bluetooth android App
while ( mySerial.available() >0 ) {
val = mySerial.read();
Serial.println(val);
}
//Relay is on


if( val == ‘1’ ) {
digitalWrite(relay1,HIGH); }
else if( val == ‘2’ ) {
digitalWrite(relay2,HIGH); }
else if( val == ‘3’ ) {
digitalWrite(relay3,HIGH); }
else if( val == ‘4’ ) {
digitalWrite(relay4,HIGH); }
//relay all on
else if( val == ‘9’ ) {
digitalWrite(relay1,HIGH);
digitalWrite(relay2,HIGH);
digitalWrite(relay3,HIGH);
digitalWrite(relay4,HIGH);
}
//relay is off
else if( val == ‘A’ ) {
digitalWrite(relay1,LOW); }
else if( val == ‘B’ ) {
digitalWrite(relay2,LOW); }
else if( val == ‘C’ ) {
digitalWrite(relay3,LOW); }
else if( val == ‘D’ ) {
digitalWrite(relay4,LOW); }
//relay all off
else if( val == ‘I’ ) {
digitalWrite(relay1,LOW);
digitalWrite(relay2,LOW);
digitalWrite(relay3,LOW);
digitalWrite(relay4,LOW);
}
}

ATS (Auto Transfer Switch ) with 3 sources input


 ATS (Auto Transfer Switch ) with 3 sources input

The clasical ATS system already shared by every one ,  but now a days we may need 3 thource ATS type through which we can manage the sources like hybrid power system   Mains power supply  , Generators, Solars , inverters ,  

If we look at the figure first of all source (S-1) will be connected as the relay will be energized through transformer which is connected to the Source (S-1), 

Failure of Source (S-1)  relay will not in the energized position , where common pin will be connected to relay (NC) pin , here NC pin is connected to the relay 2 common pin , 

If source (S-2 ) available relay 2 will be energized common pin will be connected to relay 2 (NO) ,

source (S-2) will be connected through NO pin then to Common of relay 2 ,then to NC of Relay 1 finally to output.

If source (S-2 ) unavailable relay 2 will be off , source (S-3) will be connected through NC of relay 2 then common pin then to the  NC or relay 1 finally to the output.

https://www.youtube.com/channel/UCo9zgx6UXdhBhpF51f5JjDw


SIMPLE IDEA


How to Use External Microphone on Android Phones

Using any Android phone for recording video or audio it will not allow you to use external microphone or line input , but with simple modification you can enable the external microphone 
just by adding 6.8k resistor to both microphone wires will mute the internal microphone , and enable for external source inputs.
In video voice recorder were used for testing , internal microphone still found enabled while inserting the jack, 
But by adding resistor found that internal microphone disabled

GPS Car Tracker

GPS Car Tracker 

This project is completely designed by me including hardware, software ,PCB . 

Price: 12,000 PKR

No Annual charges 
which is having the below specifications.
1).To track a car by sending message & receive the updated coordinates.
2). Get alert on car door or bonnet opening .
3). Car engine can be switch off by simply sending a SMS.
5). You can on & off car Horn by simply sending SMS,
4). Get alert on vibration in car

Check video:

https://www.youtube.com/watch?v=2HWzavLhwaA&t=54s

In this project following parts were used1). micro controller Atmega328
2). Sim900A.
3). Neo GPS module
4). DC to DC boost power supply.
5). 12vdc to 5vdc converter (car charger).
6). 3.7V, 1800 mAh , (mobile battery).
7). 5V relays
Price of complete Car Tracker : 12,000 -PKR

Arduino Bluetooth Remote Control (Updated )

Arduino Bluetooth  Remote Control

Output taken from Ardiuno 2 & 4 pins, Bluetooth device connected at 6 & 7 pins

For 30Amps Relay 2SC1384 used connected to pin 2, C945 for 10 Amps Relay connected to pin 4 . In Android application Buttons 1 & 3 will work.
Search Bluetooth device first enter 0000 password, 
Now start app in Android  press connection button ,it will be green  below it show the connection status 
Then you on or off any Appliances

Application link:

KIT: 3,000 PKR

#include
SoftwareSerial mySerial(7, 6);
#define relay1 2
#define relay2 3
#define relay3 4
#define relay4 5
char val;
void setup() {
pinMode(relay1,OUTPUT);
pinMode(relay2,OUTPUT);
pinMode(relay3,OUTPUT);
pinMode(relay4,OUTPUT);
digitalWrite(relay1,LOW);
digitalWrite(relay2,LOW);
digitalWrite(relay3,LOW);
digitalWrite(relay4,LOW);
mySerial.begin(9600);
Serial.begin(9600);
}
void loop() {
//cek data serial from bluetooth android App
while ( mySerial.available() >0 ) {
val = mySerial.read();
Serial.println(val);
}
//Relay is on

if( val == ‘1’ ) {
digitalWrite(relay1,HIGH); }
else if( val == ‘2’ ) {
digitalWrite(relay2,HIGH); }
else if( val == ‘3’ ) {
digitalWrite(relay3,HIGH); }
else if( val == ‘4’ ) {
digitalWrite(relay4,HIGH); }
//relay all on
else if( val == ‘9’ ) {
digitalWrite(relay1,HIGH);
digitalWrite(relay2,HIGH);
digitalWrite(relay3,HIGH);
digitalWrite(relay4,HIGH);
}
//relay is off
else if( val == ‘A’ ) {
digitalWrite(relay1,LOW); }
else if( val == ‘B’ ) {
digitalWrite(relay2,LOW); }
else if( val == ‘C’ ) {
digitalWrite(relay3,LOW); }
else if( val == ‘D’ ) {
digitalWrite(relay4,LOW); }
//relay all off
else if( val == ‘I’ ) {
digitalWrite(relay1,LOW);
digitalWrite(relay2,LOW);
digitalWrite(relay3,LOW);
digitalWrite(relay4,LOW);
}
}

Contact us

Please contact me if any question you have , i will try my best to help you specially about my all projects.

Some of the projects are not for free , like GPS Tracker or other projects which include source codes or HEX . If free then source codes will be shared in the project details.

Contact Me :

WhatsApp : +923337800081

Hotmail : obaid_kakar@hotmail.com.

Gmail: kakar.ksf@gmail.com.

About us

https://www.linkedin.com/in/obaidullah-khan-kakar-97582344/

https://www.youtube.com/channel/UCo9zgx6UXdhBhpF51f5JjDw


A qualified Engineer graduated  from NED university of Engineering & Technology, Karachi, Pakistan.
BE Electronic ,2000.
Interested in ;
     Professional engineer with the 13 years in the field of telecom industry     Moreover interested in Electronic circuits designing like (Arduino, Transmitters, Metal detectors & Remote Controller  etc.    

Design a site like this with WordPress.com
Get started