
pin_5=1; // Input
while(1)
{
   if ( pin_5==1 ) // yea we got +5V From the sensor
   {
   // Blink An LED
   }
   else
   {
   // yea we got 0V from the sensor ??
   }
}
