Hello everyone.
HARDWARE:
- Arduino Uno
- HC-SR04 Sonar
SOFTWARE: - Arduino 2.0.0-rc3
I have the following code however when I am trying to verify, i get the following error messages.
#define echoPin 2 // attach pin D2 Arduino to pin Echo of HC-SR04
#define trigPin 3 //attach pin D3 Arduino to pin Trig of HC-SR04
// defines variables
long duration = 0; // variable for the duration of sound wave travel
int distance = 0; // variable for the distance measurement
void setup() {
pinMode(trigPin,OUTPUT); // Sets the trigPin as an OUTPUT
pinMode(echoPin,INPUT); // Sets the echoPin as an INPUT
Serial.begin(9600); // // Serial Communication is starting with 9600 of baudrate speed
Serial.println("Ultrasonic Sensor HC-SR04 Test"); // print some text in Serial Monitor
Serial.println("with Arduino UNO R3");
}
void loop() {
// Clears the trigPin condition
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin HIGH (ACTIVE) for 10 microseconds
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; // Speed of sound wave divided by 2 (go and back)
// Displays the distance on the Serial Monitor
Serial.print("Distance: ");
Serial.print(distance);
Serial.println(" cm");
}
The errors I get:
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c: In function 'setup':
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c:13:20: error: 'OUTPUT' undeclared (first use in this function)
pinMode(trigPin, OUTPUT);
^~~~~~
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c:13:20: note: each undeclared identifier is reported only once for each function it appears in
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c:14:20: error: 'INPUT' undeclared (first use in this function); did you mean 'OUTPUT'?
pinMode(echoPin, INPUT);
^~~~~
OUTPUT
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c:17:3: error: 'Serial' undeclared (first use in this function)
Serial.begin(9600);
^~~~~~
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c: In function 'loop':
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c:22:25: error: 'LOW' undeclared (first use in this function)
digitalWrite(trigPin, LOW);
^~~
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c:26:25: error: 'HIGH' undeclared (first use in this function)
digitalWrite(trigPin, HIGH);
^~~~
/home/siou/Documents/Programming/Arduino/sonar_HC-SR04/sonar_HC-SR04/ultrasonic_sensor_hc_sr04_with_arduino_code_for_ranging_test.c:36:3: error: 'Serial' undeclared (first use in this function)
Serial.print("Distance = ");
^~~~~~
Compilation error: exit status 1}