Wish List 0

P31 Small Float Level Control Switch Plastic Float Switch

Rs. 145.00 Rs. 167.00

A drift transfer is a form of stage sensor, a device used to locate the level of liquid within a tank. It is a simple shape, clean to use degree control device; furthermore, it's miles neither a complex circuit nor does it provide electricity. This transfer has a mechanical switch than the average small sized switches.

As long because the fabric used is in the suitable shape and nature of any liquid or stress, you can manipulate the temperature. Applications of this Switch consist of shipbuilding enterprise, producing device, petrochemical and meals industry, water treatment system, dyeing, and completing enterprise, and hydraulic equipment.


Features:
1. Long-lasting life.
2. Easy to use.



SPECIFICATIONS
Max. Contact Rating       10 W
Max. Switching Voltage    220 V
Max. Switching Current    0.5 A
Max. Breakdown Voltage    220 VDC
Max. Carry Current        1:00 AM
Max. Contact Resistance   100 mΩ
Temperature Rating(˚C)    -10 ~ 60
Float Ball Material       P.P.
Float Body Material       P.P.
OVERVIEW
Contact Rating       10 W.
Switching Voltage    220 V.
Switching Current    0.5 A.
Breakdown Voltage    220 VDC.
Carry Current        1:00 AM
Contact Resistance   100 mΩ.

PACKAGE INCLUDES:

1 PCS x P31 Small Float Level Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.gadgetronicx.com/interfacing-float-sensor-arduino/

int FloatSensor=2;   

int led=13;           

int buttonState = 1; //reads pushbutton status 


void setup() 

Serial.begin(9600); 

pinMode(FloatSensor, INPUT_PULLUP); //Arduino Internal Resistor 10K

pinMode (led, OUTPUT); 

void loop() 

buttonState = digitalRead(FloatSensor); 

  if (buttonState == LOW) 

  { 

    digitalWrite(led, HIGH);

    Serial.println( "WATER LEVEL - HIGH"); 

  } 

  else 

  { 

    digitalWrite(led, HIGH);

    Serial.println( "WATER LEVEL - LOW" ); 

  } 

delay(1000); 

}

15 days 

Write a review

Please login or register to review