Posts

Auto Gate HMI Animation VB.NET | Automatic Gate Open Close Application S...

Image
Code: Public Class Form1     Private g As Graphics     'Private xPosition As Integer     Private yposition As Integer    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         Me.Height = 550         Me.Width = 800         Me.Show()         g = Me.CreateGraphics         Me.BackColor = Color.Aquamarine         Timer3.Start()     End Sub   Private Sub DrawNewRectangle1(ByVal y As Integer, ByVal x As Integer)   REM DOOR OPENING RECTANGLE         Me.Refresh()         g.DrawRectangle(Pens.Black, 130, 50, 543, 400)         g.FillRectangle(Brushes.Orchid, 130, 50, y, 400)         g.FillEllipse(Brushes.Green, 7, 184, 30, 30)         g.DrawRectangle(Pens.Black,...

How To Animate Fans In Visual Studio Dot Net | Fans Animation VB.NET | HMI

Image
Form Design. Code: Public Class Form1     Private g As Graphics     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         g = Me.CreateGraphics()         Me.BackColor = Color.White     End Sub     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click         Timer1.Start()     End Sub     Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click         Timer1.Stop()     End Sub     Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick         Timer2.Start()         Timer3.Start()     End Sub     Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As Sy...

LM393 3 Pin IR Flame Detection Sensor Module | Fire Detector Infrared Receiver Module for Arduino

Image
  LM393 3 Pin IR Flame Detection Sensor Module | Fire Detector Infrared Receiver Module for Arduino       Code:  //Arduino Flame Sensor const int flamePin = 11; int Flame = HIGH; int redled = 13; int Yellowled = 6; void setup() {   pinMode(redled, OUTPUT);   pinMode(Yellowled, OUTPUT);   pinMode(flamePin, INPUT); } void loop() {   Flame = digitalRead(flamePin);   if (Flame== LOW)   {     digitalWrite(redled, HIGH);     digitalWrite(Yellowled, LOW);   }   else   {     digitalWrite(Yellowled, HIGH);     digitalWrite(redled, LOW);   } }  

MQ-4 Gas Sensor with ESP8266 and Blynk application | IOT Project

Image
  MQ-4 Gas Sensor : Monitor your home Gas leakage with your mobile phone. This sensor detects the concentration of methane and CNG gas in the air and outputs its reading as an analog voltage and digital voltage . The concentration sensing range of 300 ppm to 10,000 ppm is suitable for leak detection.  Components:  1:Node Mcu Esp8266. 2:MQ-4 Gas sensor.  3:LED 4:Resistors  5:Buzzer  6:Bread board.  7:Some jumper wires Blynk: Circuit Diagram: Code: #define BLYNK_PRINT Serial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> BlynkTimer timer; char auth[] = "Auth Code";                                       //Auth Code from blynk char ssid[] = "WiFi SSID";                                      //your WiFi SSID char pass[] = "Password";  ...

MQ-4 Sensor:

Image
  MQ-4 sensor is a gas detecting sensor. This sensor is mainly use to detect Methane, and CNG Gas. This sensor also sensing   other flammable gases like Butane and propane. Good sensitivity to Combustible gas in wide range. High sensitivity to Natural gas / CNG. Low sensitivity to smoke, flame. Long life and low cost. Simple drive circuit. There are different MQ series sensor which is used for detecting different gases. List of different   MQ series sensor are given below. MQ-2       Methane, Butane, LPG, Smoke. MQ-3      Alcohol, Ethanol, Smoke MQ-4      Methane, CNG Gas MQ-5     Natural gas, LPG MQ-6      LPG, butane MQ-7      Carbon Monoxide MQ-8       Hydrogen Gas MQ-9        Carbon Monoxide, flammable gasses MQ131     Ozone MQ135     Air Qual...

DIY | How to make a 200 Eggs Incubator at home - XK-W1099 | Home Made Incubator Eggs Hatcher AC/DC

Image
  Introduction:                         An incubator is a machine which is use for hatching bird’s eggs. The incubator we design can almost hatch all kinds of bird eggs. Like Chickens, Ducks, Pheasants, Peafowls, Turkeys etc.        The Incubator we design here is Semi Auto. It means that The temperature control   will be automatic while eggs turning will be manual by hand also humidity will be manual .it’s very easy to operate a semi auto incubator successfully .For humidity level control you just need to increase the water surface level will increase humidity level and vice versa . The eggs turning .Two to three times a day will give you a good result. (For good result 8 hours duration between each turning) Components Used in This Project: 1: A Box (Can be made from Wood, fly board, plastic or Aluminum anything that can hold heat inside). 2: Controller I am using XK-W1099 Digital The...

DIY-Home Made Incubator Eggs Hatcher -How to make an AC- DC incubator :

Image
Introduction:                         An incubator is a machine which is use for hatching bird’s eggs. The incubator we design can almost hatch all kinds of bird eggs. Like Chickens, Ducks, Pheasants, Peafowls, Turkeys etc.        The Incubator we design here is Semi Auto. It means that The temperature control    will be automatic while eggs turning will be manual by hand also humidity will be manual .it’s very easy to operate a semi auto incubator successfully .For humidity level control you just need to increase the water surface level will increase humidity level and vice versa . The eggs turning .Two to three times a day will give you a good result. (For good result 8 hours duration between each turning) Components Used in This Project: 1: A Box (Can be made from Wood, fly board, plastic or Aluminum anything that can hold heat inside). 2: Temperature Controller I am using two W1209. ...