• Tag Archieven finder
  • Range Finder HC-SR04 met LCD display

    Eerder zagen we al de Range finder en de LCD display in aktie, nu kunnen we deze natuurlijk ook combineren en op de display de afstanden aflezen. Of het zinvol is is een andere vraag maar we doen het gewoon, omdat het kan.

    Ik zal de aansluitingen in het kort herhalen:

    De display:

    1. GND gaat naar GND van de Arduino
    2. VCC gaat naar 5 Volt op de Arduino
    3. SDA gaat naar SDA op de Arduino
    4. En SCL gaat naar SCL op de Arduino

    De rangfinder:

    1. VCC op de 5 Volt van de Arduino
    2. GND naar de GND van de Arduino
    3. Echo naar pin 11 van de Arduino
    4. En Ping naar pin 12 van de Arduino

    Nu kun je de code laden testen en uploaden:

    Je hebt nodig de librarie’s:

    En een stukje code: KLIK

    #include “Wire.h”
    #include “LiquidCrystal_I2C.h”
    #include “NewPing.h”

    LiquidCrystal_I2C lcd(0x27,20,4);  // set the LCD address to 0x27 for a 16 chars and 2 line display

    #define ECHO_PIN 11 // Arduino pin tied to echo pin on the ultrasonic sensor.
    #define TRIGGER_PIN 12 // Arduino pin tied to trigger pin on the ultrasonic sensor.
    #define MAX_DISTANCE 500 // Maximum distance we want to ping for (in centimeters). Maximum sensor distance is rated at 400-500cm.

    NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE); // NewPing setup of pins and maximum distance.

    void setup()
    {
    lcd.init();                      // initialize the lcd
    lcd.begin (20,4); //  our LCD is a 20×4, change for your LCD if needed

    // LCD Backlight ON
    // lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE);
    lcd.backlight();

    lcd.home (); // go home on LCD
    lcd.print(“Range Finder HC-SR04”);
    }

    void loop()
    {
    unsigned int uS = sonar.ping(); // Send ping, get ping time in microseconds (uS).
    unsigned int cm = sonar.convert_cm(uS); // Convert into centimeters

    lcd.setCursor (0,1); // go to start of 1st line
    lcd.print(“https://colandino.nl”);
    lcd.setCursor (0,2); // go to start of 2nd line
    lcd.print(“Huidige afstand:”);
    lcd.setCursor (0,3); // go to start of 4th line
    lcd.print(“Ping: “);
    lcd.print(cm);
    lcd.print(” cm “);

    delay(250);
    }


  • Range Finder HC-SR04

    Range Finder HC SR04
    Range Finder HC SR04

    De range finder is vrij simpel te gebruiken en uit te lezen via de seriële monitor.

    Het aansluiten op de arduino:

    1. VCC op de 5 Volt van de Arduino
    2. GND naar de GND van de Arduino
    3. Echo naar pin 11 van de Arduino
    4. En Ping naar pin 12 van de Arduino

    Nu kun je de code laden testen en uploaden:

    Je hebt nodig de librarie NewPing KLIK

    Laad onderstaande code in arduino: KLIK

    #include

    #define TRIGGER_PIN 12 // Arduino pin tied to trigger pin on the ultrasonic sensor.
    #define ECHO_PIN 11 // Arduino pin tied to echo pin on the ultrasonic sensor.
    #define MAX_DISTANCE 200 // Maximum distance we want to ping for (in centimeters). Maximum sensor distance is rated at 400-500cm.

    NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE); // NewPing setup of pins and maximum distance.

    void setup() {
    Serial.begin(115200); // Open serial monitor at 115200 baud to see ping results.
    }

    void loop() {
    delay(50); // Wait 50ms between pings (about 20 pings/sec). 29ms should be the shortest delay between pings.
    Serial.print(“Ping: “);
    Serial.print(sonar.ping_cm()); // Send ping, get distance in cm and print result (0 = outside set distance range)
    Serial.println(“cm”);
    }

    Nu kun je deze testen, selecteer het juiste type Arduino, de gebruikte COM-poort en uploaden maar.

    Je kunt de afstanden uitlezen via de seriële monitor, stel deze ook in op 115200 baud.