From 6f8cc3eab488e348ce4a051a7065ddedff582792 Mon Sep 17 00:00:00 2001
From: Tim Stadtmann <tim.stadtmann@rwth-aachen.de>
Date: Tue, 4 Jul 2017 17:59:10 +0200
Subject: [PATCH] Fix small bug in resetAllDeviceValues

---
 source/EV3.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/EV3.m b/source/EV3.m
index 88e2334..d6e62bc 100644
--- a/source/EV3.m
+++ b/source/EV3.m
@@ -262,7 +262,7 @@ classdef EV3 < MaskedHandle
         
         function resetAllDeviceValues(ev3)
             % Resets values of all sensors on all ports (including tacho counter on motors)
-            ev3.handleCommand(@inputDeviceClrAll, false, 0);
+            ev3.handleCommand(@inputDeviceClrAll, 0);
         end
 
         %% Sound functions
-- 
GitLab