Skip to content

Instantly share code, notes, and snippets.

@jbinkleyj
Forked from ruisantos16/gist:7649175
Last active August 29, 2015 14:20
Show Gist options
  • Save jbinkleyj/26b88cc1a0783ac78d38 to your computer and use it in GitHub Desktop.
Save jbinkleyj/26b88cc1a0783ac78d38 to your computer and use it in GitHub Desktop.
#include
#define TRIGGER_PIN 12
#define ECHO_PIN 11
#define MAX_DISTANCE 200
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE); // NewPing setup of pins and maximum distance.
void setup() {
Serial.begin(9600);
}
void loop() {
delay(50);
unsigned int uS = sonar.ping_cm();
Serial.print(uS);
Serial.println(“cm”);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment