From 43f3877761e3c0299108cc8d8dae03afb10e2ede Mon Sep 17 00:00:00 2001 From: Ignacio Conde Date: Wed, 12 Jun 2019 00:17:38 -0300 Subject: [PATCH] Only 4 iterations to make it fit in the console. --- InputReadings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InputReadings.cpp b/InputReadings.cpp index a802652..14460d9 100644 --- a/InputReadings.cpp +++ b/InputReadings.cpp @@ -28,7 +28,7 @@ void readPorts(); const int CONSTANT = 156; int main() { - for (int value = 0 ; value <= 10 ; value++) + for (int value = 0 ; value <= 4 ; value++) { readPorts(); }