P31 Small Float Level Control Switch Plastic Float Switch
Rs. 145.00 Rs. 167.00
- Brand: http://www.sowaytech.com/sdp/302911/4/pd-1125040/15204546-564188
- Product Code: SEN-FLOAT
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
http://www.sowaytech.com/sdp/302911/4/pd-1125040/15204546-564188/magnetic_float_level_switch.html
//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