Skip to main content

What to do in Road Accident situations

Accidents occur more in winter seasons due to fog surrounds the environment. Thus, increase more chances of road accidents. Road accidents can be avoided if proper precautions are taken by the driver.

Keep Speed below 60 km/hr if fog is there and you are not able to see properly.

Use Head lights if dense fog are there. and Avoid sudden breaks in these situations.

In dense fog and more ice on road make Tyre to skit on the road. So, keep your car speed below 30-40 km/hr.

Most importantly- Don't drive after drinking. Drunken driving is the major cause of fatal accidents on the road.

Sometimes these precautions are not also enough to avoid accidents. Even a good and experienced can encounter an accidents any time. So, what you should in that situation:-
  1. Immediately Call the emergency number 100 (for India only).
  2. Make the person lie on a flat surface. Keep first aid box in your car also for emergency.
  3. If you are conscious, look for major injuries and bleeding sources.
  4. Put pressure to stop the bleeding, using a cloth or cotton from first aid box. Most deaths happen in accidents due to blood loss.
  5. Remove helmet slowly if hanging through one's neck in case you find difficulty in breathing.
  6. Don't shake a person, it may prove fatal if the spinal cord is injured.
  7. Don't make the driver to drink or eat anything while driving. Avoid talking with him also.
  8. Don't remove objects that have punched into the victim's body. Wait for the ambulance to come.
  9. Always support neck and head while transporting a victim.
  10. Check the pulse. Pulse can checked putting the fore and middle fingers together near the throat.
  11. If possible, take the victim to the nearest hospital within an hour of accident taken place.
Following some precautions and keeping your brain activate after encountering accidents instead of getting panic, can save your or someone's life.

Comments

Popular posts from this blog

Buzzer interface with 8051 microcontroller

Buzzer  is a electronic device that converts the electronic signal into buzzing noise, that is applied to it. It can be used as electronic bell or as quiz buzzer in many applications around us. Here, i world like to discuss the interfacing of a small buzzer with 8051 microcontroller and how different projects can be constructed. Buzzer Interfacing: This project shows the interface with AT89S52 microcontroller to a buzzer. When a push button is pressed, the buzzer will get ON and OFF ( number of times set in the code ) and then stops. Circuit Diagram: - The port P1 of the microcontroller is connected to buzzer. This type of connection is possible, if the current requirements of the buzzer is not more than 20mA. The output is in current source mode so that buzzer will turn ON when the output of the port is logic LOW. Switch is connected to port P3 which remains at logic HIGH by pull up resistor.  Code: #include "REG52.h" #define buz P1 sbit SW=P3^0; long i...

Comparison Chart Between 8051, 8052, 8031and 8751

8051 is a popular 8-bit microcontroller and has been used in many applications since Intel introduced it. Many 8051 architecture are produced by Triscend, Intel, Atmel, Philips, Infineon (Siemens), ISSI, and Max Corp. Today, 8051 microcontrollers may not be popular but, the 8051 architecture is still popular and employed in thousands of embedded applications. This 8-bit architecture has been different segments such as 8052, 8051, 8751 and 8031 . 8052 is the super-set of 8051 and 8031 is the memory-less microcontroller hence, it has interfaced with external ROM. Whereas, 8751 chip has only 4Kbytes of on chip UV-EPROM. Everyone knows about the general 40-pin microcontroller i.e. 8051 introduced by Intel in 1980s and consists of serial communication pins, Timer, Interrupts, RAM, ROM. It has 4 ports and each port has 8 pins, total 32 pins and other 8 pins for other purposes. 8052 is the super-set of 8051 that consists of 8K bytes of internal RAM (4K in 8051), 256 by...

Different ways to generate delays in 8051

The delay length in 8051 microcontroller depends on three factors: The crystal frequency the number of clock per machine the C compiler. The original 8051 used 1/12 of the crystal oscillator frequency as one machine cycle. In other words, each machine cycle is equal to 12 clocks period of the crystal frequency connected to X1-X2 pins of 8051. To speed up the 8051, many recent versions of the 8051 have reduced the number of clocks per machine cycle from 12 to four, or even one. The frequency for the timer is always 1/12th the frequency of the crystal attached to the 8051, regardless of the 8051 version. In other words, AT89C51, DS5000, and DS89C4x0 the duration of the time to execute an instruction varies, but they all use 1/12th of the crystal's oscillator frequency for the clock source. 8051 has two different ways to generate time delay using C programming, regardless of 8051 version. The first method is simply using Loop   program function in which Delay() funct...