Side Mounted Small Float Level Control Switch Plastic Float Switch 55Mm
Rs. 139.00 Rs. 159.00
- 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. Switching Voltage :100 VDC
Max. Switching Current :0.5 A
Operating Temperature(˚C) :-30 to 140
OVERVIEW:
-Rhodium reed switch
-Special handling reed switches in high temperature
-Overall performance and reliable float switch
-Long-lasting life: Up to 100 million times
-Switch Length: 55 mm
-Cable Length: 300 mm
PACKAGE INCLUDES:
1 PCS x Side Mounted Small Float Level Control Switch Plastic Float Switch 55Mm
//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