Ks0242 keyestudio EASY plug SR01 Ultrasonic Module: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
Line 22: Line 22:


<br>
<br>
==Technical Details==
==Technical Details==
* Dimensions: 49mm*26mm*28mm
* Dimensions: 49mm*26mm*28mm
Line 33: Line 32:


<br>
<br>
==Upload the Code==
==Upload the Code==
Copy and paste below code to [http://wiki.keyestudio.com/index.php/How_to_Download_Arduino_IDE Arduino IDE] and upload.  
Below is an example code. Open or drag below code to [https://wiki.keyestudio.com/Getting_Started_with_Mixly  Mixly Blocks] and upload. <br>
<pre>
<br>[[File:ks0398 19.1.png|500px|frameless|thumb]]<br>
#define echoPin 4 // Echo Pin
<br>
#define trigPin 3// Trigger Pin
==What You Should See==
#define LEDPin 13 // Onboard LED
Done uploading the code, open the serial monitor and set the baud rate to 9600. You should see the measured distance between the ultrasonic sensor and front obstacle.<br>
<br>[[File:ks0242 Result.png|500px|frameless|thumb]]
<br>[[File:ks0398 19-1.png|500px|frameless|thumb]]<br>


int maximumRange = 200; // Maximum range needed
<br>
int minimumRange = 0; // Minimum range needed
==Turn on Light==
long duration, distance; // Duration used to calculate distance
<br>
When the measured distance between an obstacle and ultrasonic sensor is less than a certain range, turn the led on.<br>
<br>
'''Hookup Guide'''<br>
<br>[[File:超声波灯.jpg|500px|frameless|thumb]]<br>
<br>
'''Test Code'''<br>
Below is an example code. Open or drag below code to [https://wiki.keyestudio.com/Getting_Started_with_Mixly  Mixly Blocks] and upload. <br>
<br>[[File:ks0398 19.2.png|500px|frameless|thumb]]<br>
<br>
'''What You Should See'''<br>
Upload success, when the measured distance is less than 30, the LED will be turned on. Otherwise, the LED is turned off.
<br>[[File:ks0398 19-3.png|500px|frameless|thumb]]<br>
<br>[[File:ks0398 19-2.png|500px|frameless|thumb]]<br>


void setup() {
<br>
Serial.begin (9600);
<span style="color: red">'''Little Knowledge:'''</span> <br>
pinMode(trigPin, OUTPUT);
* You can modify the setting distance in the code here, so that turn on or off led according to the obstacle distance measured by ultrasonic sensor.
pinMode(echoPin, INPUT);
<br>[[File:ks0398 19-4.png|500px|frameless|thumb]]<br>
pinMode(LEDPin, OUTPUT); // Use LED indicator (if required)
}


void loop() {
/* The following trigPin/echoPin cycle is used to determine the
distance of the nearest object by bouncing soundwaves off of it. */
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
//Calculate the distance (in cm) based on the speed of sound.
distance = duration/58.2;
if (distance >= maximumRange || distance <= minimumRange){
/* Send a negative number to computer and Turn LED ON
to indicate "out of range" */
Serial.println("-1");
digitalWrite(LEDPin, HIGH);
}
else {
/* Send the distance to the computer using Serial protocol, and
turn LED OFF to indicate successful reading. */
Serial.println(distance);
digitalWrite(LEDPin, LOW);
}
//Delay 50ms before next reading.
delay(50);
}
</pre>


<br>
<br>
==What You Should See==
==Resources ==
Done uploading the code, open the serial monitor and set the baud rate to 9600. You should see the measured distance between the ultrasonic sensor and front obstacle.
'''Download the Arduino Code and Datasheet:''' <br>
<br>[[File:ks0242 Result.png|500px|frameless|thumb]]  [[File:ks0242 Result1.gif|600px|frameless|thumb]]<br>
https://drive.google.com/open?id=15Aw7r31cNlzVkqcS--DO9C_4SJztmRY7


<br>
'''Download the Mixly Code and Datasheet:''' <br>
 
https://drive.google.com/open?id=1BC_cCoIxkV4-ppGngI_voM4N45cfYpOl
==Resources ==
'''Download the Datasheet:''' <br>
https://drive.google.com/open?id=1cExRhWZXi2EJNH3RCE8IDsD-482UCNwL


'''Download the Code:''' <br>
https://drive.google.com/open?id=1oWEiqzDF9mo-zJZR_2uVpZaBAXEQyl8u


<br>
<br>
==Buy from ==
==Buy from ==
*[https://www.keyestudio.com/keyestudio-easy-plug-sr01-ultrasonic-sensor-module-for-arduino-robot-car-free-shipping-p0066-p0066.html  '''Official Website''' ]
*[https://www.keyestudio.com/keyestudio-easy-plug-sr01-ultrasonic-sensor-module-for-arduino-robot-car-free-shipping-p0066-p0066.html  '''Official Website''' ]

Revision as of 14:22, 8 May 2019

EASY plug SR01 Ultrasonic Module


Introduction

The distance sensor are really common in robotics projects, very useful for automation, interactive art and motion sensing.
This EASY Plug SR01 Ultrasonic integrates ultrasonic transmitter, receiver and corresponding control circuit.
It should be connected to the double digital interface with only one line, which is very easy to use and convenient for connection.
The module comes with four fixed holes, so that can easily fix it on other devices, such as the servo plastic platform and so on.
Note: this module should be used together with EASY plug control board.

thumb


Specification

  • Operating Voltage: DC 5V
  • Operating Current: 15mA
  • Operating Frequency: 40KHz
  • Max Range: 3--5m
  • Min Range: 2cm
  • Measuring Angle: 15 degree
  • Trigger Input Signal: 10µS TTL pulse
  • Interface:double digital


Technical Details

  • Dimensions: 49mm*26mm*28mm
  • Weight: 11.3g


Connect It Up

Connect the EASY Plug Ultrasonic module to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
thumb


Upload the Code

Below is an example code. Open or drag below code to Mixly Blocks and upload.

thumb

What You Should See

Done uploading the code, open the serial monitor and set the baud rate to 9600. You should see the measured distance between the ultrasonic sensor and front obstacle.

thumb
thumb


Turn on Light


When the measured distance between an obstacle and ultrasonic sensor is less than a certain range, turn the led on.

Hookup Guide

thumb

Test Code
Below is an example code. Open or drag below code to Mixly Blocks and upload.

thumb

What You Should See
Upload success, when the measured distance is less than 30, the LED will be turned on. Otherwise, the LED is turned off.
thumb

thumb


Little Knowledge:

  • You can modify the setting distance in the code here, so that turn on or off led according to the obstacle distance measured by ultrasonic sensor.


thumb



Resources

Download the Arduino Code and Datasheet:
https://drive.google.com/open?id=15Aw7r31cNlzVkqcS--DO9C_4SJztmRY7

Download the Mixly Code and Datasheet:
https://drive.google.com/open?id=1BC_cCoIxkV4-ppGngI_voM4N45cfYpOl



Buy from