Add new file
This commit is contained in:
parent
b5eb68547b
commit
ec33927fc9
|
@ -0,0 +1,16 @@
|
||||||
|
#include "Ultrasonic.h"
|
||||||
|
Ultrasonic ultrasonic(8,9); // Trig et Echo
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
Serial.begin(9600);
|
||||||
|
pinMode (11, OUTPUT);
|
||||||
|
pinMode (12, OUTPUT);
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop () {
|
||||||
|
int dist = ultrasonic.Ranging(CM);
|
||||||
|
Serial.print(dist);
|
||||||
|
Serial.println(" cm");
|
||||||
|
|
||||||
|
delay(100);
|
||||||
|
}
|
Loading…
Reference in New Issue