Menu
-
MenuBack
-
Menu
-
Arduino & Raspberry & Micro:bit
-
-
-
-
-
Controller Boards
-
-
-
Batteries
-
Components & TOOLS
-
-
e-Textil
-
-
-
Interruptores & Botões
-
-
-
Sound and Audio
-
-
-
Comunication & Smart Home
-
-
LCD + Matrix + Keypad
-
-
Power Sources and Renewable Energy
-
-
-
RENEWABLE ENERGY
-
-
-
3D Printing & DRONES
-
-
Informática
-
-
Informática
-
-
-
Motors and Relays
-
-
Oficina & Equipamentos
-
-
Oficina & Equipamentos
- Cable ties
- Pliers and Wrenches
- Breadboards
- Drills and Milling Cutters
- Storage Boxes
- Electronics boxes
- Bench Equipment
- Tool Cases & Kits
- Heat shrink sleeve
- Multimeters
- Oscilloscope
- Screws and Spacers
- PCB Copper
- End-Sleeves
- IC Programmers
- Personal Protection
- Protoboards
- Soldering
- Spray and Conductive Paint
- DIN Rail Supports
- Others
-
-
-
ROBOTICS
-
-
Sensors
-
-
- Catalog
- New Products
- On Sale
- Tutorials
- Contact
Weather-proof Ultrasonic Sensor
: SEN07014
€21.90
Tax included
Most ultrasonic distance sensors aren't waterproof which can be a problem if you need your project to withstand the elements outdoors. No need to worry any more! We have developed waterproof ultrasonic distance sensors with a waterproof sealed emitter.
If you have any questions on this product please feel free to contact us.
*Disclaimer: The images are merely illustrative.
If you have any questions on this product please feel free to contact us.
*Disclaimer: The images are merely illustrative.
Board Overview
|
|
SPECIFICATION
- Operating voltage: DC5V
- Static current: 5mA
- Operating current: 30mA
- Operating range: 25cm ~ 4.5m
- Resolution: 0.5cm
- Detecting Angle: < 70°
- Operating Temperature: -10 ~ 70°C
- Cable Length: 2.5m
- Dimension: 41mm * 28.5mm/1.61*1.12 inches
- Weight: 54g
Arduino Sample Code:
# define ECHOPIN 2 // Pin to receive echo pulse # define TRIGPIN 3 // Pin to send trigger pulse void setup() { Serial.begin(9600); pinMode(ECHOPIN, INPUT); pinMode(TRIGPIN, OUTPUT); digitalWrite(ECHOPIN, HIGH); } void loop() { digitalWrite(TRIGPIN, LOW); // Set the trigger pin to low for 2uS delayMicroseconds(2); digitalWrite(TRIGPIN, HIGH); // Send a 10uS high to trigger ranging delayMicroseconds(10); digitalWrite(TRIGPIN, LOW); // Send pin low again int distance = pulseIn(ECHOPIN, HIGH, 26000); // Read in times pulse distance = distance / 58; Serial.print(distance); Serial.println(" cm"); delay(50); // Wait 50mS before next ranging }
DOCUMENTS
Related products