Add new file
This commit is contained in:
16
arduino/sketchist-pserial.ino
Normal file
16
arduino/sketchist-pserial.ino
Normal file
@@ -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);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user