In this tutorial, we will be using an Ultrasonic Sensor (HC-SR04). We are going to program our Surilli Basic M0 with a basic program so we can calculate distance to an object the way bats do.
Ultrasonic Sensor (HC-SR04):The HC-SR04 ultrasonic module has 4 pins: Ground, VCC, Trig and Echo. The ground and the VCC pins of the module needs to be connected to the ground and the 5 volts pins on the Surilli board respectively and the trig and echo pins to any digital I/O pin on the Surilli board. Trigger (Transmitter) emits an ultrasound at 40,000 Hz which travels through the air and if there is an object or obstacle on its path it will bounce back to the Echo (receiver). Considering the travel time and the speed of the sound you can calculate the distance.
STEP 1: Set Up Arduino IDE for SurilliMake sure you have selected the right port, board and processor for the Surilli as shown in the picture below and it is programmable (compile and upload “Blink” from File>Examples>Digital>Blink onto your Surilli to check if every thing is working fine).
STEP 2: The CircuitryThe circuitry is very simple. It's mostly the programming. Follow the figure below to set up your hardware.
- Now you have completed setting up your hardware and Arduino IDE. Copy and paste the Arduino sketch given below into your Arduino IDE and hit upload.
- After it is uploaded, the ultrasonic sensor will start working.
const int trigPin = 6;
const int echoPin = 5;
// defines variables
long duration;
int distance;
void setup() {
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
SerialUSB.begin(9600); // Starts the serial communication
}
void loop() {
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance= duration*0.034/2;
// Prints the distance on the Serial Monitor
SerialUSB.print("Distance: ");
SerialUSB.println(distance);
}
Play with the program to see how it reacts to different values and logic. This will develop your understanding about ultrasonic sensors so you can use them in your practical application.
If you make something fun and interesting, do share it with our community. :-)
That’s all for now. If you have any queries, visit surilli.io or contact our support. Stay connected with the Surilli family for more amazing stuff. :-)
Comments
Please log in or sign up to comment.