Browse Source

Erster Codeversuch Ultraschallsensor, bibliothek noch nicht korrekt

Code noch nicht funktionsfähig
master
Johannes Krug 5 years ago
parent
commit
18d9e49ba7
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      arduino/SR04_Example/SR04_Example.ino

+ 17
- 0
arduino/SR04_Example/SR04_Example.ino View File

@@ -0,0 +1,17 @@
#include "SR04.h"
#define TRIG_PIN 3
#define ECHO_PIN 4
SR04 sr04 = SR04(ECHO_PIN,TRIG_PIN);
long a;

void setup() {
Serial.begin(9600);
delay(1000);
}

void loop() {
a=sr04.Distance();
Serial.print(a);
Serial.println("cm");
delay(1000);
}

Loading…
Cancel
Save