Mb1200 Xl Maxsonar Ez0 High Performance Ultrasonic Sensor
Rs. 1,103.00 Rs. 1,324.00
- Brand: https://www.maxbotix.com/Arduino-Ultrasonic-Sensors-085/#code-do
- Product Code: SEN-ULTRA
- SKU -
- Availability: 2-3 Days
- Price in reward points: 11
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
Brand | MaxBotix |
Model | MB1200 |
Operating Voltage(VDC) | 3.3 to 5.5 |
Average Current Consumption (mA) | 3.4 |
Frequency(Hz) | 42000 |
Resolution | 1 cm |
Read Rate (Hz) | 10 |
Max. Sensing Distance (cm) | 765 |
Sensor Cover Dia. (mm) | 16 |
PCB Size (mm) | 20×22.5 (LxW) |
Shipment Weight | 0.09 kg |
Shipment Dimensions | 5 × 3 × 3 cm |
OVERVIEW: | |
Operating Voltage | 3.3-5.5 V |
Sonar Sensing Range | 25-765 cm |
Max. Sensing Range | 765 cm |
Read Rate | 20 Hz |
Frequency | 42 KHz |
₹ 2,899.00 (inc GST) | |
₹ 2456.78 (+18% GST extra) |
PACKAGE INCLUDES:
1 PCS x Mb1200 Xl Maxsonar Ez0 High Performance Ultrasonic Sensor
https://www.maxbotix.com/Arduino-Ultrasonic-Sensors-085/#code-downloads
//SOURCE CODE TAEN FROM BELOW LINK
//https://www.maxbotix.com/documents/Arduino%20Codes/XL-MaxSonars/LONG_XL_MaxSonar_AN.ino
/*Feel free to use this code.
Author: Tom Bonar
Date: 12-11-2013
Analog pin 1 for reading in the analog voltage from the MaxSonar device.
This variable is a constant because the pin will not change throughout execution of this code.
SDW: 10-16-2019, removed the 2nd set of parrenteses because it was not scaling the voltage on the anVolt = analogRead(anPin)*2*/
const int anPin = 1;
long anVolt, cm;
void setup() {
//This opens up a serial connection to shoot the results back to the PC console
Serial.begin(9600);
}
void loop() {
{
//Used to read in the analog voltage output that is being sent by the XL-MaxSonar device.
//Scale factor is ((Vcc/1024 per 2cm. A 5V supply yields ~4.9mV/2cm for 10.68 meter sensors.
anVolt = analogRead(anPin)*2;
}
cm = anVolt;
Serial.print(cm);
Serial.print("cm");
Serial.println();
delay(100);
}
15 days