Skip to content

Modulino fix - Changed library name in examples #2525

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ The Teamometer demonstrates how different Modulino sensor modules can work toget

**Code Example:**
```arduino
#include <Arduino_Modulino.h>
#include <Modulino.h>

// Create object instances
ModulinoThermo thermo;
Expand Down Expand Up @@ -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 <SD.h>

// Create objects for the modules
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Arduino_Modulino.h>
#include <Modulino.h>

// Create object instance
ModulinoButtons buttons;
Expand Down Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Arduino_Modulino.h>
#include <Modulino.h>

ModulinoBuzzer buzzer;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Arduino_Modulino.h>
#include <Modulino.h>

ModulinoKnob knob;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Arduino_Modulino.h>
#include <Modulino.h>

ModulinoPixels leds;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Arduino_Modulino.h>
#include <Modulino.h>

// Create object instance
ModulinoThermo thermo;
Expand Down