Posts

AC Light dimmer c]project in Proteus

Image
 

Latch Switch Circuit with Transistor

Image
                                                        Latch Switch Circuit with Transistor

LOGIC Gate Simulation with Practical in Proteus

Image
  https://academo.org/demos/logic-gate-simulator/ ANDGATE OR GATE NOT GATE NOR GATE NAND GATE XOR GATE  

Proteus Simulation of Automatic Light sensing Lamp

Image
 https://sirboatengonline.com/download-proteus-8-11-latest-version-for-free/

Proteus Simulation PWM with Arduino and Triac

Image
  Arduino Sketch for PWM // Connect the anode of MOC 3021 to Arduino Pin 10. void setup()  {  } void loop()  {   for (int i = 0;i <=255; i++) {   analogWrite(10,i);   delay(100); } for (int j = 255; j >=0; j--) {   analogWrite(10,j);   delay(100); } }

Proteus Simulation for IR Proximity Sensor module with Arduino

Image
Proteus Simulation  for IR Proximity Sensor module with Arduino   // Interfacing Infrared Proximity sensor Module with Arduino void setup() {   pinMode(12,OUTPUT);//connect LED to Digital Pin 12 of Arduno   pinMode(3,INPUT);// connect OUTPUT pin of  IR Sensor to Digital Pin 3 of Arduino   Serial.begin(9600); } void loop() {   if (digitalRead(3)== HIGH )//  (if any obstruction in front of IR sensor-Output will go HIGH)   {     digitalWrite(12,HIGH);// Turn on the LED          delay(10);   }   else    {          digitalWrite(12,LOW);// else ,Turn OFF the LED     delay(10);        }    }  

Missed Call Automation with status Reply

Image
Click on the link below to Download the Arduino sketch https://github.com/anokhramesh/GSM-Misscall-Automation Parts List 1- Arduino Nano 2-GSM module Sim 800L 3-5 Volt 10 A relay 4-2N2222A npn transister 5-PC 817 or P781 octocoupler  6-Terminal blocks 7- Red LED 8-1N4007 diode 9-220 ohm Resistance 10-330 ohm Resistance 11-Female header 12-220v AC to 5V DC 2Ampere powersupply 13-10 AFuse holder with fuse 14-10A toggle switch 15-PVC Box-6"x4" size   Arduino sketch //Projech Name-RelayControll by missedcall with Switch status,1=ON and 0=OFF #include <SoftwareSerial.h> //Install SoftwareSerial Library const int relayPin=5;//connect digital pin 5 of Arduino to IN pin of Relay module const int ledPin=6;//connect digital pin 6  of Arduino to switch indicator led bool relayStatus=1; bool ledStatus=1; const String phone="+971557407961";  // with list phone include +91 or your country code SoftwareSerial gsmSerial(7,8);//Connect RXT pin of GSM module to D8 pin on Arduin...