From 56bf441e347579a9c5362c80e39494faed0ea032 Mon Sep 17 00:00:00 2001 From: Alessandro Varesi Date: Mon, 2 May 2022 13:55:34 +0200 Subject: [PATCH] Update getting-started.md minor fix on call `gyroscope.toString` this is a function : `gyroscope.toString()` --- .../nicla-sense-me/tutorials/getting-started/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hardware/05.nicla/boards/nicla-sense-me/tutorials/getting-started/getting-started.md b/content/hardware/05.nicla/boards/nicla-sense-me/tutorials/getting-started/getting-started.md index a3a1575bdd..a83fefe195 100644 --- a/content/hardware/05.nicla/boards/nicla-sense-me/tutorials/getting-started/getting-started.md +++ b/content/hardware/05.nicla/boards/nicla-sense-me/tutorials/getting-started/getting-started.md @@ -105,7 +105,7 @@ The **Arduino_BHY2** library contains these sensors: valueY = gyroscope.y(); valueZ = gyroscope.z(); - Serial.println(gyroscope.toString); //Prints all the data "automatically" + Serial.println(gyroscope.toString()); //Prints all the data "automatically" //Print the individual values Serial.println(valueX);