From cc5f7e479c621def01042a3a849118c46667ccb1 Mon Sep 17 00:00:00 2001 From: pedromsousalima <32345730+pedromsousalima@users.noreply.github.com> Date: Wed, 4 Jun 2025 15:45:16 +0200 Subject: [PATCH] Changed library name in examples --- .../getting-started-nano-connector-carrier/content.md | 4 ++-- .../tutorials/how-buttons-ardu/how-to-buttons-ardu.md | 4 ++-- .../modulino-buzzer/tutorials/how-buzzer-ardu/content.md | 2 +- .../modulino-distance/tutorials/how-distance-ardu/content.md | 2 +- .../modulino-knob/tutorials/how-knob-ardu/content.md | 2 +- .../modulino-movement/tutorials/how-movement-ardu/content.md | 2 +- .../modulino-pixels/tutorials/how-pixels-ardu/content.md | 2 +- .../modulino-thermo/tutorials/how-thermo-ardu/content.md | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/content.md b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/content.md index d6dc6dc0cb..f94441dd57 100644 --- a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/content.md +++ b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/content.md @@ -166,7 +166,7 @@ The Teamometer demonstrates how different Modulino sensor modules can work toget **Code Example:** ```arduino -#include +#include // Create object instances ModulinoThermo thermo; @@ -352,7 +352,7 @@ The Motion Tracker demonstrates how the Nano Connector Carrier can integrate wit * Records movement data from a Modulino Movement sensor to an SD card. * Press Button A to start/stop recording. */ -#include "Arduino_Modulino.h" +#include "Modulino.h" #include // Create objects for the modules diff --git a/content/hardware/11.accessories/modulino-nodes/modulino-buttons/tutorials/how-buttons-ardu/how-to-buttons-ardu.md b/content/hardware/11.accessories/modulino-nodes/modulino-buttons/tutorials/how-buttons-ardu/how-to-buttons-ardu.md index 23b7518510..e099338498 100644 --- a/content/hardware/11.accessories/modulino-nodes/modulino-buttons/tutorials/how-buttons-ardu/how-to-buttons-ardu.md +++ b/content/hardware/11.accessories/modulino-nodes/modulino-buttons/tutorials/how-buttons-ardu/how-to-buttons-ardu.md @@ -187,7 +187,7 @@ For the **Buttons** module, there are two key functions: Here is an example sketch demonstrating how to use these functions to detect button presses: ```arduino -#include +#include // Create object instance ModulinoButtons buttons; @@ -233,7 +233,7 @@ For the **Button Events** functionality, there are several key functions: Here is an example sketch demonstrating how to implement button event detection: ```arduino -#include "Arduino_Modulino.h" +#include "Modulino.h" #include "Button2.h" Button2 button; diff --git a/content/hardware/11.accessories/modulino-nodes/modulino-buzzer/tutorials/how-buzzer-ardu/content.md b/content/hardware/11.accessories/modulino-nodes/modulino-buzzer/tutorials/how-buzzer-ardu/content.md index af0ba7c3c3..1988f9cfde 100644 --- a/content/hardware/11.accessories/modulino-nodes/modulino-buzzer/tutorials/how-buzzer-ardu/content.md +++ b/content/hardware/11.accessories/modulino-nodes/modulino-buzzer/tutorials/how-buzzer-ardu/content.md @@ -183,7 +183,7 @@ Getting sound feedback from the buzzer is fairly simple using the ```Modulino``` Here is an example sketch of how to implement this function to control the buzzer: ```arduino -#include +#include ModulinoBuzzer buzzer; diff --git a/content/hardware/11.accessories/modulino-nodes/modulino-distance/tutorials/how-distance-ardu/content.md b/content/hardware/11.accessories/modulino-nodes/modulino-distance/tutorials/how-distance-ardu/content.md index ac2163cd15..1a8e3f5b1a 100644 --- a/content/hardware/11.accessories/modulino-nodes/modulino-distance/tutorials/how-distance-ardu/content.md +++ b/content/hardware/11.accessories/modulino-nodes/modulino-distance/tutorials/how-distance-ardu/content.md @@ -174,7 +174,7 @@ Getting data from the sensor is fairly simple using the ```Modulino``` library. Here is an example sketch of how to implement these functions to acquire data and show it using the serial monitor: ```arduino -#include "Arduino_Modulino.h" +#include "Modulino.h" // Create object instance ModulinoDistance distance; diff --git a/content/hardware/11.accessories/modulino-nodes/modulino-knob/tutorials/how-knob-ardu/content.md b/content/hardware/11.accessories/modulino-nodes/modulino-knob/tutorials/how-knob-ardu/content.md index 3a68f4075a..8b6a1b05f3 100644 --- a/content/hardware/11.accessories/modulino-nodes/modulino-knob/tutorials/how-knob-ardu/content.md +++ b/content/hardware/11.accessories/modulino-nodes/modulino-knob/tutorials/how-knob-ardu/content.md @@ -189,7 +189,7 @@ For the **Knob** there are two important functions: Here is an example sketch of how to implement these functions to acquire data: ```arduino -#include +#include ModulinoKnob knob; diff --git a/content/hardware/11.accessories/modulino-nodes/modulino-movement/tutorials/how-movement-ardu/content.md b/content/hardware/11.accessories/modulino-nodes/modulino-movement/tutorials/how-movement-ardu/content.md index 28445ee87d..32a4576a38 100644 --- a/content/hardware/11.accessories/modulino-nodes/modulino-movement/tutorials/how-movement-ardu/content.md +++ b/content/hardware/11.accessories/modulino-nodes/modulino-movement/tutorials/how-movement-ardu/content.md @@ -231,7 +231,7 @@ Getting data from the sensor is fairly simple using the ```Modulino``` library. Here is an example sketch of how to implement these functions to acquire data and show it using the serial monitor: ```arduino -#include "Arduino_Modulino.h" +#include "Modulino.h" // Create a ModulinoMovement ModulinoMovement movement; diff --git a/content/hardware/11.accessories/modulino-nodes/modulino-pixels/tutorials/how-pixels-ardu/content.md b/content/hardware/11.accessories/modulino-nodes/modulino-pixels/tutorials/how-pixels-ardu/content.md index 493c4105f4..98f4793ed3 100644 --- a/content/hardware/11.accessories/modulino-nodes/modulino-pixels/tutorials/how-pixels-ardu/content.md +++ b/content/hardware/11.accessories/modulino-nodes/modulino-pixels/tutorials/how-pixels-ardu/content.md @@ -192,7 +192,7 @@ For the **Pixels**, there are two important functions: Here is an example of how to implement these functions to control the LEDs: ```arduino -#include +#include ModulinoPixels leds; diff --git a/content/hardware/11.accessories/modulino-nodes/modulino-thermo/tutorials/how-thermo-ardu/content.md b/content/hardware/11.accessories/modulino-nodes/modulino-thermo/tutorials/how-thermo-ardu/content.md index 804380821a..1dd218e478 100644 --- a/content/hardware/11.accessories/modulino-nodes/modulino-thermo/tutorials/how-thermo-ardu/content.md +++ b/content/hardware/11.accessories/modulino-nodes/modulino-thermo/tutorials/how-thermo-ardu/content.md @@ -160,7 +160,7 @@ Getting data from the sensor is fairly simple using the ```Modulino``` library. Here is an example sketch of how to implement these functions to acquire data and show it using the serial monitor: ```arduino -#include +#include // Create object instance ModulinoThermo thermo;