Wish List 0

Anti Corrosion Water Level Sensor With Ball Float Switch

Rs. 120.00 Rs. 137.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
-The Anti-Corrosion Water Level Sensor with Ball Float Switch is a tool used to feel the level of liquid inside a tank, it may actuate a pump, a trademark, an alarm, or another tool.

-Use them in hydroponics, saltwater tank, freshwater tank, gardening, aquariums for electricity head manipulate, puppy bowls, fish tanks, filtration, heating, or anything your task may be.

SPECIFICATIONS:
Rating Contract (Max.)             10 W
Switching Power Supply (Max.)      110VDC
Pulse current (Max.)               0.5A
Breakdown Voltage (Max.)           220VDC
Current (Max.)                     1A
Resistance Contract (Max.)         100 OM
Operating Temperature (°C)         -10 to 60
Cable length                       40cm
Total Float opening                70°
Float Switch ON/OFF angle          Approx. between 15° to 20°
OVERVIEW:
Rating contract (Max.)          10 W
Switching power supply (Max.)   110VDC
Resistance contract (Max.)      100 Ω
Appro. Float Ball Size (mm)     24×17 (LxD)
Body Total Length (mm)          85
Cable Length (cm)               37
Total Float opening             70°
Switch ON/OFF angle( Approx. ) betn 15° to 20°

PACKAGE INCLUDES:

1 PCS x Anti Corrosion Water Level Sensor With Ball Float Switch


//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