Wish List 0

Mb1200 Xl Maxsonar Ez0 High Performance Ultrasonic Sensor

Rs. 1,103.00 Rs. 1,324.00

-This MB1200 XL-MaxSonar-EZ0 High Performance Ultrasonic Sensor Module is for indoor use only.
-Features of the MB1200, XL-MaxSonar-EZ0, include centimeter resolution, the widest and most sensitive beam pattern of any unit from the XL‑MaxSonar‑EZ sensor line, short to long distance detection, range information from 25cm to 765cm, a 10Hz read rate, and various output options: pulse-width, analog voltage, and RS232 serial.
-This makes the MB1200 an excellent choice for use where high sensitivity, wide beam, or people detection is desired.
-The MB1200 from the XL‑MaxSonar‑EZ line of sensors is a very small, less than one cubic inch, ultrasonic sensor component module.
-This sensor comes with mounting holes provided on the circuit board for easy installation in nearly all applications.
-In addition, the MB1200 offers virtually noise free distance readings through the use of high-output acoustic power combined with continuously variable gain, real‑time background automatic calibration, real‑time waveform signature analysis, and noise rejection algorithms.
-This holds true even in the presence of many of the various acoustic or electrical noise sources.

Product 3D Models
-These 3D model files will download with a different product name.
-Key Shot IGES File ACIS 7.0 File Solid Works Part
-STL File STEP File ParaSolid Part  
-We have the range of MaxBotix Ultrasonic Sensors available in our online shop which can fit your specific ranging requirement, check them now by clicking below
MaxBotix Ultrasonic Sensor

Features: 
-Read from all 3 sensor outputs: Analog Voltage, RS232 Serial, Pulse Width
-Virtually no dead zone, objects closer than 25 cm range as 25 cm
-Small, lightweight module
-Designed for easy integration into your project or product
-Real-time automatic calibration (voltage, humidity, ambient noise)
-Firmware filtering for better noise tolerance and clutter rejection
-200,000+ Hours Mean Time Between Failure
-Widest and the most sensitive beam of our XL-MaxSonar-EZ sensors
-The maximum range of 765 cm (300 inches)
-Hardware gain of 4000
-Long range, wide detection zone for small targets

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


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

Write a review

Please login or register to review