diff --git a/org.fortiss.af3.platform.raspberry/trunk/lib/inc/libuart.h b/org.fortiss.af3.platform.raspberry/trunk/lib/inc/libuart.h
index 3e5da7f4ae266c9d1d154154417e5f748f171465..2861d5aaeede19c7975f346cce01dc605be6a942 100644
--- a/org.fortiss.af3.platform.raspberry/trunk/lib/inc/libuart.h
+++ b/org.fortiss.af3.platform.raspberry/trunk/lib/inc/libuart.h
@@ -30,4 +30,6 @@ int uart_receive(char*, int, int);
 
 void uart_close();
 
+void uart_flush();
+
 #endif
diff --git a/org.fortiss.af3.platform.raspberry/trunk/lib/src/LaserRangeFinder.c b/org.fortiss.af3.platform.raspberry/trunk/lib/src/LaserRangeFinder.c
index 8583b0fbc8ea2a43f3e416db6638d669ad08afe5..acdbf44a83fca2f5c8952bfc487503f1c7edbb63 100644
--- a/org.fortiss.af3.platform.raspberry/trunk/lib/src/LaserRangeFinder.c
+++ b/org.fortiss.af3.platform.raspberry/trunk/lib/src/LaserRangeFinder.c
@@ -1,12 +1,16 @@
 
 #include "inc/LaserRangeFinder.h"
 
-// constants
-const char* LRF_DEVICE_NAME = "/dev/ttyACM0";
-
 // init, terminate
 void lrf_init() {
-    uart_setup(LRF_DEVICE_NAME);
+    char port[] = "/dev/????????";
+
+    FILE* fp = popen("dmesg | grep -A 3 \"Arduino Uno\"  | grep -o \"ttyACM.\" | tail -n 1","r");
+    fgets(port+5, sizeof(port)-6, fp);
+    printf("Port: %s\n", port);
+    pclose(fp);
+
+    uart_setup(port);
 }
 
 void lrf_term() {
@@ -27,6 +31,11 @@ GEN_TYPE_int lrf_read() {
 
     int i;
 
+    int d;
+
+    // free buffer
+    uart_flush();
+
     // looks like a blocking call and actually is but is always very fast
     // since it only has to read the queue
     while (1) {
@@ -36,10 +45,11 @@ GEN_TYPE_int lrf_read() {
             if (bytes[i] != 0xd && bytes[i] != 0xa) {
                 value[n++] = bytes[i];
             } else if (atoi(value) != 0) {
+                d = atoi(value);
                 for (i = n; i < 3; i++) {
                     value[i] = 0;
                 }
-                return atoi(value);
+                return d;
             }
         }
     }
diff --git a/org.fortiss.af3.platform.raspberry/trunk/lib/src/libuart.c b/org.fortiss.af3.platform.raspberry/trunk/lib/src/libuart.c
index 2f88d066c57a76adf650db4bdacde5d18aa1ad98..d8494a8755cdf43a339ad2d45f32df4686c21a59 100644
--- a/org.fortiss.af3.platform.raspberry/trunk/lib/src/libuart.c
+++ b/org.fortiss.af3.platform.raspberry/trunk/lib/src/libuart.c
@@ -36,7 +36,9 @@ int uart_setup(const char *porta) {
     tty.c_cflag |= CREAD | CLOCAL;
 
     cfmakeraw(&tty);
-    tcflush(uart_filestream, TCIFLUSH);
+
+    uart_flush();
+
     if (tcsetattr(uart_filestream, TCSANOW, &tty) != 0) {
         fprintf(stderr, "[%s] Error from tcsetattr: %s\n", port, strerror(errno));
     }
@@ -123,3 +125,7 @@ int uart_receive(char *c, int bufLen, int printt) {
 void uart_close() {
     close(uart_filestream);
 }
+
+void uart_flush() {
+    tcflush(uart_filestream, TCIFLUSH);
+}